summaryrefslogtreecommitdiff
path: root/doc/patchqueue
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-01-12 21:22:28 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-01-12 21:22:28 +0000
commit42140a88fd366437faa25f8206f995c3a88e3662 (patch)
tree3dbb0d83a33fc66be838736578e6d125ef0ba7ce /doc/patchqueue
parenta4e63b934128e03bd66de23920e51076faf89a92 (diff)
recentchanges currently showing full paths
also removed some cruft in discussion page
Diffstat (limited to 'doc/patchqueue')
-rw-r--r--doc/patchqueue/full_paths_in_recentchanges.mdwn15
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/patchqueue/full_paths_in_recentchanges.mdwn b/doc/patchqueue/full_paths_in_recentchanges.mdwn
new file mode 100644
index 000000000..a42a2726b
--- /dev/null
+++ b/doc/patchqueue/full_paths_in_recentchanges.mdwn
@@ -0,0 +1,15 @@
+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}}
+ ];