]> sipb.mit.edu Git - ikiwiki.git/blob - doc/bugs/osm_linkto__40____41___usage_breaks_map_rendering.mdwn
here is a real patch, mark it as such, confirm that it works.
[ikiwiki.git] / doc / bugs / osm_linkto__40____41___usage_breaks_map_rendering.mdwn
1 Under some circumstances that remain unclear to me, the usage of `urlto()` in the revised version of the [[plugins/osm]] plugin break the map totally. The javascript console in Chromium tells me the following:
2
3     GET http://mesh.openisp.ca/map/pois.kml/ 404 (Not Found)
4
5 Indeed, that URL yields a 404. The proper URL is <http://mesh.openisp.ca/map/pois.kml>. --[[anarcat]]
6
7 ## Proposed solution
8
9 The problem seems to be caused by `urlto()` being called for the `osm` directive before the generated files are registered with `will_render()` from the `waypoint` directive. Proposed patch adds a function that is called from the `preprocess` hook for both directives that registers the files.
10
11 Here is a [[patch]] to IkiWiki/Plugin/osm.pm: <https://reseaulibre.deuxpi.ca/0000-Fix-incorrect-URL-pointing-to-the-generated-waypoint.patch>
12
13 --[[deuxpi]]
14
15 I confirm the patch works. --[[anarcat]]