Changeset 16446 in josm


Ignore:
Timestamp:
2020-05-17T17:13:21+02:00 (4 years ago)
Author:
simon04
Message:

see #18162 - Update man page for --offline

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/native/linux/latest/usr/share/man/man1/josm-latest.1

    r13454 r16446  
    6060Print debugging messages to console
    6161.TP
    62 .B \-\-offline=<osm_api|josm_website|all>
     62.B \-\-offline=<OSM_API|JOSM_WEBSITE|CACHE_UPDATES|CERTIFICATES|ALL>
    6363Disable access to the given resource(s), separated by comma
    6464.SH FILES
  • trunk/native/linux/tested/usr/share/man/man1/josm.1

    r13454 r16446  
    6060Print debugging messages to console
    6161.TP
    62 .B \-\-offline=<osm_api|josm_website|all>
     62.B \-\-offline=<OSM_API|JOSM_WEBSITE|CACHE_UPDATES|CERTIFICATES|ALL>
    6363Disable access to the given resource(s), separated by comma
    6464.SH FILES
  • trunk/src/org/openstreetmap/josm/gui/MainApplication.java

    r16438 r16446  
    625625
    626626    static String getHelp() {
     627        // IMPORTANT: when changing the help texts, also update:
     628        // - native/linux/tested/usr/share/man/man1/josm.1
     629        // - native/linux/latest/usr/share/man/man1/josm-latest.1
    627630        return tr("Java OpenStreetMap Editor")+" ["
    628631                +Version.getInstance().getAgentString()+"]\n\n"+
  • trunk/src/org/openstreetmap/josm/gui/ProgramArguments.java

    r16120 r16446  
    6262        /** --selection=&lt;searchstring&gt;           Select with the given search */
    6363        SELECTION(true),
    64         /** --offline=&lt;osm_api|josm_website|certificates|all&gt; Disable access to the given resource(s), delimited by comma */
     64        /** --offline=&lt;OSM_API|JOSM_WEBSITE|CACHE_UPDATES|CERTIFICATES|ALL&gt; Disable access to the given resource(s), delimited by comma */
    6565        OFFLINE(true),
    6666        /** --skip-plugins */
Note: See TracChangeset for help on using the changeset viewer.