aboutsummaryrefslogtreecommitdiff
path: root/doc/patchqueue
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-01-14 04:30:53 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-01-14 04:30:53 +0000
commitc4b171221279d358b1aee1468e7d8d98b923af8c (patch)
treefd906816dabf7b6e95259865106f2243a1d4525c /doc/patchqueue
parentd253cef179bbe1c268a9b4bbf5f08324915b46e3 (diff)
downloadikiwiki-c4b171221279d358b1aee1468e7d8d98b923af8c.tar
ikiwiki-c4b171221279d358b1aee1468e7d8d98b923af8c.tar.gz
* Change the RecentChanges page to show the path of changed pages.
Diffstat (limited to 'doc/patchqueue')
-rw-r--r--doc/patchqueue/full_paths_in_recentchanges.mdwn15
1 files changed, 0 insertions, 15 deletions
diff --git a/doc/patchqueue/full_paths_in_recentchanges.mdwn b/doc/patchqueue/full_paths_in_recentchanges.mdwn
deleted file mode 100644
index a42a2726b..000000000
--- a/doc/patchqueue/full_paths_in_recentchanges.mdwn
+++ /dev/null
@@ -1,15 +0,0 @@
-For my own refrence --[[Joey]]
-
- Index: CGI.pm
- ===================================================================
- --- CGI.pm (revision 2225)
- +++ CGI.pm (working copy)
- @@ -92,7 +92,7 @@
- delete @{$change->{pages}}[10 .. @{$change->{pages}}] if $is_excess;
- $change->{pages} = [
- map {
- - $_->{link} = htmllink("", "", $_->{page}, 1);
- + $_->{link} = htmllink("", "", $_->{page}, 1, 0, pagetitle($_->{page}));
- $_;
- } @{$change->{pages}}
- ];