I realize there is a dearth of documentation and exposition but here it is. If you found it you know what it is and why you might want it. Everyone else will just be like, WTF is wrong with Ashley? Why can’t he go back to threatening the President?
Well, I finally got around to sedition.me and sedition.im today so there’s some remote hope of something at some point. Some thing at somepoint. Fucking English.
The new version of Kwiki won’t install/run and has been broken on the CPAN for a long time. I have a decently large set of documents for a novel I never seem to write in the old one and it runs but needs CGI so won’t run on nginx (stock) and there aren’t enough hours in the day for apache anymore so–
#!/usr/bin/env perl usestrictures;usePlack::Builder;usePath::Class"file";useFile::Spec;usePlack::App::WrapCGI;usePlack::App::Directory;my$psgi=file(File::Spec->rel2abs(__FILE__));my$STATIC=Plack::App::Directory->new({root=>$psgi->parent})->to_app;my$KWIKI=Plack::App::WrapCGI->new(script=>file($psgi->parent,"index.cgi"))->to_app;builder{enable"Rewrite",rules=>sub{return301ifs{^/index.cgi}{/kwiki};return301ifs{^/?$}{/kwiki};};mount"/kwiki"=>builder{$KWIKI;};mount"/"=>$STATIC;};__DATA__