diff options
Diffstat (limited to 'web/lib')
-rw-r--r-- | web/lib/api/v4/josm.rb | 4 | ||||
-rw-r--r-- | web/lib/api/v4/key.rb | 1 | ||||
-rw-r--r-- | web/lib/api/v4/tag.rb | 1 |
3 files changed, 5 insertions, 1 deletions
diff --git a/web/lib/api/v4/josm.rb b/web/lib/api/v4/josm.rb index c3b2c7e..e72e484 100644 --- a/web/lib/api/v4/josm.rb +++ b/web/lib/api/v4/josm.rb @@ -2,7 +2,8 @@ class Taginfo < Sinatra::Base api(4, 'josm/style/image', { - :description => 'Access images for map features used in JOSM.', + :superseded_by => '', + :description => 'DEPRECATED. Access images for map features used in JOSM.', :parameters => { :style => 'JOSM style (required).', :image => 'Image path (required).' @@ -21,6 +22,7 @@ class Taginfo < Sinatra::Base end api(4, 'josm/style/rules', { + :superseded_by => '', :description => 'List rules and symbols in JOSM styles.', :parameters => { :style => 'JOSM style (required).', diff --git a/web/lib/api/v4/key.rb b/web/lib/api/v4/key.rb index 83d09fd..c88092a 100644 --- a/web/lib/api/v4/key.rb +++ b/web/lib/api/v4/key.rb @@ -106,6 +106,7 @@ class Taginfo < Sinatra::Base end api(4, 'key/josm/style/rules', { + :superseded_by => '', :description => 'List rules and symbols for the given key in JOSM styles.', :parameters => { :style => 'JOSM style (required).', diff --git a/web/lib/api/v4/tag.rb b/web/lib/api/v4/tag.rb index b6fdbbe..80bdc61 100644 --- a/web/lib/api/v4/tag.rb +++ b/web/lib/api/v4/tag.rb @@ -126,6 +126,7 @@ class Taginfo < Sinatra::Base end api(4, 'tag/josm/style/rules', { + :superseded_by => '', :description => 'List rules and symbols for the given tag in JOSM styles.', :parameters => { :style => 'JOSM style (required).', |