Changeset 951
- Timestamp:
- 03/19/07 20:34:51 (20 months ago)
- Location:
- trunk
- Files:
-
- 2 added
- 2 removed
- 6 modified
-
Build.PL (modified) (2 diffs)
-
Changes (modified) (1 diff)
-
MANIFEST (modified) (2 diffs)
-
README.CSS (modified) (2 diffs)
-
templates/common_categories.tt (deleted)
-
templates/common_locales.tt (deleted)
-
templates/navbar.tt (modified) (1 diff)
-
templates/navbar_categories.tt (added)
-
templates/navbar_locales.tt (added)
-
templates/node.tt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Build.PL
r942 r951 320 320 "backlink_results.tt", 321 321 "banner.tt", 322 "common_categories.tt",323 "common_locales.tt",324 322 "delete_confirm.tt", 325 323 "delete_done.tt", … … 337 335 "moderate_password_wrong.tt", 338 336 "navbar.tt", 337 "navbar_categories.tt", 339 338 "navbar_help.tt", 340 339 "navbar_home_link.tt", 340 "navbar_locales.tt", 341 341 "navbar_options.tt", 342 342 "navbar_revision_info.tt", -
trunk/Changes
r942 r951 16 16 Split out "modules" from navbar.tt into separate templates navbar_*.tt 17 17 to make it easier for people to change the order in a custom template 18 Move common categories/locales into navbar. 18 19 Write tests for and fix: 19 20 #48 (Edit conflict page erroneously converts lat/lon to os_x, os_y). -
trunk/MANIFEST
r942 r951 32 32 templates/backlink_results.tt 33 33 templates/banner.tt 34 templates/common_categories.tt35 templates/common_locales.tt36 34 templates/delete_confirm.tt 37 35 templates/delete_done.tt … … 49 47 templates/moderate_password_wrong.tt 50 48 templates/navbar.tt 49 templates/navbar_categories.tt 51 50 templates/navbar_help.tt 52 51 templates/navbar_home_link.tt 52 templates/navbar_locales.tt 53 53 templates/navbar_options.tt 54 54 templates/navbar_revision_info.tt -
trunk/README.CSS
r950 r951 136 136 Purpose: The navigation bar 137 137 138 div#navbar_categories 139 Used in: navbar_categories.tt 140 Purpose: Display the common categories, if enabled. 141 div#navbar_locales 142 Used in: navbar_locales.tt 143 Purpose: Display the common locales, if enabled. 144 138 145 div#navbar_current_version_link 139 146 Used in: navbar_revision_info.tt … … 193 200 optionally a link to the licence we're using it under. 194 201 195 div#common_navigation196 Used in: node.tt197 Purpose: Hold the common locales and categories, if enabled198 199 div#common_categories200 Used in: common_categories.tt201 Purpose: Hold the common categories, if enabled202 h3#common_categories_title203 Used in: common_categories.tt204 Purpose: Title for the common categories205 ul#common_categories_list206 Used in: common_categories.tt207 Purpose: Parent list for the common categories208 li.common_category209 Used in: common_categories.tt210 Purpose: A common category211 a.common_category_link212 Used in: common_categories.tt213 Purpose: A link to a common category214 215 div#common_locales216 Used in: common_locales.tt217 Purpose: Hold the common locales, if enabled218 h3#common_locales_title219 Used in: common_locales.tt220 Purpose: Title for the common locales221 ul#common_locales_list222 Used in: common_locales.tt223 Purpose: Parent list for the common locales224 li.common_locale225 Used in: common_locales.tt226 Purpose: A common locale227 a.common_locale_link228 Used in: common_locales.tt229 Purpose: A link to a common locale230 231 202 input#address 232 203 Used in: edit_form.tt -
trunk/templates/navbar.tt
r942 r951 7 7 [% INCLUDE navbar_search.tt %] 8 8 [% INCLUDE navbar_this_page.tt %] 9 [% INCLUDE navbar_categories.tt %] 10 [% INCLUDE navbar_locales.tt %] 9 11 [% INCLUDE navbar_revision_info.tt %] 10 12 -
trunk/templates/node.tt
r867 r951 144 144 </div> 145 145 146 [% IF common_catloc %]147 <div id="common_navigation">148 [% IF common_categories %]149 [% INCLUDE common_categories.tt %]150 [% END %]151 [% IF common_locales %]152 [% INCLUDE common_locales.tt %]153 [% END %]154 </div>155 [% END %]156 157 146 [% INCLUDE footer.tt %]
