Changes between Version 35 and Version 36 of Help/Menu/OSMLayer


Ignore:
Timestamp:
2018-03-02T20:01:13+01:00 (7 years ago)
Author:
Klumbumbus
Comment:

fixes in layer states section

Legend:

Unmodified
Added
Removed
Modified
  • Help/Menu/OSMLayer

    v35 v36  
    5757By default all actions are possible with the OSM data in a layer. But the three switches upload, download and locked can change this:
    5858
    59 ||||= Layer state =||=  upload =||=  download =||=  locked =||\
     59||||= Layer state =||=  `upload` =||=  `download` =||=  `locked` =||\
    6060||=   Behaviour  =||\
    6161||
    6262|| [[Image(source:trunk/images/layer/osmdata_small.png,link=)]] ||\
    6363|| Default || || || ||\
     64|| No special behavior. ||\
    6465||
    6566|| [[Image(noupload.png,link=)]] ||\
    66 || Rework || `false` || || ||\
    67 || Warn before upload ||\
     67|| Upload discouraged || `false` || || ||\
     68|| A warning before the upload appears. ||\
    6869||
    6970|| [[Image(noupload.png,link=)]] ||\
    70 || Test/Blocked   || `never` || || ||\
    71 || Download and edit ||\
     71|| Upload impossible || `never` || || ||\
     72|| Uploading is not possible, the upload button is greyed out. ||\
     73||
     74|| [[Image(nodownload.png,link=)]] ||\
     75|| Download impossible || || `never` || ||\
     76|| A new layer is created during a download. ||\
    7277||
    7378|| [[Image(nodownloadnoupload.png,top,link=)]] ||\
    74 || Private  || `never` || `never` || ||\
    75 || Only editing ||\
     79|| Upload and download impossible || `never` || `never` || ||\
     80|| The combination of the two states above. ||\
    7681||
    7782|| [[Image(wiki:Help/Dialog/LayerList:lock-16px.svg,13,link=)]] ||\
    78 || Locked   || || ||  `true`  ||\
    79 || No action possible ||\
     83|| Locked || || ||  `true`  ||\
     84|| This includes `download=never` and `upload=never` and additionally blockes any editing of the data. ||\
    8085||
    8186
     
    8590
    8691{{{#!xml
    87 # Default file header
    88 # Implying upload='true', download='never' and locked='false'
     92# Default:
    8993<osm version='0.6' generator='JOSM'>
    9094
    91 # To warn before uploading:
    92 # Same switch as 'Upload' in the Layer list context menu
     95# Upload discouraged:
    9396<osm version='0.6' generator='JOSM' upload='false'>
    9497
    95 # To block uploads:
     98# Upload impossible:
    9699<osm version='0.6' generator='JOSM' upload='never'>
    97100
    98 # To block downloads:
     101# Download impossible:
    99102<osm version='0.6' generator='JOSM' download='never'>
    100103
    101 # To lock a file:
    102 # This implies download='never' and upload='never'
     104# Upload and download impossible:
     105<osm version='0.6' generator='JOSM' upload='never' download='never'>
     106
     107# Locked:
    103108<osm version='0.6' generator='JOSM' locked='true'>
    104109}}}