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

Delta Between Two Patch Sets: sitescripts/extensions/template/updates.plist

Issue 6103027194789888: Integrated ABP for Safari into the nightly builds (Closed)
Left Patch Set: Created Nov. 12, 2013, 6:43 p.m.
Right Patch Set: Added safari extension to .sitescripts.example Created Nov. 13, 2013, 1:34 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « sitescripts/extensions/bin/createNightlies.py ('k') | sitescripts/extensions/utils.py » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/ PropertyList-1.0.dtd"> 1 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/ PropertyList-1.0.dtd">
2 <plist version="1.0"> 2 <plist version="1.0">
3 <dict> 3 <dict>
4 <key>Extension Updates</key> 4 <key>Extension Updates</key>
5 <array> 5 <array>
6 {%- for extension in extensions %} 6 {%- for extension in extensions %}
7 <dict> 7 <dict>
8 <key>CFBundleIdentifier</key> 8 <key>CFBundleIdentifier</key>
9 <string>org.adblockplus.{{ extension.basename }}</string> 9 <string>org.adblockplus.{{ extension.basename }}</string>
10 <key>Developer Identifier</key> 10 <key>Developer Identifier</key>
11 <string>{{ extension.certificateID }}</string> 11 <string>{{ extension.certificateID }}</string>
12 <key>CFBundleVersion</key> 12 <key>CFBundleVersion</key>
13 <string>{{ extension.version }}</string> 13 <string>{{ extension.version }}</string>
14 <key>CFBundleShortVersionString</key> 14 <key>CFBundleShortVersionString</key>
15 <string>{{ extension.shortVersion }}</string> 15 <string>{{ extension.shortVersion }}</string>
16 <key>URL</key> 16 <key>URL</key>
17 <string>{{ extension.updateURL }}</string> 17 <string>{{ extension.updateURL }}</string>
18 </dict> 18 </dict>
19 » {%- endfor %} 19 {%- endfor %}
Wladimir Palant 2013/11/13 11:53:24 Nit: indentation seems to be wrong here.
20 </array> 20 </array>
21 </dict> 21 </dict>
22 </plist> 22 </plist>
LEFTRIGHT

Powered by Google App Engine
This is Rietveld