Changeset 972
- Timestamp:
- 03/24/07 16:56:12 (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 (added)
-
templates/common_locales.tt (added)
-
templates/navbar.tt (modified) (1 diff)
-
templates/navbar_categories.tt (deleted)
-
templates/navbar_locales.tt (deleted)
-
templates/node.tt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Build.PL
r965 r972 322 322 "backlink_results.tt", 323 323 "banner.tt", 324 "common_categories.tt", 325 "common_locales.tt", 324 326 "delete_confirm.tt", 325 327 "delete_done.tt", … … 337 339 "moderate_password_wrong.tt", 338 340 "navbar.tt", 339 "navbar_categories.tt",340 341 "navbar_help.tt", 341 342 "navbar_home_link.tt", 342 "navbar_locales.tt",343 343 "navbar_options.tt", 344 344 "navbar_revision_info.tt", -
trunk/Changes
r969 r972 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.19 18 Add a new div to wrap the entire body; also, use header.tt in 20 19 home_node.tt instead of copy/paste. -
trunk/MANIFEST
r966 r972 32 32 templates/backlink_results.tt 33 33 templates/banner.tt 34 templates/common_categories.tt 35 templates/common_locales.tt 34 36 templates/delete_confirm.tt 35 37 templates/delete_done.tt … … 47 49 templates/moderate_password_wrong.tt 48 50 templates/navbar.tt 49 templates/navbar_categories.tt50 51 templates/navbar_help.tt 51 52 templates/navbar_home_link.tt 52 templates/navbar_locales.tt53 53 templates/navbar_options.tt 54 54 templates/navbar_revision_info.tt -
trunk/README.CSS
r969 r972 140 140 Purpose: The navigation bar 141 141 142 div#navbar_categories143 Used in: navbar_categories.tt144 Purpose: Display the common categories, if enabled.145 142 div#navbar_help 146 143 Used in: navbar_help.tt 147 144 Purpose: Display help links, if user has them turned on. 148 div#navbar_locales149 Used in: navbar_locales.tt150 Purpose: Display the common locales, if enabled.151 145 div#navbar_options 152 146 Used in: navbar_options.tt … … 224 218 optionally a link to the licence we're using it under. 225 219 220 div#common_navigation 221 Used in: node.tt 222 Purpose: Hold the common locales and categories, if enabled 223 224 div#common_categories 225 Used in: common_categories.tt 226 Purpose: Hold the common categories, if enabled 227 h3#common_categories_title 228 Used in: common_categories.tt 229 Purpose: Title for the common categories 230 ul#common_categories_list 231 Used in: common_categories.tt 232 Purpose: Parent list for the common categories 233 li.common_category 234 Used in: common_categories.tt 235 Purpose: A common category 236 a.common_category_link 237 Used in: common_categories.tt 238 Purpose: A link to a common category 239 240 div#common_locales 241 Used in: common_locales.tt 242 Purpose: Hold the common locales, if enabled 243 h3#common_locales_title 244 Used in: common_locales.tt 245 Purpose: Title for the common locales 246 ul#common_locales_list 247 Used in: common_locales.tt 248 Purpose: Parent list for the common locales 249 li.common_locale 250 Used in: common_locales.tt 251 Purpose: A common locale 252 a.common_locale_link 253 Used in: common_locales.tt 254 Purpose: A link to a common locale 255 226 256 input#address 227 257 Used in: edit_form.tt -
trunk/templates/navbar.tt
r951 r972 7 7 [% INCLUDE navbar_search.tt %] 8 8 [% INCLUDE navbar_this_page.tt %] 9 [% INCLUDE navbar_categories.tt %]10 [% INCLUDE navbar_locales.tt %]11 9 [% INCLUDE navbar_revision_info.tt %] 12 10 -
trunk/templates/node.tt
r962 r972 150 150 [% END %] 151 151 152 [% IF common_catloc %] 153 <div id="common_navigation"> 154 [% IF common_categories %] 155 [% INCLUDE common_categories.tt %] 156 [% END %] 157 [% IF common_locales %] 158 [% INCLUDE common_locales.tt %] 159 [% END %] 160 </div> 161 [% END %] 162 152 163 [% INCLUDE footer.tt %]
