aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Rcs/Stub.pm
blob: 9bbfde3527619aa8d32d1609c76ebbb2e5ae3e79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/perl
# Stubs for no revision control.

use warnings;
use strict;

package IkiWiki;

sub rcs_update () {
}

sub rcs_prepedit ($) {
	return ""
}

sub rcs_commit ($$$) {
	return undef # success
}

sub rcs_add ($) {
}

sub rcs_recentchanges ($) {
}

sub rcs_notify () {
}

sub rcs_getctime () {
	error "getctime not implemented";
}

1