9 \[\[(!?) # directive open; 2: optional prefix
11 ( # 4: the parameters (including initial whitespace)
14 (?:[-\w]+=)? # named parameter key?
16 """.*?""" # triple-quoted value
18 "[^"]+" # single-quoted value
20 [^\s\]]+ # unquoted value
22 \s* # whitespace or end
25 *) # 0 or more parameters
26 \]\] # directive closed
29 sub handle_directive {
32 my $directive = shift;
36 return "${escape}[[${prefix}${directive}${args}]]"
38 if ($directive =~ m/^(if|more|table|template|toggleable)$/) {
39 $args =~ s{$regex}{handle_directive($1, $2, $3, $4)}eg;
41 return "[[!${directive}${args}]]"
44 sub prefix_directives {
45 $/=undef; # process whole files at once
48 s{$regex}{handle_directive($1, $2, $3, $4)}eg;
54 $config{wikistatedir}=shift()."/.ikiwiki";
56 if (! defined $config{wikistatedir}) {
60 # Note: No lockwiki here because ikiwiki already locks it
61 # before calling this.
62 if (! IkiWiki::oldloadindex()) {
63 die "failed to load index\n";
65 if (! IkiWiki::saveindex()) {
66 die "failed to save indexdb\n"
68 if (! IkiWiki::loadindex()) {
69 die "transition failed, cannot load new indexdb\n";
71 if (! unlink("$config{wikistatedir}/index")) {
72 die "unlink failed: $!\n";
77 $config{wikistatedir}=shift()."/.ikiwiki";
79 if (! defined $config{wikistatedir}) {
83 eval q{use IkiWiki::UserInfo};
84 eval q{use Authen::Passphrase::BlowfishCrypt};
86 error("ikiwiki-transition hashpassword: failed to load Authen::Passphrase, passwords not hashed");
90 IkiWiki::loadplugin("passwordauth");
91 my $userinfo = IkiWiki::userinfo_retrieve();
92 foreach my $user (keys %{$userinfo}) {
93 if (ref $userinfo->{$user} &&
94 exists $userinfo->{$user}->{password} &&
95 length $userinfo->{$user}->{password} &&
96 ! exists $userinfo->{$user}->{cryptpassword}) {
97 IkiWiki::Plugin::passwordauth::setpassword($user, $userinfo->{$user}->{password});
103 print STDERR "Usage: ikiwiki-transition type ...\n";
104 print STDERR "Currently supported transition subcommands:\n";
105 print STDERR " prefix_directives file\n";
106 print STDERR " indexdb srcdir\n";
107 print STDERR " hashpassword srcdir\n";
111 usage() unless @ARGV;
114 if ($mode eq 'prefix_directives') {
115 prefix_directives(@ARGV);
117 if ($mode eq 'hashpassword') {
120 elsif ($mode eq 'indexdb') {
129 # A slightly modified version of the old loadindex function.
131 %oldrenderedfiles=%pagectime=();
132 if (! $config{rebuild}) {
133 %pagesources=%pagemtime=%oldlinks=%links=%depends=
134 %destsources=%renderedfiles=%pagecase=%pagestate=();
136 open (my $in, "<", "$config{wikistatedir}/index") || return;
142 foreach my $i (split(/ /, $_)) {
143 my ($item, $val)=split(/=/, $i, 2);
144 push @{$items{$item}}, decode_entities($val);
147 next unless exists $items{src}; # skip bad lines for now
149 my $page=pagename($items{src}[0]);
150 if (! $config{rebuild}) {
151 $pagesources{$page}=$items{src}[0];
152 $pagemtime{$page}=$items{mtime}[0];
153 $oldlinks{$page}=[@{$items{link}}];
154 $links{$page}=[@{$items{link}}];
155 $depends{$page}=$items{depends}[0] if exists $items{depends};
156 $destsources{$_}=$page foreach @{$items{dest}};
157 $renderedfiles{$page}=[@{$items{dest}}];
158 $pagecase{lc $page}=$page;
159 foreach my $k (grep /_/, keys %items) {
160 my ($id, $key)=split(/_/, $k, 2);
161 $pagestate{$page}{decode_entities($id)}{decode_entities($key)}=$items{$k}[0];
164 $oldrenderedfiles{$page}=[@{$items{dest}}];
165 $pagectime{$page}=$items{ctime}[0];
168 # saveindex relies on %hooks being populated, else it won't save
169 # the page state owned by a given hook. But no plugins are loaded
170 # by this program, so populate %hooks with all hook ids that
171 # currently have page state.
172 foreach my $page (keys %pagemtime) {
173 foreach my $id (keys %{$pagestate{$page}}) {
174 $hooks{_dummy}{$id}=1;