Changeset 7843 in josm


Ignore:
Timestamp:
2014-12-20T01:35:38+01:00 (9 years ago)
Author:
Don-vip
Message:

update help and man pages

Location:
trunk
Files:
3 edited

Legend:

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

    r7494 r7843  
    1 .TH JOSM 1 "September  4, 2014"
     1.TH JOSM 1 "December 20, 2014"
    22.\" Please adjust this date whenever revising the manpage.
    33.SH NAME
     
    6262.B \-\-offline=<osm_api|josm_website|all>
    6363Disable access to the given resource(s), separated by comma
     64.SH JAVA PROPERTIES
     65The following options can be set by using Java system properties (i.e. \-Dkey=value
     66passed to java, or specified inside JAVA_OPTS).
     67.TP
     68.B josm.pref=<path>
     69Set the JOSM preferences directory.
     70.TP
     71.B josm.userdata=<path>
     72Set the JOSM user data directory.
     73.TP
     74.B josm.cache=<path>
     75Set the JOSM cache directory.
     76.TP
     77.B josm.home=<homedir>
     78Relocate all 3 directories to homedir. Cache directory will be in homedir/cache.
     79Default is ~/.josm/.
    6480.SH ENVIRONMENT
    6581.IP JAVA_HOME
     
    100116at http://josm.openstreetmap.de/svn/ for details. Use
    101117"josm-dev AT openstreetmap.org" to contact still active authors.
     118The logo has been designed by Ilya Palikov.
    102119.PP
    103120This manual page was initially written by Andreas Putzo <andreas@putzo.net>,
  • trunk/linux/tested/usr/share/man/man1/josm.1

    r7494 r7843  
    1 .TH JOSM 1 "September  4, 2014"
     1.TH JOSM 1 "December 20, 2014"
    22.\" Please adjust this date whenever revising the manpage.
    33.SH NAME
     
    6262.B \-\-offline=<osm_api|josm_website|all>
    6363Disable access to the given resource(s), separated by comma
     64.SH JAVA PROPERTIES
     65The following options can be set by using Java system properties (i.e. \-Dkey=value
     66passed to java, or specified inside JAVA_OPTS).
     67.TP
     68.B josm.pref=<path>
     69Set the JOSM preferences directory.
     70.TP
     71.B josm.userdata=<path>
     72Set the JOSM user data directory.
     73.TP
     74.B josm.cache=<path>
     75Set the JOSM cache directory.
     76.TP
     77.B josm.home=<homedir>
     78Relocate all 3 directories to homedir. Cache directory will be in homedir/cache.
     79Default is ~/.josm/.
    6480.SH ENVIRONMENT
    6581.IP JAVA_HOME
     
    100116at http://josm.openstreetmap.de/svn/ for details. Use
    101117"josm-dev AT openstreetmap.org" to contact still active authors.
     118The logo has been designed by Ilya Palikov.
    102119.PP
    103120This manual page was initially written by Andreas Putzo <andreas@putzo.net>,
  • trunk/src/org/openstreetmap/josm/gui/MainApplication.java

    r7493 r7843  
    135135                "\t--offline=<osm_api|josm_website|all>      "+tr("Disable access to the given resource(s), separated by comma")+"\n\n"+
    136136                tr("options provided as Java system properties")+":\n"+
    137                 "\t-Djosm.home="+tr("/PATH/TO/JOSM/FOLDER/         ")+tr("Change the folder for all user settings")+"\n\n"+
     137                "\t-Djosm.pref="    +tr("/PATH/TO/JOSM/PREF    ")+tr("Set the preferences directory")+"\n\n"+
     138                "\t-Djosm.userdata="+tr("/PATH/TO/JOSM/USERDATA")+tr("Set the user data directory")+"\n\n"+
     139                "\t-Djosm.cache="   +tr("/PATH/TO/JOSM/CACHE   ")+tr("Set the cache directory")+"\n\n"+
     140                "\t-Djosm.home="    +tr("/PATH/TO/JOSM/HOMEDIR ")+
     141                tr("Relocate all 3 directories to homedir. Cache directory will be in homedir/cache")+"\n\n"+
     142                tr("-Djosm.home has lower precedence, i.e. the specific setting overrides the general one")+"\n\n"+
    138143                tr("note: For some tasks, JOSM needs a lot of memory. It can be necessary to add the following\n" +
    139144                        "      Java option to specify the maximum size of allocated memory in megabytes")+":\n"+
     
    144149                        "\tjava -jar josm.jar london.osm --selection=http://www.ostertag.name/osm/OSM_errors_node-duplicate.xml\n"+
    145150                        "\tjava -jar josm.jar 43.2,11.1,43.4,11.4\n"+
     151                        "\tjava -Djosm.pref=$XDG_CONFIG_HOME -Djosm.userdata=$XDG_DATA_HOME -Djosm.cache=$XDG_CACHE_HOME -jar josm.jar\n"+
    146152                        "\tjava -Djosm.home=/home/user/.josm_dev -jar josm.jar\n"+
    147153                        "\tjava -Xmx1024m -jar josm.jar\n\n"+
Note: See TracChangeset for help on using the changeset viewer.