]> sipb.mit.edu Git - ikiwiki.git/blob - IkiWiki/Rcs/mercurial.pm
* Add typography (SmartyPants) plugin by Recai.
[ikiwiki.git] / IkiWiki / Rcs / mercurial.pm
1 #!/usr/bin/perl
2
3 use warnings;
4 use strict;
5 use IkiWiki;
6 use Encode;
7 use open qw{:utf8 :std};
8
9 package IkiWiki;
10
11 sub mercurial_log($) {
12         my $out = shift;
13         my @infos;
14
15         while (<$out>) {
16                 my $line = $_;
17                 my ($key, $value);
18
19                 if (/^description:/) {
20                         $key = "description";
21                         $value = "";
22
23                         # slurp everything as the description text 
24                         # until the next changeset
25                         while (<$out>) {
26                                 if (/^changeset: /) {
27                                         $line = $_;
28                                         last;
29                                 }
30
31                                 $value .= $_;
32                         }
33
34                         local $/ = "";
35                         chomp $value;
36                         $infos[$#infos]{$key} = $value;
37                 }
38
39                 chomp $line;
40                 ($key, $value) = split /: +/, $line, 2;
41
42                 if ($key eq "changeset") {
43                         push @infos, {};
44
45                         # remove the revision index, which is strictly 
46                         # local to the repository
47                         $value =~ s/^\d+://;
48                 }
49
50                 $infos[$#infos]{$key} = $value;
51         }
52         close $out;
53
54         return @infos;
55 }
56
57 sub rcs_update () { #{{{
58         my @cmdline = ("hg", "-R", "$config{srcdir}", "update");
59         if (system(@cmdline) != 0) {
60                 warn "'@cmdline' failed: $!";
61         }
62 } #}}}
63
64 sub rcs_prepedit ($) { #{{{
65         return "";
66 } #}}}
67
68 sub rcs_commit ($$$) { #{{{
69         my ($file, $message, $rcstoken) = @_;
70
71         $message = possibly_foolish_untaint($message);
72
73         my @cmdline = ("hg", "-R", "$config{srcdir}", "commit", "-m", "$message");
74         if (system(@cmdline) != 0) {
75                 warn "'@cmdline' failed: $!";
76         }
77
78         return undef; # success
79 } #}}}
80
81 sub rcs_add ($) { # {{{
82         my ($file) = @_;
83
84         my @cmdline = ("hg", "-R", "$config{srcdir}", "add", "$file");
85         if (system(@cmdline) != 0) {
86                 warn "'@cmdline' failed: $!";
87         }
88 } #}}}
89
90 sub rcs_recentchanges ($) { #{{{
91         my ($num) = @_;
92
93         eval q{use CGI 'escapeHTML'};
94
95         my @cmdline = ("hg", "-R", $config{srcdir}, "log", "-v", "-l", $num);
96         open (my $out, "@cmdline |");
97
98         my @ret;
99         foreach my $info (mercurial_log($out)) {
100                 my @pages = ();
101                 my @message = ();
102         
103                 foreach my $msgline (split(/\n/, $info->{description})) {
104                         push @message, { line => $msgline };
105                 }
106
107                 foreach my $file (split / /,$info->{files}) {
108                         my $diffurl = $config{'diffurl'};
109                         $diffurl =~ s/\[\[file\]\]/$file/go;
110                         $diffurl =~ s/\[\[r2\]\]/$info->{changeset}/go;
111
112                         push @pages, {
113                                 page => pagename($file),
114                                 diffurl => $diffurl,
115                         };
116                 }
117
118                 my $user = $info->{"user"};
119                 $user =~ s/\s*<.*>\s*$//;
120                 $user =~ s/^\s*//;
121
122                 push @ret, {
123                         rev        => $info->{"changeset"},
124                         user       => $user,
125                         committype => "mercurial",
126                         when       => $info->{"date"},
127                         message    => [@message],
128                         pages      => [@pages],
129                 };
130         }
131
132         return @ret;
133 } #}}}
134
135 sub rcs_notify () { #{{{
136         # TODO
137 } #}}}
138
139 sub rcs_getctime ($) { #{{{
140         error "getctime not implemented";
141 } #}}}
142
143 1