From a77f584692c01151a33d85c32b23f8866b021c7c Mon Sep 17 00:00:00 2001 From: jan Date: Sat, 26 Mar 2005 14:05:57 +0100 Subject: Use first heading as page name in links. I just read "Don't make me think!" by Steve Krug, about web usability, and I liked its common sense a lot. One message was that every page should have a title, and that it should literally match what you click to get there. This patch tries to automate that for Dokuwiki. In wiki page links, it will fetch the first heading (the title) and use it as the name in links (unless an explicit other name is defined in the link). The same is done for the breadcrumbs (at least the default ones). I believe all this should make navigation easier. The feature is enabled/disabled with a configuration variable called $conf['useheading']. TO DO: more testing. Check whether the first heading is at a unique high level (probably easier when true parsing will be used.) Check hierarchical breadcrumbs. Perhaps omit the title from the automatic table of contents, and perhaps adapt the toc intentation of the lower level headings. darcs-hash:20050326130557-45605-bf7fdaf29e61924f2631af1bb95177ee0415c24d.gz --- inc/template.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'inc/template.php') diff --git a/inc/template.php b/inc/template.php index 8f8c6f9dc..ab135e95f 100644 --- a/inc/template.php +++ b/inc/template.php @@ -273,9 +273,9 @@ function tpl_breadcrumbs(){ $crumbs = breadcrumbs(); //setup crumb trace print $lang['breadcrumb'].':'; - foreach ($crumbs as $crumb){ + foreach ($crumbs as $id => $name){ print ' » '; - tpl_link(wl($crumb),noNS($crumb),'class="breadcrumbs" title="'.$crumb.'"'); + tpl_link(wl($id),$name,'class="breadcrumbs" title="'.$id.'"'); } } -- cgit v1.2.3