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

Unified Diff: templates/xartoc.xml.tmpl

Issue 29562614: Issue 5752 - Removing safari support (Closed)
Patch Set: NO CHANGE rebase against #5751 @ Patch Set 7 Created Oct. 10, 2017, 9:28 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 | « templates/safariInfo.js.tmpl ('k') | tox.ini » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: templates/xartoc.xml.tmpl
diff --git a/templates/xartoc.xml.tmpl b/templates/xartoc.xml.tmpl
deleted file mode 100644
index bc8bada013705feea83ad59a7fb820e35c250b58..0000000000000000000000000000000000000000
--- a/templates/xartoc.xml.tmpl
+++ /dev/null
@@ -1,54 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-
-<!--
- - This Source Code Form is subject to the terms of the Mozilla Public
- - License, v. 2.0. If a copy of the MPL was not distributed with this
- - file, You can obtain one at http://mozilla.org/MPL/2.0/.
- -->
-
-{% macro file(data) %}
-<file id="{{data.id}}">
- <name>{{data.name}}</name>
- <type>{{data.type}}</type>
- <mode>{{data.mode}}</mode>
- {% if data.type == 'directory' %}
- {% for f in data.children %}
- {{file(f)}}
- {% endfor %}
- {% else %}
- <data>
- <archived-checksum style="sha1">{{data.checksum_compressed}}</archived-checksum>
- <extracted-checksum style="sha1">{{data.checksum_uncompressed}}</extracted-checksum>
- <encoding style="application/x-gzip"/>
- <size>{{data.size_uncompressed}}</size>
- <offset>{{data.offset}}</offset>
- <length>{{data.size_compressed}}</length>
- </data>
- {% endif %}
-</file>
-{% endmacro %}
-
-<xar>
- <toc>
- <signature-creation-time>{{timestamp_numerical}}</signature-creation-time>
- <checksum style="sha1">
- <offset>{{checksum.offset}}</offset>
- <size>{{checksum.size}}</size>
- </checksum>
- <creation-time>{{timestamp_iso}}</creation-time>
- <signature style="RSA">
- <offset>{{signature.offset}}</offset>
- <size>{{signature.size}}</size>
- <KeyInfo xmlns="http://www.w3.org/2000/09/xmldsig#">
- <X509Data>
- {% for certificate in certificates %}
- <X509Certificate>{{certificate}}</X509Certificate>
- {% endfor %}
- </X509Data>
- </KeyInfo>
- </signature>
- {% for f in files %}
- {{file(f)}}
- {% endfor %}
- </toc>
-</xar>
« no previous file with comments | « templates/safariInfo.js.tmpl ('k') | tox.ini » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld