Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: sitescripts/extensions/template/update.rdf

Issue 29366797: Issue 4697 - Add support for WebExtension-based Firefox development builds (Closed) Base URL: https://hg.adblockplus.org/sitescripts
Patch Set: Updated tests and update manifest generation Created Dec. 5, 2016, 11:21 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « sitescripts/extensions/bin/updateUpdateManifests.py ('k') | sitescripts/extensions/template/updates.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « sitescripts/extensions/bin/updateUpdateManifests.py ('k') | sitescripts/extensions/template/updates.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld