| OLD | NEW | 
|---|
| 1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> | 
| 2 | 2 | 
| 3 <!-- | 3 <!-- | 
| 4   - This file is part of the Adblock Plus web scripts, | 4   - This file is part of the Adblock Plus web scripts, | 
| 5   - Copyright (C) 2006-2016 Eyeo GmbH | 5   - Copyright (C) 2006-2016 Eyeo GmbH | 
| 6   - | 6   - | 
| 7   - Adblock Plus is free software: you can redistribute it and/or modify | 7   - Adblock Plus is free software: you can redistribute it and/or modify | 
| 8   - it under the terms of the GNU General Public License version 3 as | 8   - it under the terms of the GNU General Public License version 3 as | 
| 9   - published by the Free Software Foundation. | 9   - published by the Free Software Foundation. | 
| 10   - | 10   - | 
| (...skipping 12 matching lines...) Expand all  Loading... | 
| 23   <Description about="urn:mozilla:extension:{{extension.extensionID}}"> | 23   <Description about="urn:mozilla:extension:{{extension.extensionID}}"> | 
| 24     <em:updates> | 24     <em:updates> | 
| 25       <Seq> | 25       <Seq> | 
| 26         <li> | 26         <li> | 
| 27           <Description> | 27           <Description> | 
| 28             <em:version>{{extension.version}}</em:version> | 28             <em:version>{{extension.version}}</em:version> | 
| 29             {%- for app in extension.compat %} | 29             {%- for app in extension.compat %} | 
| 30             <em:targetApplication> | 30             <em:targetApplication> | 
| 31               <Description> | 31               <Description> | 
| 32                 <em:id>{{app.id}}</em:id> | 32                 <em:id>{{app.id}}</em:id> | 
| 33                 <em:minVersion>{{app.minVersion}}</em:minVersion> | 33                 <em:minVersion>{{app.minVersion or "*"}}</em:minVersion> | 
| 34                 <em:maxVersion>{{app.maxVersion}}</em:maxVersion> | 34                 <em:maxVersion>{{app.maxVersion or "*"}}</em:maxVersion> | 
| 35                 <em:updateLink>{{extension.updateURL}}</em:updateLink> | 35                 <em:updateLink>{{extension.updateURL}}</em:updateLink> | 
| 36                 {%- if extension.changelogURL %} | 36                 {%- if extension.changelogURL %} | 
| 37                 <em:updateInfoURL>{{extension.changelogURL}}</em:updateInfoURL> | 37                 <em:updateInfoURL>{{extension.changelogURL}}</em:updateInfoURL> | 
| 38                 {%- endif %} | 38                 {%- endif %} | 
| 39               </Description> | 39               </Description> | 
| 40             </em:targetApplication> | 40             </em:targetApplication> | 
| 41             {%- endfor %} | 41             {%- endfor %} | 
| 42           </Description> | 42           </Description> | 
| 43         </li> | 43         </li> | 
| 44       </Seq> | 44       </Seq> | 
| 45     </em:updates> | 45     </em:updates> | 
| 46   </Description> | 46   </Description> | 
| 47   {%- endfor %} | 47   {%- endfor %} | 
| 48 </RDF> | 48 </RDF> | 
| OLD | NEW | 
|---|