diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-01-12 21:22:28 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2007-01-12 21:22:28 +0000 |
commit | 42140a88fd366437faa25f8206f995c3a88e3662 (patch) | |
tree | 3dbb0d83a33fc66be838736578e6d125ef0ba7ce /doc/patchqueue/full_paths_in_recentchanges.mdwn | |
parent | a4e63b934128e03bd66de23920e51076faf89a92 (diff) |
recentchanges currently showing full paths
also removed some cruft in discussion page
Diffstat (limited to 'doc/patchqueue/full_paths_in_recentchanges.mdwn')
-rw-r--r-- | doc/patchqueue/full_paths_in_recentchanges.mdwn | 15 |
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}} + ]; |