Index: sitescripts/extensions/template/update.rdf |
=================================================================== |
deleted file mode 100644 |
--- a/sitescripts/extensions/template/update.rdf |
+++ /dev/null |
@@ -1,48 +0,0 @@ |
-<?xml version="1.0" encoding="UTF-8"?> |
- |
-<!-- |
- - This file is part of the Adblock Plus web scripts, |
- - Copyright (C) 2006-2016 Eyeo GmbH |
- - |
- - Adblock Plus is free software: you can redistribute it and/or modify |
- - it under the terms of the GNU General Public License version 3 as |
- - published by the Free Software Foundation. |
- - |
- - Adblock Plus is distributed in the hope that it will be useful, |
- - but WITHOUT ANY WARRANTY; without even the implied warranty of |
- - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
- - GNU General Public License for more details. |
- - |
- - You should have received a copy of the GNU General Public License |
- - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
- --> |
- |
-<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" |
- xmlns:em="http://www.mozilla.org/2004/em-rdf#"> |
- {%- for extension in extensions %} |
- <Description about="urn:mozilla:extension:{{extension.extensionID}}"> |
- <em:updates> |
- <Seq> |
- <li> |
- <Description> |
- <em:version>{{extension.version}}</em:version> |
- {%- for app in extension.compat %} |
- <em:targetApplication> |
- <Description> |
- <em:id>{{app.id}}</em:id> |
- <em:minVersion>{{app.minVersion}}</em:minVersion> |
- <em:maxVersion>{{app.maxVersion}}</em:maxVersion> |
- <em:updateLink>{{extension.updateURL}}</em:updateLink> |
- {%- if extension.changelogURL %} |
- <em:updateInfoURL>{{extension.changelogURL}}</em:updateInfoURL> |
- {%- endif %} |
- </Description> |
- </em:targetApplication> |
- {%- endfor %} |
- </Description> |
- </li> |
- </Seq> |
- </em:updates> |
- </Description> |
- {%- endfor %} |
-</RDF> |