Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 {# | 1 {# |
2 # This file is part of the Adblock Plus website, | 2 # This file is part of the Adblock Plus website, |
3 # Copyright (C) 2006-2015 Eyeo GmbH | 3 # Copyright (C) 2006-2015 Eyeo GmbH |
4 # | 4 # |
5 # Adblock Plus is free software: you can redistribute it and/or modify | 5 # Adblock Plus is free software: you can redistribute it and/or modify |
6 # it under the terms of the GNU General Public License version 3 as | 6 # it under the terms of the GNU General Public License version 3 as |
7 # published by the Free Software Foundation. | 7 # published by the Free Software Foundation. |
8 # | 8 # |
9 # Adblock Plus is distributed in the hope that it will be useful, | 9 # Adblock Plus is distributed in the hope that it will be useful, |
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
61 </td> | 61 </td> |
62 </tr> | 62 </tr> |
63 {%- if not parent -%} | 63 {%- if not parent -%} |
64 {%- for supplement in subscription["supplemented"]|subscription_sort -%} | 64 {%- for supplement in subscription["supplemented"]|subscription_sort -%} |
65 {{ process_subscription(supplement, subscription) }} | 65 {{ process_subscription(supplement, subscription) }} |
66 {%- endfor -%} | 66 {%- endfor -%} |
67 {%- endif -%} | 67 {%- endif -%} |
68 {%- endmacro %} | 68 {%- endmacro %} |
69 | 69 |
70 {% macro display_subscriptions(subscriptions) %} | 70 {% macro display_subscriptions(subscriptions) %} |
71 {%- set current_type = None -%} | |
kzar
2015/09/15 15:54:55
Subscriptions always have a type right? If so we c
Thomas Greiner
2015/09/16 12:06:28
Done. It was just a personal preference to make th
| |
72 {%- for subscription in subscriptions|subscription_sort -%} | 71 {%- for subscription in subscriptions|subscription_sort -%} |
73 {%- if not subscription["supplements"] or current_type != subscription["type "] -%} | 72 {%- if not (subscription["supplements"] and current_type == subscription["ty pe"]) -%} |
kzar
2015/09/15 15:54:55
How about an application of De Morgan's law?
{% i
Thomas Greiner
2015/09/16 12:06:28
Done. Haven't heard about that theorem yet so than
| |
74 {%- if current_type != subscription["type"] -%} | 73 {%- if current_type != subscription["type"] -%} |
75 {%- if current_type != None %} | 74 {%- if current_type %} |
kzar
2015/09/15 15:54:55
Nit: In Python I think you should use `is` for che
Thomas Greiner
2015/09/16 12:06:28
Done. `is not` was throwing a Jinja2 exception whe
| |
76 </table> | 75 </table> |
77 {%- endif -%} | 76 {%- endif -%} |
78 {%- set current_type = subscription["type"] %} | 77 {%- set current_type = subscription["type"] %} |
79 <h2 id="type_{{ current_type }}">{{ get_string("type_" + current_type, "subscr iptions") }}</h2> | 78 <h2 id="type_{{ current_type }}">{{ get_string("type_" + current_type, "subscr iptions") }}</h2> |
80 | 79 |
81 <table class="subscriptions"> | 80 <table class="subscriptions"> |
82 {%- endif -%} | 81 {%- endif -%} |
83 {%- endif -%} | 82 {%- endif -%} |
84 {%- if subscription["type"] not in subscription["supplementsType"] -%} | 83 {%- if subscription["type"] not in subscription["supplementsType"] -%} |
85 {{ process_subscription(subscription) }} | 84 {{ process_subscription(subscription) }} |
86 {%- endif -%} | 85 {%- endif -%} |
87 {%- endfor %} | 86 {%- endfor %} |
88 </table> | 87 </table> |
89 {% endmacro %} | 88 {% endmacro %} |
LEFT | RIGHT |