Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino
Contents of /trunk/extras/find-fixme/fixme.xml
Parent Directory
|
Revision Log
Revision 1376 -
(show annotations)
(download)
(as text)
Mon Jun 3 18:53:36 2013 UTC (11 years, 10 months ago) by amb
File MIME type: application/xml
File size: 1895 byte(s)
Mon Jun 3 18:53:36 2013 UTC (11 years, 10 months ago) by amb
File MIME type: application/xml
File size: 1895 byte(s)
Make it easier to select arbitrary tags and store them.
1 | <?xml version="1.0" encoding="UTF-8" ?> |
2 | |
3 | <!-- ============================================================ |
4 | An XML format file containing Routino tagging rules - copy the input file |
5 | directly to the output with no modifications. |
6 | |
7 | Part of the Routino routing software. |
8 | ============================================================ |
9 | This file Copyright 2010-2013 Andrew M. Bishop |
10 | |
11 | This program is free software: you can redistribute it and/or modify |
12 | it under the terms of the GNU Affero General Public License as published by |
13 | the Free Software Foundation, either version 3 of the License, or |
14 | (at your option) any later version. |
15 | ============================================================ --> |
16 | |
17 | <routino-tagging xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
18 | xsi:noNamespaceSchemaLocation="http://www.routino.org/xml/routino-tagging.xsd"> |
19 | |
20 | <!-- - - - - - - - - - - Node rules - - - - - - - - - - --> |
21 | |
22 | <node> |
23 | |
24 | <!-- Add a marker for those nodes that match the wanted tag(s) --> |
25 | |
26 | <if k="fixme"> |
27 | <output k="fixme-finder:keep" v="yes" /> |
28 | </if> |
29 | |
30 | <!-- Copy all tags from input to output --> |
31 | |
32 | <if> |
33 | <output /> |
34 | </if> |
35 | |
36 | </node> |
37 | |
38 | <!-- - - - - - - - - - - Way rules - - - - - - - - - - --> |
39 | |
40 | <way> |
41 | |
42 | <!-- Add a marker for those ways that match the wanted tag(s) --> |
43 | |
44 | <if k="fixme"> |
45 | <output k="fixme-finder:keep" v="yes" /> |
46 | </if> |
47 | |
48 | <!-- Copy all tags from input to output --> |
49 | |
50 | <if> |
51 | <output /> |
52 | </if> |
53 | |
54 | </way> |
55 | |
56 | <!-- - - - - - - - - - - Relation rules - - - - - - - - - - --> |
57 | |
58 | <relation> |
59 | |
60 | <!-- Add a marker for those relations that match the wanted tag(s) --> |
61 | |
62 | <if k="fixme"> |
63 | <output k="fixme-finder:keep" v="yes" /> |
64 | </if> |
65 | |
66 | <!-- Copy all tags from input to output --> |
67 | |
68 | <if> |
69 | <output /> |
70 | </if> |
71 | |
72 | </relation> |
73 | |
74 | </routino-tagging> |