Changeset 1036
- Timestamp:
- 05/15/07 17:55:05 (19 months ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
Changes (modified) (1 diff)
-
README.CSS (modified) (2 diffs)
-
templates/node.tt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Changes
r1034 r1036 3 3 More detailed changelogs can be found at 4 4 http://dev.openguides.org/log/trunk 5 6 0.61 7 Added extra "edit this page" link next to the node name; if you don't 8 want it, add div#title_edit_link {display:none;} to your stylesheet. 5 9 6 10 0.60 13 May 2007 -
trunk/README.CSS
r1021 r1036 281 281 an editable node. 282 282 283 div#node_title 284 Used in: node.tt 285 Purpose: Display the node name and an "edit this page" link. 286 283 287 div#rdf_link 284 288 Used in: node.tt … … 302 306 Used in: footer.tt 303 307 Purpose: The search form at the bottom of the page 308 309 div#title_edit_link 310 Used in: node.tt 311 Purpose: Display an "edit this page" link near the node name. 304 312 305 313 div#version -
trunk/templates/node.tt
r988 r1036 28 28 [% END %] 29 29 30 <div id="node_title"> 30 31 [% IF current %] 31 32 [% IF backlinks_in_title AND is_indexable_node %] … … 48 49 [% END %] 49 50 [% IF not (content || coord_field_1_value || coord_field_2_value || latitude || longitude) %] 51 </div> 50 52 We don't have a node called "[% node_param %]". Would you like to <a href="[% full_cgi_url %]?action=edit;id=[% node_param %]">create it</a>? 51 53 [% ELSE %] 54 <div id="title_edit_link"> 55 <a href="[% full_cgi_url %]?action=edit;id=[% node_param %]">Edit this page</a> 56 </div> 57 </div> 52 58 [% INCLUDE display_metadata.tt %] 53 59
