X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/60af47f30c2224400f56f99615405be5cba4d031..a6e629e5cf612e3c32c61c3fc0a9d859c1a7a5d9:/doc/todo/meta_rcsid.mdwn

diff --git a/doc/todo/meta_rcsid.mdwn b/doc/todo/meta_rcsid.mdwn
index fe6c84520..9e112317f 100644
--- a/doc/todo/meta_rcsid.mdwn
+++ b/doc/todo/meta_rcsid.mdwn
@@ -1,9 +1,9 @@
-The following patch adds an 'rcsid' parameter to the Meta plugin, to allow inclusion 
+The following patch adds an 'rcsid' parameter to the [[!taglink plugins/Meta]] plugin, to allow inclusion 
 of CVS/SVN-style keywords (like '$Id$', etc.) from the source file in the page template.
 
 > So the idea is you'd write something like:
 > 
->	\[[meta rcsid="$Id$"]]
+>	\[[!meta rcsid="$Id$"]]
 > 
 > And this would be put at the bottom of the page or somewhere like that by
 > the template?
@@ -15,6 +15,9 @@ of CVS/SVN-style keywords (like '$Id$', etc.) from the source file in the page t
 > And then use a stylesheet to display it as desired.
 > --[[Joey]]
 
+>> That's possibly true; my reasoning was that I wanted it to be more independent 
+>> of the page content, and independent of any stylesheet.
+
     --- meta.pm.orig    2007-10-10 19:57:04.000000000 +0100
     +++ meta.pm 2007-10-10 20:07:37.000000000 +0100
     @@ -13,6 +13,7 @@
@@ -23,7 +26,7 @@ of CVS/SVN-style keywords (like '$Id$', etc.) from the source file in the page t
      my %copyright;
     +my %rcsid;
  
-     sub import { #{{{
+     sub import {
         hook(type => "preprocess", id => "meta", call => \&preprocess, scan => 1);
     @@ -110,6 +111,9 @@
             $meta{$page}.="<link rel=\"copyright\" href=\"#page_copyright\" />\n";