]> sipb.mit.edu Git - ikiwiki.git/blobdiff - IkiWiki/Rcs/Stub.pm
Version control backends promoted to first-class plugins
[ikiwiki.git] / IkiWiki / Rcs / Stub.pm
diff --git a/IkiWiki/Rcs/Stub.pm b/IkiWiki/Rcs/Stub.pm
deleted file mode 100644 (file)
index 15e6cfb..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-#!/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 ($) {
-}
-
-sub rcs_notify () {
-}
-
-sub rcs_getctime () {
-       error "getctime not implemented";
-}
-
-1