]> sipb.mit.edu Git - ikiwiki.git/commitdiff
figured out how rev is used..
authorJoey Hess <joey@kodama.kitenet.net>
Tue, 29 Jan 2008 02:23:56 +0000 (21:23 -0500)
committerJoey Hess <joey@kodama.kitenet.net>
Tue, 29 Jan 2008 02:23:56 +0000 (21:23 -0500)
IkiWiki/Rcs/Stub.pm
IkiWiki/Rcs/git.pm
IkiWiki/Rcs/mercurial.pm
IkiWiki/Rcs/monotone.pm
IkiWiki/Rcs/svn.pm
IkiWiki/Rcs/tla.pm

index a979ce3fe6036ed956cd0b8fcecec3e85cd9f129..ab80a9a474b211abd8202c4bbb53ec57b68bf90b 100644 (file)
@@ -37,7 +37,7 @@ sub rcs_recentchanges ($) {
        # Examine the RCS history and generate a list of recent changes.
        # The data structure returned for each change is:
        # {
-       #       id => # the RCSs id for this commit
+       #       rev => # the RCSs id for this commit
        #       user => # name of user who made the change,
        #       committype => # either "web" or the name of the rcs,
        #       when => # time when the change was made,
index 9640acfbe284ec476af79fc365c581b1a761ab26..80ffdced26b3318a08a3d469effac42fab33ee29 100644 (file)
@@ -407,7 +407,7 @@ sub rcs_recentchanges ($) { #{{{
                }
 
                push @rets, {
-                       id         => $sha1,
+                       rev        => $sha1,
                        user       => $user,
                        committype => $type,
                        when       => $when,
index e5258b111300e6470f2939c01b0f2faba714c62d..15edb324581dc33e912dc17f214117b419fa689f 100644 (file)
@@ -139,7 +139,7 @@ sub rcs_recentchanges ($) { #{{{
                $user =~ s/^\s*//;
 
                push @ret, {
-                       id         => $info->{"changeset"},
+                       rev        => $info->{"changeset"},
                        user       => $user,
                        committype => "mercurial",
                        when       => time - str2time($info->{"date"}),
index e0f2e046a3c9ffd4c76da717a9a82429a0391094..5717e004342875e97259cc09fe22b77f7b981810 100644 (file)
@@ -438,7 +438,7 @@ sub rcs_recentchanges ($) { #{{{
                }
                
                push @ret, {
-                       id => $rev,
+                       rev => $rev,
                        user => $user,
                        committype => $committype,
                        when => $when,
index a32b0a8403a1b0d184748a3867e34da4285d165e..002527bddddf4d3ff9610da0ee4910c5c0ac9cce 100644 (file)
@@ -204,7 +204,7 @@ sub rcs_recentchanges ($) { #{{{
                        } if length $file;
                }
                push @ret, {
-                       id => $rev,
+                       rev => $rev,
                        user => $user,
                        committype => $committype,
                        when => $when,
index 5275500c395b5031bfbf627e5d31531abff41a8e..ffb6ee521a34fe70c76b7ddf53f8df885d13b67e 100644 (file)
@@ -146,7 +146,7 @@ sub rcs_recentchanges ($) {
                        } if length $file;
                }
                push @ret, {
-                       id => $change,
+                       rev => $change,
                        user => $user,
                        committype => $committype,
                        when => $when,