Photos
Blog
Projects
vanrenterghem.biz
projects
/
git.ikiwiki.info.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
* Add first draft at a Restructured Text (rst) plugin, by Sergio
[git.ikiwiki.info.git]
/
IkiWiki
/
Rcs
/
Stub.pm
1
#!/usr/bin/perl
2
# Stubs for no revision control.
3
4
use warnings;
5
use strict;
6
use IkiWiki;
7
8
package IkiWiki;
9
10
sub rcs_update () {
11
}
12
13
sub rcs_prepedit ($) {
14
return ""
15
}
16
17
sub rcs_commit ($$$) {
18
return undef # success
19
}
20
21
sub rcs_add ($) {
22
}
23
24
sub rcs_recentchanges ($) {
25
}
26
27
sub rcs_notify () {
28
}
29
30
sub rcs_getctime ($) {
31
error "getctime not implemented";
32
}
33
34
1