Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(24)

Delta Between Two Patch Sets: MoinMoin/templates/layout.html

Issue 6356070: Metadata editor idea. This is just a dirty sketch that shows how I want to make metaeditor work. (Closed)
Left Patch Set: Created 12 years, 9 months ago
Right Patch Set: Added macros-based meta editor Created 12 years, 8 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
LEFTRIGHT
(no file at all)
1 {% import "forms.html" as forms %} 1 {% import "forms.html" as forms %}
2 {% extends "base.html" %} 2 {% extends "base.html" %}
3 3
4 {% import "snippets.html" as snippets with context %} 4 {% import "snippets.html" as snippets with context %}
5 {% set logo = snippets.logo() %} 5 {% set logo = snippets.logo() %}
6 {% set before_header = snippets.before_header() %} 6 {% set before_header = snippets.before_header() %}
7 {% set after_header = snippets.after_header() %} 7 {% set after_header = snippets.after_header() %}
8 {% set before_footer = snippets.before_footer() %} 8 {% set before_footer = snippets.before_footer() %}
9 {% set after_footer = snippets.after_footer() %} 9 {% set after_footer = snippets.after_footer() %}
10 {% set license_info = snippets.license_info() %} 10 {% set license_info = snippets.license_info() %}
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 {%- endif %} 76 {%- endif %}
77 <span id="moin-pagelocation"> 77 <span id="moin-pagelocation">
78 <span class="moin-pagepath"> 78 <span class="moin-pagepath">
79 {% for segment_name, segment_path, exists in theme_supp.location _breadcrumbs(item_name) -%} 79 {% for segment_name, segment_path, exists in theme_supp.location _breadcrumbs(item_name) -%}
80 {% if not loop.last -%} 80 {% if not loop.last -%}
81 <a href="{{ url_for('frontend.show_item', item_name=segm ent_path) }}" {% if not exists %}class="moin-nonexistent"{% endif %}> 81 <a href="{{ url_for('frontend.show_item', item_name=segm ent_path) }}" {% if not exists %}class="moin-nonexistent"{% endif %}>
82 {{ segment_name|shorten_item_name }} 82 {{ segment_name|shorten_item_name }}
83 </a> 83 </a>
84 <span class="sep">/</span> 84 <span class="sep">/</span>
85 {% else %} 85 {% else %}
86 » » {% if title_name %} 86 {% if title_name %}
87 {{ title_name }} 87 {{ title_name }}
88 {% else %} 88 {% else %}
89 <a href="{{ url_for('frontend.show_item', item_name=segm ent_path) }}" {% if not exists %}class="moin-nonexistent"{% endif %}> 89 <a href="{{ url_for('frontend.show_item', item_name=segm ent_path) }}" {% if not exists %}class="moin-nonexistent"{% endif %}>
90 {{ segment_name|shorten_item_name }} 90 {{ segment_name|shorten_item_name }}
91 </a> 91 </a>
92 » » {%- endif %} 92 {%- endif %}
93 {%- endif %} 93 {%- endif %}
94 {%- endfor %} 94 {%- endfor %}
95 </span> 95 </span>
96 </span> 96 </span>
97 </div> 97 </div>
98 98
99 {% set trail_items = theme_supp.path_breadcrumbs() %} 99 {% set trail_items = theme_supp.path_breadcrumbs() %}
100 {% if trail_items %} 100 {% if trail_items %}
101 <div id="moin-pagetrail"> 101 <div id="moin-pagetrail">
102 {% for wiki_name, item_name, item_href, exists, err in trail_items %} 102 {% for wiki_name, item_name, item_href, exists, err in trail_items %}
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 {{ creditlogos }} 168 {{ creditlogos }}
169 {% block footer_meta %}{% endblock %} 169 {% block footer_meta %}{% endblock %}
170 {% if license_info %}<p id="moin-wikilicense">{{ license_info }}</p>{% endif %} 170 {% if license_info %}<p id="moin-wikilicense">{{ license_info }}</p>{% endif %}
171 {{ credits }} 171 {{ credits }}
172 {% endblock %} 172 {% endblock %}
173 </div> 173 </div>
174 174
175 {{ after_footer }} 175 {{ after_footer }}
176 176
177 {% endblock %} 177 {% endblock %}
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b