source: josm/trunk/README@ 11435

Last change on this file since 11435 was 11295, checked in by Klumbumbus, 7 years ago

update readme

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/plain;charset=utf-8
File size: 9.9 KB
RevLine 
[4600]1Supplemental information for JOSM -- the Java OpenStreetMap Editor
[14]2
[5341]3=============================================================================
4 I. Install & Launch
5=============================================================================
[5545]6
[4600]7Installation notes
8------------------
[14]9To run JOSM, you need:
10
[4600]11* The JOSM .jar file, e.g., josm-tested.jar or josm-latest.jar
[10580]12* Java Runtime Environment (JRE) 8, or later.
[14]13
14
[4600]15How to get Java Runtime Environment
16-----------------------------------
[10580]17You need JRE Version 8, or later.
[14]18
[7489]19Microsoft Windows and Apple Mac OS X users should visit https://www.java.com
[6216]20and download the latest Java executable for their system.
[14]21
[4600]22Linux users should visit http://www.oracle.com/technetwork/java/index.html
[5545]23There is a Linux binary installer, which you must execute from a console, or
[4600]24use the mechanism of your distribution's packaging system.
[14]25
26
27How to launch
28-------------
[4600]29Microsoft Windows users launch by double-clicking on the .jar file.
30If this does not work, open a command shell and type
31"java -jar josm-latest.jar" in the directory that holds the file. (Please
32replace josm-latest.jar with the name of your .jar file, if you aren't using
33the latest version.)
[14]34
[4600]35Under Linux, open a shell, go to the file directory and type
36"java -jar josm-latest.jar" to launch. If this does not work, try to set
[5545]37your JAVA_HOME variable to the java executable location (the root location,
[4600]38not the bin).
[14]39
[5493]40MacOS X users just click on the .jar file icon.
[14]41
[5341]42=============================================================================
43 II. Development
44=============================================================================
[14]45
[4600]46How to get the source code
47--------------------------
[5545]48Download it directly from the subversion at
49https://josm.openstreetmap.de/svn/trunk. To use the command line subversion
[4600]50client, type
[14]51
[5341]52svn co https://josm.openstreetmap.de/svn/trunk josm
53
54
55Files & directories
56-------------------
57This is an overview of the files and directories in the JOSM code repository:
58- build.xml ant build file (standard way to create a JOSM binary)
59- CONTRIBUTION list of major code contributors
60- data/ data files that will be included in the JOSM jar file
[7867]61 - fonts/ font files used for map rendering
62 - projection/ projection files
63 - *.gsb NTv2 grid files for projection support
64 - epsg list of projection definitions
[5341]65 - *.lang translation data
66 - *.xsd xml schema files for validation of configuration files
[5545]67 - help-browser.css CSS file for the help sites (HTML content is downloaded from the website
[5341]68 on demand, but displayed inside the programm in a Java web browser component.)
[7867]69 - validator/ data files used by the JOSM validator feature
70 - *.cfg files designed for the old tagchecker, still used
71 - *.mapcss default validation rules for the new mapcss-based tagchecker
[5341]72- data_nodist/ data files that are useful for development, but not distributed
[5545]73 - exif-direction-example.jpg
[5341]74 sample image, that contains direction information in the EXIF header
75 (keys: Exif.GPSInfo.GPSImgDirectionRef, Exif.GPSInfo.GPSImgDirection)
76 - filterTests.osm used for unit testing of the filter feature
77 (see test/unit/org/openstreetmap/josm/data/osm/FilterTest.java)
78 - Join_Areas_Tests.osm some examples to test the 'join areas' feature
79 - mapcss/ sample map styles and corresponding data files for regression testing
[5545]80 - projection-reference-data.csv
[5341]81 reference data for projection tests
82 (see test/unit/org/openstreetmap/josm/data/projection/ProjectionRefTest.java)
[5545]83 - projection-regression-test-data.csv
[5341]84 regression data for projection tests
85 (see test/unit/org/openstreetmap/josm/data/projection/ProjectionRegressionTest.java)
[11295]86- geticons.pl tool to find all used icons and allows deleting unused icons
87 searches also for images with incompatible svg code
[5341]88- gpl-2.0.txt, gpl-3.0.txt full text of the GNU General Public License
89- images/ images distributed with the JOSM binary
90 - icons images for the Potlatch 2 style
[11295]91 - presets images for the main mappaint style and the internal presets
[5545]92- images_nodist/ images, which are not for distribution, but may be useful later (e.g. high
[5341]93 resolution and vector versions)
[7867]94- josm.jnlp Java Web Start launcher file (used on the website for the tested version)
95- josm-latest.jnlp Java Web Start launcher file (used on the website for the latest version)
[5341]96- LICENSE the JOSM license terms
[7867]97- linux/ files useful for Linux distributions, including Appdata files, .desktop
98 files, Debian/Ubuntu scripts, man pages, icons, etc.
99- macosx/ files needed to create the MacOS X package
[5341]100- netbeans/ preconfigured Netbeans project
101- optimize-images short script to decrease size of PNG images
102- patches/ patches for external libraries used in JOSM (see below)
103- README this file
[7867]104- resources/ resource files that will be included in the JOSM jar file
105- scripts/ various scripts used by JOSM developers
[5341]106- src/ the source code of the program
107- start.html HTML page to run the applet version of JOSM
108- styles/ map styles included in JOSM
109- sytles_nodist/ files needed for map style maintenance
110 - potlatch2/README infos on how to update the Potlatch 2 style from upstream sources
111- test/ automated software tests
[6216]112 - data/ resources used for some tests
[5341]113 - functional/ functional tests (source code)
[8825]114 - lib/ libraries needed for (some of) the tests, including JUnit
[6216]115 - performance/ performance tests (source code)
[5341]116 - unit/ unit tests (source code)
117- tools/ libraries and tools that help in the development process
[11019]118 - animal-sniffer-ant-tasks-1.15.jar
[7934]119 used to build and check code signatures to ensure plugins binary compatibility
[10580]120 - appbundler-1.0ea.jar used to build Mac OS X package
[8508]121 - checkstyle/ libs and config files for checkstyle (automatically detects code style
122 problems in source code); can be launched as an ant target in build.xml
[8691]123 - commons-cli-1.3.1.jar dependency of Groovy Ant task
[11248]124 - error_prone_ant-2.0.14.jar
[10581]125 used to detect code errors during compilation
[5341]126 - findbugs/ libs and config files for findbugs (automatically detects common bugs and potential
127 problems in source code); can be launched as an ant target in build.xml
[10456]128 - groovy-all-2.4.7.jar used for some unit tests and various scripts
[10845]129 - jacocoant.jar used to include coverage data into JUnit test reports
130 - japicc/ used to generate a compatibility report between optimized jar and normal one
[5341]131 - javacc.jar used in the build process to generate some .java files from a javacc source file
132 (src/org/openstreetmap/josm/gui/mappaint/mapcss/MapCSSParser.jj)
133 - proguard.jar optimize final binary jar - see build.xml (not used in production so far)
[7867]134 - xmltask.jar used to edit XML files from Ant for the OSX package
135- windows/ files needed to create the Windows installer
[5341]136
137The 'patches' directory
138-----------------------
[10713]139Some libraries that JOSM depends on, are patched for various reasons. The
140files in the patches directory can be used to roll back these customizations.
141This is useful in order to
[5545]142 * inspect the changes
[5341]143 * update to a newer version of the library but keep the modifications
144
[5545]145You can use 'quilt' to manage the patches. E.g. the following command applies all of them:
[5341]146
147 $ quilt push -a
148
149Of course, it is also possible to apply the patch files manually one by one.
150
[5545]151Third party libraries
152---------------------
[7867]153There are some third party libraries which are directly included in the source code tree, in particular:
[5341]154
[5545]155* jmapviewer: Java component to browse a TMS map
156 src/org/openstreetmap/gui (svn external)
157 -> http://svn.openstreetmap.org/applications/viewer/jmapviewer/
[7867]158* Apache commons compress: Support for bzip2 compression when opening files
159 src/org/apache/commons/compress/compressors (svn external)
[10864]160 -> https://github.com/apache/commons-compress
[7489]161* Apache commons validator: Improved validator routines
162 src/org/openstreetmap/josm/data/validation/routines
163 -> http://commons.apache.org/proper/commons-validator
[5545]164* SVG Salamander: Support for SVG image format
165 src/com/kitfox/svg
[10864]166 -> https://github.com/blackears/svgSalamander
[5545]167* Metadata Extractor: Read EXIF Metadata of photos
168 src/com/drew
[10864]169 -> https://github.com/drewnoakes/metadata-extractor
[5545]170* Signpost: OAuth library
171 src/oauth, src/com/google
[10864]172 -> https://github.com/mttkay/signpost
[5545]173* GNU getopt Java port: Command line argument processing library
174 src/gnu/getopt
[10864]175 -> https://github.com/arenn/java-getopt
[5545]176* MultiSplitPane: Small lib for GUI layout management
177 src/org/openstreetmap/josm/gui/MultiSplitLayout.java, MultiSplitPane.java
178 -> http://today.java.net/pub/a/today/2006/03/23/multi-split-pane.html
[10864]179 -> https://community.oracle.com/docs/DOC-983539
[5545]180* swinghelper: Class CheckThreadViolationRepaintManager to find classpath violations
181 src/org/jdesktop/swinghelper/debug/CheckThreadViolationRepaintManager.java
[7489]182 -> https://java.net/projects/swinghelper
Note: See TracBrowser for help on using the repository browser.