]> sipb.mit.edu Git - ikiwiki.git/blob - IkiWiki/Rcs/Stub.pm
* Patch from Thomas Schwinge to switch from --svn to --rcs=svn, etc,
[ikiwiki.git] / IkiWiki / Rcs / Stub.pm
1 #!/usr/bin/perl
2 # Stubs for no revision control.
3
4 use warnings;
5 use strict;
6 use IkiWiki;
7
8 package IkiWiki;
9
10 sub rcs_update () {
11 }
12
13 sub rcs_prepedit ($) {
14         return ""
15 }
16
17 sub rcs_commit ($$$) {
18         return undef # success
19 }
20
21 sub rcs_add ($) {
22 }
23
24 sub rcs_recentchanges ($) {
25 }
26
27 sub rcs_notify () {
28 }
29
30 sub rcs_getctime () {
31         error "getctime not implemented";
32 }
33
34 1