I've done away with the writebacks plugin on my blosxom installs, and have instead written a plugin that uses the Kwiki module to insert links to new pages based on the filename of the post.
Needs to be pointed at a basic kwiki config file with the "script_name" and "database_directory" settings defined.
package kwikilink; use strict; use warnings; use Kwiki;#-------------------
# Begin Local Configmy $configdir = "/home/heillingr/blosxom/plugins";
# End Local Config
#-------------------our $hub = Kwiki->new->load_hub("$configdir/kwikilink.yaml");
$hub->load_class('pages');
our $kwikilink;sub start {
return(1);
}sub story {
my ($path, $file) = @_[1,2];
my $fullname = "$path/$file";
$fullname =~ s{(?:^|/)([a-z])}{\U$1}g;
my $page = $hub->pages->new_from_name($fullname);
$kwikilink = $page->kwiki_link;
}1;