String encoders implemented, bp_buffer_multi_polygon removed, DefaultUnit call form (GeoDMS #1177)
UrlEncode, HtmlEncode and HtmlDecode exist as of GeoDMS 20.13.0, so their pages lose
the NOT YET IMPLEMENTED banner. Their descriptions are brought in line with what the
implementation actually does:
- UrlEncode encodes a space as '+' rather than %20 and a literal '+' as %2B, which is
what UrlDecode reads back; the unencoded set is the unreserved set of RFC2396,
including the mark characters ! ~ * ' ( ) that the page did not list; non-ASCII is
encoded per byte, so UTF-8 encodes as its UTF-8 bytes.
- UrlDecode: the plus sign is decoded to a space - not "may or may not be, depending
on the standard" - and an invalid percent sequence is an error, not undefined
behaviour.
- HtmlEncode writes ' for an apostrophe, not ', and touches nothing but the
five predefined XML/HTML entities.
- HtmlDecode accepts ' and, in addition, (which is U+00A0, not a plain
space) and numeric character references; anything it does not recognise is copied
through verbatim, so &lt; decodes to < and not to <.
bp_buffer_multi_polygon was a registered name that was never implemented and is
removed in 20.13.0; its page is marked accordingly and the see-also links on
bp_buffer_linestring, bp_buffer_multi_point and polygon-operators now point at
bg_buffer_multi_polygon.
DefaultUnit takes the NAME of a value type as a string parameter: DefaultUnit('uint32')
binds, DefaultUnit(uint32) does not. The syntax line said the opposite of the example
below it, which is what made the operator look broken.
Also, while nearby: connected_parts produces part_rel, with PartNr as the depreciated
old name that goes in 21.x, and the subset page can now name that same version instead
of "a future version".
replace weird space with normal space
Update code block syntax naar markdown standaard:
- replace < en > uit oude website naar < en >
- replace <pre> en </pre> naar ```
- uit die code blokken dan ook de <i>, </i>, <b> en </b> eruit.
Updated DefaultUnit (markdown)
Updated DefaultUnit (markdown)
bulk import improved links
first bulk automatic replacements
First port of geodms mediawiki to github markdown