ikiwiki/IkiWiki/Rcs/Stub.pm

35 lines
356 B
Perl
Raw Normal View History

2006-03-26 04:30:44 +02:00
#!/usr/bin/perl
# Stubs for no revision control.
use warnings;
use strict;
use IkiWiki;
package IkiWiki;
sub rcs_update () {
}
sub rcs_prepedit ($) {
return ""
}
sub rcs_commit ($$$) {
return undef # success
}
sub rcs_add ($) {
}
sub rcs_recentchanges ($) {
}
2006-04-25 01:09:26 +02:00
sub rcs_notify () {
}
sub rcs_getctime ($) {
2006-03-26 04:30:44 +02:00
error "getctime not implemented";
}
1