OLD | NEW |
1 <?xml version="1.0"?> | 1 <?xml version="1.0"?> |
2 | 2 |
3 <!-- | 3 <!-- This Source Code Form is subject to the terms of the Mozilla Public |
4 - This file is part of the Adblock Plus build tools, | 4 - License, v. 2.0. If a copy of the MPL was not distributed with this |
5 - Copyright (C) 2006-2014 Eyeo GmbH | 5 - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> |
6 - | |
7 - Adblock Plus is free software: you can redistribute it and/or modify | |
8 - it under the terms of the GNU General Public License version 3 as | |
9 - published by the Free Software Foundation. | |
10 - | |
11 - Adblock Plus is distributed in the hope that it will be useful, | |
12 - but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 - GNU General Public License for more details. | |
15 - | |
16 - You should have received a copy of the GNU General Public License | |
17 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | |
18 --> | |
19 | 6 |
20 {%- macro meta() -%} | 7 {%- macro meta() -%} |
21 <em:creator>{{metadata.get('general', 'author')}}</em:creator> | 8 <em:creator>{{metadata.get('general', 'author')}}</em:creator> |
22 | 9 |
23 {%- for contributor in contributors -%} | 10 {%- for contributor in contributors -%} |
24 <em:contributor>{{contributor}}</em:contributor> | 11 <em:contributor>{{contributor}}</em:contributor> |
25 {%- endfor -%} | 12 {%- endfor -%} |
26 {%- endmacro %} | 13 {%- endmacro %} |
27 | 14 |
28 <RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" | 15 <RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 <!-- {{appName}} --> | 94 <!-- {{appName}} --> |
108 <em:id>{{KNOWN_APPS[appName]}}</em:id> | 95 <em:id>{{KNOWN_APPS[appName]}}</em:id> |
109 <em:minVersion>{{metadata.get('compat', appName).split('/')[0]}}</em:min
Version> | 96 <em:minVersion>{{metadata.get('compat', appName).split('/')[0]}}</em:min
Version> |
110 <em:maxVersion>{{metadata.get('compat', appName).split('/')[1]}}</em:max
Version> | 97 <em:maxVersion>{{metadata.get('compat', appName).split('/')[1]}}</em:max
Version> |
111 </Description> | 98 </Description> |
112 </em:targetApplication> | 99 </em:targetApplication> |
113 {%- endif %} | 100 {%- endif %} |
114 {%- endfor %} | 101 {%- endfor %} |
115 </Description> | 102 </Description> |
116 </RDF> | 103 </RDF> |
OLD | NEW |