34 lines
342 B
Perl
34 lines
342 B
Perl
#!/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
|