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

Unified Diff: templates/edge/[Content_Types].xml.tmpl

Issue 29345751: Issue 4028 - Add support for Edge extensions to buildtools (Closed)
Patch Set: Address comments on patch set 4 Created July 8, 2016, 4:46 p.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
Index: templates/edge/[Content_Types].xml.tmpl
===================================================================
new file mode 100644
--- /dev/null
+++ b/templates/edge/[Content_Types].xml.tmpl
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Types xmlns="http://schemas.openxmlformats.org/package/2006/content-types">
+ {% for extension, content_type in defaults.items() -%}
+ <Default Extension="{{ extension }}" ContentType="{{ content_type }}"/>
+ {% endfor -%}
+ {% for part_name, content_type in overrides.items() -%}
+ <Override PartName="{{ part_name }}" ContentType="{{ content_type }}"/>
+ {% endfor -%}
+</Types>

Powered by Google App Engine
This is Rietveld