| OLD | NEW |
| 1 <?xml version="1.0" encoding="UTF-8"?> | 1 <?xml version="1.0" encoding="UTF-8"?> |
| 2 | 2 |
| 3 <!-- | 3 <!-- |
| 4 - This Source Code Form is subject to the terms of the Mozilla Public | 4 - This Source Code Form is subject to the terms of the Mozilla Public |
| 5 - License, v. 2.0. If a copy of the MPL was not distributed with this | 5 - License, v. 2.0. If a copy of the MPL was not distributed with this |
| 6 - file, You can obtain one at http://mozilla.org/MPL/2.0/. | 6 - file, You can obtain one at http://mozilla.org/MPL/2.0/. |
| 7 --> | 7 --> |
| 8 | 8 |
| 9 {% macro file(data) %} | 9 {% macro file(data) %} |
| 10 <file id="{{data.id}}"> | 10 <file id="{{data.id}}"> |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 44 {% for certificate in certificates %} | 44 {% for certificate in certificates %} |
| 45 <X509Certificate>{{certificate}}</X509Certificate> | 45 <X509Certificate>{{certificate}}</X509Certificate> |
| 46 {% endfor %} | 46 {% endfor %} |
| 47 </X509Data> | 47 </X509Data> |
| 48 </KeyInfo> | 48 </KeyInfo> |
| 49 </signature> | 49 </signature> |
| 50 {% for f in files %} | 50 {% for f in files %} |
| 51 {{file(f)}} | 51 {{file(f)}} |
| 52 {% endfor %} | 52 {% endfor %} |
| 53 </toc> | 53 </toc> |
| 54 </xar> | 54 </xar> |
| OLD | NEW |