blob: 9bbfde3527619aa8d32d1609c76ebbb2e5ae3e79 (
plain)
- #!/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
|