| | 1 | [[TranslatedPages(revision=10)]] |
| | 2 | = Aangepaste XML configuratiebestanden voor JOSM = |
| | 3 | == Voorbeelden (Zie opmerkingen in XML) == |
| | 4 | * Gecategoriseerde voorbeelden [attachment:scripts.zip:ticket:4421 scripts.zip] |
| | 5 | * Installeren van voorkeuzen en stijlen: [attachment:seamap.xml:ticket:4421 seamap.xml], |
| | 6 | [attachment:seamap_ForOfflineInstallation.zip:ticket:4421 seamap_ForOfflineInstallation.zip] |
| | 7 | * Afbeeldingslaag, plug-in en opties fijn afstemmen (vooralsnog alleen Russische vertaling): [attachment:forestMapping.xml:ticket:4421 forestMapping.xml] |
| | 8 | |
| | 9 | === Voorkeuren aanvullen of vervangen opdrachten === |
| | 10 | |
| | 11 | De vlgende code voegt nog een afbeelding toe aan de lijst: |
| | 12 | {{{#!xml |
| | 13 | <config> |
| | 14 | <preferences operation="append"> |
| | 15 | <!-- Any preferences.xml fragment can be used here --> |
| | 16 | <tag key="download.autorun" value="true"/> <!-- example of simple preference modification - download.autorun := true --> |
| | 17 | <maps key="imagery.entries"> |
| | 18 | <map> |
| | 19 | <tag key="name" value="ScanEx IRS"/> |
| | 20 | <tag key="type" value="scanex"/> |
| | 21 | <tag key="url" value="IRS"/> |
| | 22 | <tag key="attribution-text" value="IRS"/> |
| | 23 | <tag key="attribution-url" value="http://irs.gis-lab.info/"/> |
| | 24 | </map> |
| | 25 | </maps> |
| | 26 | </preferences> |
| | 27 | </config> |
| | 28 | }}} |
| | 29 | |
| | 30 | Als in plaats daravan '''<preferences operation="replace">''' wordt gebruikt, zullen alle andere elementen <map> worden __verwijderd __ uit '''imagery.entries''' ! |
| | 31 | |
| | 32 | Een ander voorbeeld: |
| | 33 | {{{#!xml |
| | 34 | <config> |
| | 35 | <preferences operation="replace"> <!-- old content of draw.anglesnap.angles will be deleted --> |
| | 36 | <list key="draw.anglesnap.angles"> |
| | 37 | <entry value="30"/> |
| | 38 | <entry value="45"/> |
| | 39 | <entry value="60"/> |
| | 40 | </list> |
| | 41 | </preferences> |
| | 42 | </config> |
| | 43 | }}} |
| | 44 | |
| | 45 | === Bestandsbewerkingen - downloaden, verwijderen, uitpakken === |
| | 46 | {{{#!xml |
| | 47 | <config> |
| | 48 | <delete path="plugins/tmp"/> |
| | 49 | <!-- delete recursively plugins/tmp from preferences directory --> |
| | 50 | <!-- base = "prefs" - delete from preferences folder base = "plugins" - delete from plugins folder base = "cache" - delete from cache folder --> |
| | 51 | |
| | 52 | <delete path="splug" base="plugins"/> |
| | 53 | <!-- delete recursively splug folder from preferences directory --> |
| | 54 | |
| | 55 | <!--<delete path="." base="cache"/> delete cache folder --> |
| | 56 | |
| | 57 | <download url="http://svn.openstreetmap.org/applications/editors/josm/dist/buildings_tools.jar" path="plugins/tmp/bt.jar" mkdir="true" unzip="true"/> |
| | 58 | <!-- download file from url and place as "path" if mkdir="true", then all necessary directories will be created if unzip="true", then zip/jar file will be exanded and then deleted --> |
| | 59 | |
| | 60 | <download url="https://wiki.openstreetmap.org/w/images/7/79/Public-images-osm_logo.svg" path="1/logo.svg" mkdir="true" base="cache"/> |
| | 61 | |
| | 62 | <download url="file://localhost/e:/a.zip" path="qqq/a.zip" unzip="true" mkdir="true"/> |
| | 63 | <!-- copy from local folder and unzip --> |
| | 64 | </config> |
| | 65 | }}} |
| | 66 | |
| | 67 | === Plug-in bewerkingen: installeren, uitschakelen, verwijderen === |
| | 68 | {{{#!xml |
| | 69 | <config> |
| | 70 | <!-- installeer en verwijder plug-ins zonder te verwijderen plastic_laf.jar --> |
| | 71 | <plugin install="buildings_tools;wayselector" remove="plastic_laf"/> |
| | 72 | <plugin delete="proj4j"/> <!-- disable plugin and delete jar --> |
| | 73 | </config> |
| | 74 | }}} |
| | 75 | |
| | 76 | === Variabelen, berichtenvensters en de gebruiker vragen === |
| | 77 | {{{#!xml |
| | 78 | <config> |
| | 79 | <ask var="r" text="Kies alstublieft iets!" options="0;1;2"/> |
| | 80 | <messagebox text="U koos ${r}" type="i"/> |
| | 81 | <if test="${r==0}"> |
| | 82 | <messagebox text="r=0!"/> |
| | 83 | </if> |
| | 84 | <else> |
| | 85 | <messagebox text="nee, r!=0 - r=${r} feitelijk!"/> |
| | 86 | </else> |
| | 87 | <if test="${r==1 || r==2}"> |
| | 88 | <messagebox text="r=1 of 2!"/> |
| | 89 | </if> |
| | 90 | <if test="${r!=2 && r!=0}"> |
| | 91 | <messagebox text="Het is niet 0, het is niet 2 , dus is het = 1!"/> |
| | 92 | </if> |
| | 93 | <if test="${r!=2}"> |
| | 94 | <break/> |
| | 95 | </if> |
| | 96 | <ask var="r" text="Kies alstublieft iets!" options="A;B"/> |
| | 97 | <messagebox text="U koos knop nummer ${r}" type="i"/> |
| | 98 | </config> |
| | 99 | }}} |
| | 100 | |
| | 101 | === JavaScript API === |
| | 102 | {{{#!xml |
| | 103 | <config> |
| | 104 | <script><![CDATA[ |
| | 105 | API.messageBox('i','Hello!'); |
| | 106 | txt = API.askText("Enter something..."); |
| | 107 | i = API.askOption("Select background color","red;green;black"); |
| | 108 | if (i==0) API.pref['color.background']="#770000"; |
| | 109 | if (i==1) API.pref['color.background']="#007700"; |
| | 110 | if (i==2) API.pref['color.background']="#000000"; |
| | 111 | color = API.pref['color.background']; |
| | 112 | API.messageBox('i',"<html><span color='"+color+"'> You entered "+txt+"</span></html>"); |
| | 113 | if ( API.askOption("Do you want to test downloading and plugins?","") == 0 ) { |
| | 114 | // "" in askOption means Yes/No dialog |
| | 115 | API.downloadFile("http://svn.openstreetmap.org/applications/editors/josm/dist/buildings_tools.jar", |
| | 116 | "1/2/a.jar","cache"); |
| | 117 | API.downloadAndUnpackFile("http://svn.openstreetmap.org/applications/editors/josm/dist/buildings_tools.jar", |
| | 118 | "1/2a/a.jar","cache"); |
| | 119 | if( API.askOption("Do you want to delete downloaded files?","") == 0) { |
| | 120 | API.deleteFile("1","cache"); |
| | 121 | } |
| | 122 | API.pluginInstall("AlignWays"); |
| | 123 | if( API.askOption("Do you want to uninstall utilsplugin2","") == 0) { |
| | 124 | API.pluginUninstall("utilsplugin2"); |
| | 125 | } |
| | 126 | } |
| | 127 | importPackage(org.openstreetmap.josm.data); |
| | 128 | CustomConfigurator.exportPreferencesKeysByPatternToFile ("e:/config.xml", true, ".*"); |
| | 129 | //println(JSON.stringify(API.prefs)); // JSON works only on JDK1.7 //println(JSON.stringify(API.fragments)); // JSON works only on JDK1.7 ]]> |
| | 130 | </script> |
| | 131 | </config> |
| | 132 | }}} |
| | 133 | |
| | 134 | == Zie ook == |
| | 135 | * Development discussie: #4421 |