summaryrefslogtreecommitdiff
path: root/doc/todo/Add_space_before_slash_in_parent_links.mdwn
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2007-12-21 11:04:26 -0500
committerJoey Hess <joey@kitenet.net>2007-12-21 11:04:26 -0500
commitd3a7555534bdf3b83a61c92435115e91c714b4c0 (patch)
treefc10bbca5285dad82c3ae2a4decbe28e1de830de /doc/todo/Add_space_before_slash_in_parent_links.mdwn
parentf25b6aff427708e9dd5afafa60d1dcff7bdb4614 (diff)
web commit by http://svend.myopenid.com/: Submit patch.
Diffstat (limited to 'doc/todo/Add_space_before_slash_in_parent_links.mdwn')
-rw-r--r--doc/todo/Add_space_before_slash_in_parent_links.mdwn50
1 files changed, 50 insertions, 0 deletions
diff --git a/doc/todo/Add_space_before_slash_in_parent_links.mdwn b/doc/todo/Add_space_before_slash_in_parent_links.mdwn
new file mode 100644
index 000000000..c4dc6ede6
--- /dev/null
+++ b/doc/todo/Add_space_before_slash_in_parent_links.mdwn
@@ -0,0 +1,50 @@
+This patch adds a space before the forward-slash in the the parent links. There is already a space after the slash.
+
+Before:
+
+ ikiwiki/ todo/ Add space before slash in parent links
+
+After:
+
+ ikiwiki / todo / Add space before slash in parent links
+
+Patch:
+
+ diff --git a/templates/misc.tmpl b/templates/misc.tmpl
+ index 80e6d0b..184920e 100644
+ --- a/templates/misc.tmpl
+ +++ b/templates/misc.tmpl
+ @@ -15,7 +15,7 @@
+
+ <div class="header">
+ <span>
+ -<TMPL_VAR INDEXLINK> / <TMPL_VAR TITLE>
+ +<TMPL_VAR INDEXLINK>/ <TMPL_VAR TITLE>
+ </span>
+ </div>
+
+ diff --git a/templates/page.tmpl b/templates/page.tmpl
+ index 1978e93..3a1ac9e 100644
+ --- a/templates/page.tmpl
+ +++ b/templates/page.tmpl
+ @@ -17,7 +17,7 @@
+ <div class="header">
+ <span>
+ <TMPL_LOOP NAME="PARENTLINKS">
+ -<a href="<TMPL_VAR NAME=URL>"><TMPL_VAR NAME=PAGE></a> /
+ +<a href="<TMPL_VAR NAME=URL>"><TMPL_VAR NAME=PAGE></a>/
+ </TMPL_LOOP>
+ <TMPL_VAR TITLE>
+ </span>
+ diff --git a/templates/recentchanges.tmpl b/templates/recentchanges.tmpl
+ index 4877395..e03482f 100644
+ --- a/templates/recentchanges.tmpl
+ +++ b/templates/recentchanges.tmpl
+ @@ -15,7 +15,7 @@
+
+ <div class="header">
+ <span>
+ -<TMPL_VAR INDEXLINK> / <TMPL_VAR TITLE>
+ +<TMPL_VAR INDEXLINK>/ <TMPL_VAR TITLE>
+ </span>
+ </div>