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

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

Issue 29366797: Issue 4697 - Add support for WebExtension-based Firefox development builds (Closed) Base URL: https://hg.adblockplus.org/sitescripts
Left Patch Set: Created Dec. 5, 2016, 8:38 a.m.
Right Patch Set: Updated tests and update manifest generation Created Dec. 5, 2016, 11:21 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « sitescripts/extensions/template/update.rdf ('k') | sitescripts/extensions/test/oracle/updates.json » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 {
2 "addons":
3 {
4 {%- for extension in extensions %}
5 {{extension.extensionID|json}}:
6 {
7 "updates":
8 [
9 {
10 "version": {{extension.version|json}},
11 "update_link": {{extension.updateURL|json}}
12 {%- if extension.compat -%}
13 ,
14 "applications":
15 {
16 {%- for app in extension.compat %}
17 {{app.id|json}}:
18 {
19 "strict_min_version": {{app.minVersion|json}}
20 }
21 {{- "," if not loop.last else "" }}
22 {%- endfor %}
23 }
24 {%- endif %}
25 }
26 ]
27 }
28 {{- "," if not loop.last else "" }}
29 {%- endfor %}
30 }
31 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld