use strict; # # You MUST modify following '$modifier_...' variables. # # our $modifier_dbtype = 'AnyDBM_File'; # Fast, not available on some server, page size limited. # our $modifier_dbtype = 'dbmopen'; # Fast, not available on some server, page size limited. our $modifier_dbtype = 'YukiWikiDB'; # Slow, available on all environment. our $url_cgi = '/~wakaba/-temp/wiki/wiki'; ## - MUST be started by '/' ## - MUST NOT include [&<>"] and/or non-URI characters our %uri; $uri{wiki} = $url_cgi; $uri{cvs_wikipage} = '/gate/cvs/wakaba/suikawiki/wiki/'; $SuikaWiki::Plugin::plugin_directory = q(./SuikaWiki/Plugin/); our %PathTo = ( ## Path to your data, from the main CGI script (NOT from this config script) TouchFile => q(./wikidata/touched.txt), WikiDataBase => q(./wikidata/wiki), WikiInfoBase => q(./wikidata/info), WikiDiffBase => q(./wikidata/diff), ); our $use_exists = 0; # If you can use 'exists' method for your DB. ############################## our %PageName = ( FrontPage => 'HomePage', IndexPage => 'IndexPage', SearchPage => 'SearchPage', CreatePage => 'CreatePage', ErrorPage => 'ErrorPage', RssPage => 'RssPage', AdminSpecialPage => 'Admin Special Page', # must include spaces. DefaultStyleForHTML => 'WikiHTMLStyle', ); our $kanjicode = 'euc'; our $lang = 'ja'; our %fixedpage = ( $PageName{IndexPage} => 1, $PageName{ErrorPage} => 1, $PageName{RssPage} => 1, RecentChanges => 1, AdminChangePassword => 1, CompletedSuccessfully => 1, WikiUserAgentList => 1, ); 1;