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

Unified Diff: sitescripts/extensions/template/updates.plist

Issue 6103027194789888: Integrated ABP for Safari into the nightly builds (Closed)
Patch Set: Created Nov. 12, 2013, 6:43 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: sitescripts/extensions/template/updates.plist
===================================================================
new file mode 100644
--- /dev/null
+++ b/sitescripts/extensions/template/updates.plist
@@ -0,0 +1,22 @@
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+ <key>Extension Updates</key>
+ <array>
+ {%- for extension in extensions %}
+ <dict>
+ <key>CFBundleIdentifier</key>
+ <string>org.adblockplus.{{ extension.basename }}</string>
+ <key>Developer Identifier</key>
+ <string>{{ extension.certificateID }}</string>
+ <key>CFBundleVersion</key>
+ <string>{{ extension.version }}</string>
+ <key>CFBundleShortVersionString</key>
+ <string>{{ extension.shortVersion }}</string>
+ <key>URL</key>
+ <string>{{ extension.updateURL }}</string>
+ </dict>
+ {%- endfor %}
Wladimir Palant 2013/11/13 11:53:24 Nit: indentation seems to be wrong here.
+ </array>
+</dict>
+</plist>

Powered by Google App Engine
This is Rietveld