2 # Stubs for no revision control.
3 package IkiWiki::Plugin::norcs;
10 hook(type => "rcs", id => "rcs_update", call => \&rcs_update);
11 hook(type => "rcs", id => "rcs_prepedit", call => \&rcs_prepedit);
12 hook(type => "rcs", id => "rcs_commit", call => \&rcs_commit);
13 hook(type => "rcs", id => "rcs_commit_staged", call => \&rcs_commit_staged);
14 hook(type => "rcs", id => "rcs_add", call => \&rcs_add);
15 hook(type => "rcs", id => "rcs_remove", call => \&rcs_remove);
16 hook(type => "rcs", id => "rcs_rename", call => \&rcs_rename);
17 hook(type => "rcs", id => "rcs_recentchanges", call => \&rcs_recentchanges);
18 hook(type => "rcs", id => "rcs_diff", call => \&rcs_diff);
19 hook(type => "rcs", id => "rcs_getctime", call => \&rcs_getctime);
22 sub rcs_update () { #{{{
25 sub rcs_prepedit ($) { #{{{
29 sub rcs_commit ($$$;$$) { #{{{
30 my ($file, $message, $rcstoken, $user, $ipaddr) = @_;
31 return undef # success
34 sub rcs_commit_staged ($$$) { #{{{
35 my ($message, $user, $ipaddr)=@_;
36 return undef # success
39 sub rcs_add ($) { #{{{
42 sub rcs_remove ($) { #{{{
45 sub rcs_rename ($$) { #{{{
48 sub rcs_recentchanges ($) { #{{{
51 sub rcs_diff ($) { #{{{
54 sub rcs_getctime ($) { #{{{
55 error gettext("getctime not implemented");