Changeset 16446 in josm
- Timestamp:
- 2020-05-17T17:13:21+02:00 (5 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/native/linux/latest/usr/share/man/man1/josm-latest.1
r13454 r16446 60 60 Print debugging messages to console 61 61 .TP 62 .B \-\-offline=< osm_api|josm_website|all>62 .B \-\-offline=<OSM_API|JOSM_WEBSITE|CACHE_UPDATES|CERTIFICATES|ALL> 63 63 Disable access to the given resource(s), separated by comma 64 64 .SH FILES -
trunk/native/linux/tested/usr/share/man/man1/josm.1
r13454 r16446 60 60 Print debugging messages to console 61 61 .TP 62 .B \-\-offline=< osm_api|josm_website|all>62 .B \-\-offline=<OSM_API|JOSM_WEBSITE|CACHE_UPDATES|CERTIFICATES|ALL> 63 63 Disable access to the given resource(s), separated by comma 64 64 .SH FILES -
trunk/src/org/openstreetmap/josm/gui/MainApplication.java
r16438 r16446 625 625 626 626 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 627 630 return tr("Java OpenStreetMap Editor")+" [" 628 631 +Version.getInstance().getAgentString()+"]\n\n"+ -
trunk/src/org/openstreetmap/josm/gui/ProgramArguments.java
r16120 r16446 62 62 /** --selection=<searchstring> Select with the given search */ 63 63 SELECTION(true), 64 /** --offline=< osm_api|josm_website|certificates|all> Disable access to the given resource(s), delimited by comma */64 /** --offline=<OSM_API|JOSM_WEBSITE|CACHE_UPDATES|CERTIFICATES|ALL> Disable access to the given resource(s), delimited by comma */ 65 65 OFFLINE(true), 66 66 /** --skip-plugins */
Note:
See TracChangeset
for help on using the changeset viewer.