projects
/
ikiwiki
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
add news item for ikiwiki 2.30
[ikiwiki]
/
IkiWiki
/
Plugin
/
anonok.pm
1
#!/usr/bin/perl
2
package IkiWiki::Plugin::anonok;
3
4
use warnings;
5
use strict;
6
use IkiWiki 2.00;
7
8
sub import { #{{{
9
hook(type => "canedit", id => "anonok", call => \&canedit,);
10
} # }}}
11
12
sub canedit ($$$) { #{{{
13
return "";
14
} #}}}
15
16
1