Changes between Version 135 and Version 136 of Help/Styles/MapCSSImplementation


Ignore:
Timestamp:
2017-03-31T23:13:55+02:00 (8 years ago)
Author:
bastiK
Comment:

new eval functions in [11756]

Legend:

Unmodified
Added
Removed
Modified
  • Help/Styles/MapCSSImplementation

    v135 v136  
    10861086 join_list(''sep'', ''list_name'')::
    10871087   joins the elements of the list ''list_name'' to one string separated by the separator ''sep'' [''since 8775'']
     1088 upper(''str'')::
     1089   converts string to upper case [''since 11756'']
     1090 lower(''str'')::
     1091   converts string to lower case [''since 11756'']
     1092 trim(''str'')::
     1093   remove leading and trailing whitespace from string [''since 11756'']
    10881094 JOSM_search("...")::
    10891095  true, if JOSM search applies to the object
     
    11081114 URL_encode(str)::
    11091115  [https://en.wikipedia.org/wiki/Percent-encoding percent-encode] a string. May be useful for data URLs [''since 6805'']
     1116 URL_decode(str)::
     1117  [https://en.wikipedia.org/wiki/Percent-encoding percent-decode] a string. [''since 11756'']
    11101118 XML_encode(str)::
    11111119  escape special characters in xml. E.g. {{{<}}} becomes {{{&lt;}}}, other special characters: {{{>}}}, {{{"}}}, {{{'}}}, {{{&}}}, {{{\n}}}, {{{\t}}} and {{{\r}}} [''since 6809'']