| OLD | NEW |
| 1 {%- macro str_or_real(value) -%} | 1 {%- macro str_or_real(value) -%} |
| 2 {%- if value is number -%} | 2 {%- if value is number -%} |
| 3 <real>{{ value }}</real> | 3 <real>{{ value }}</real> |
| 4 {%- else -%} | 4 {%- else -%} |
| 5 <string>{{ value }}</string> | 5 <string>{{ value }}</string> |
| 6 {%- endif -%} | 6 {%- endif -%} |
| 7 {%- endmacro -%} | 7 {%- endmacro -%} |
| 8 | 8 |
| 9 <?xml version="1.0" encoding="UTF-8"?> | 9 <?xml version="1.0" encoding="UTF-8"?> |
| 10 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/
PropertyList-1.0.dtd"> | 10 <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/
PropertyList-1.0.dtd"> |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 <string> | 156 <string> |
| 157 {%- if not releaseBuild -%} | 157 {%- if not releaseBuild -%} |
| 158 https://adblockplus.org/devbuilds/{{ basename }}/updates.plist | 158 https://adblockplus.org/devbuilds/{{ basename }}/updates.plist |
| 159 {%- else -%} | 159 {%- else -%} |
| 160 {{ updateURL }} | 160 {{ updateURL }} |
| 161 {%- endif -%} | 161 {%- endif -%} |
| 162 </string> | 162 </string> |
| 163 {%- endif %} | 163 {%- endif %} |
| 164 </dict> | 164 </dict> |
| 165 </plist> | 165 </plist> |
| OLD | NEW |