]> sipb.mit.edu Git - ikiwiki.git/blobdiff - doc/todo/meta_rcsid.mdwn
followup
[ikiwiki.git] / doc / todo / meta_rcsid.mdwn
index 400c8637d33dc8d24201666110dcdc7a5a8b0cfa..a09a48a641949c7ab9cd3ccf8b22f37ba1e2fd0d 100644 (file)
@@ -1,6 +1,23 @@
 The following patch adds an 'rcsid' parameter to the 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$"]]
+> 
+> And this would be put at the bottom of the page or somewhere like that by
+> the template?
+> 
+> I wonder if it wouldn't be just as clear to say:
+> 
+>      <span class="rcsid">$Id$</span>
+> 
+> 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 @@
@@ -30,3 +47,5 @@ of CVS/SVN-style keywords (like '$Id$', etc.) from the source file in the page t
         
         if ($page ne $destpage &&
             ((exists $license{$page}   && ! exists $license{$destpage}) ||
+
+[[patch]]