/[pub]/suikawiki/wikidata/suikawiki-config.ph
Suika

Diff of /suikawiki/wikidata/suikawiki-config.ph

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.2 by w, Wed Jan 1 01:43:00 2003 UTC revision 1.3 by w, Fri Jan 3 03:43:07 2003 UTC
# Line 4  use strict; Line 4  use strict;
4  #  #
5  # our $modifier_dbtype = 'AnyDBM_File';  # Fast, not available on some server, page size limited.  # our $modifier_dbtype = 'AnyDBM_File';  # Fast, not available on some server, page size limited.
6  # our $modifier_dbtype = 'dbmopen';      # Fast, not available on some server, page size limited.  # our $modifier_dbtype = 'dbmopen';      # Fast, not available on some server, page size limited.
7  our $modifier_dbtype = 'YukiWikiDB';     # Slow, available on all environment.  #our $modifier_dbtype = 'Yuki::YukiWikiDB';     # Slow, available on all environment.
8  our $url_cgi = '/~wakaba/-temp/wiki/wiki';  #our $modifier_dbtype = 'Yuki::YukiWikiDB2';     # Slow, available on all environment.
9    our $modifier_dbtype = 'Yuki::YukiWikiDBMeta';     # Slow, available on all environment.
10    our $url_cgi = '/~wakaba/suikawiki/wiki';
11          ## - MUST be started by '/'          ## - MUST be started by '/'
12          ## - MUST NOT include [&<>"] and/or non-URI characters          ## - MUST NOT include [&<>"] and/or non-URI characters
13  our %uri;  our %uri;
14  $uri{wiki} = $url_cgi;  $uri{wiki} = $url_cgi;
15  $uri{cvs_wikipage} = '/gate/cvs/wakaba/suikawiki/wiki/';  $uri{cvs_wikipage} = '';        ## URI path to Web interface of CVS repository of WikiPages ("" = none)
16  $SuikaWiki::Plugin::plugin_directory = q(./SuikaWiki/Plugin/);  $SuikaWiki::Plugin::plugin_directory = q(lib/SuikaWiki/Plugin/);
17  our %PathTo = ( ## Path to your data, from the main CGI script (NOT from this config script)  our %PathTo = ( ## Path to your data, from the main CGI script (NOT from this config script)
   TouchFile     => q(./wikidata/touched.txt),  
18    WikiDataBase  => q(./wikidata/page),    WikiDataBase  => q(./wikidata/page),
   WikiInfoBase  => q(./wikidata/info),  
   WikiDiffBase  => q(./wikidata/diff),  
19  );  );
20  our $use_exists = 0; # If you can use 'exists' method for your DB.  our $use_exists = 0; # If you can use 'exists' method for your DB.
21  ##############################  ##############################
# Line 26  our %PageName = ( Line 25  our %PageName = (
25    SearchPage    => 'SearchPage',    SearchPage    => 'SearchPage',
26    CreatePage    => 'CreatePage',    CreatePage    => 'CreatePage',
27    ErrorPage     => 'ErrorPage',    ErrorPage     => 'ErrorPage',
28      RecentChanges => 'RecentChanges',
29    RssPage       => 'RssPage',    RssPage       => 'RssPage',
30    AdminSpecialPage      => 'Admin Special Page', # must include spaces.    AdminSpecialPage      => "\x11\x11Admin\x11Special\x11Page\x11\x11",
31    DefaultStyleForHTML   => 'WikiHTMLStyle',    DefaultStyleForHTML   => 'WikiHTMLStyle',
32      UserAgentList => 'WikiUserAgentList',
33  );  );
34  our $kanjicode = 'euc';  our $kanjicode = 'euc';
35  our $lang = 'ja';  our $lang = 'ja';
36  our %fixedpage = (  ## List of WikiPages should not be changed
37      $PageName{IndexPage}        => 1,  our %FixedPage = (
38      $PageName{ErrorPage}        => 1,      $PageName{ErrorPage}        => 1,
39      $PageName{RssPage}  => 1,      $PageName{RssPage}  => 1,
     RecentChanges => 1,  
     AdminChangePassword => 1,  
40      CompletedSuccessfully => 1,      CompletedSuccessfully => 1,
     WikiUserAgentList => 1,  
41  );  );
42    
43    $wiki::useragent::UseLog = 0;   ## Use User-Agent name log (WikiUserAgentList) or not
44    $wiki::diff::UseDiff = 1;       ## Use diff mode or not
45    
46  1;  1;

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

admin@suikawiki.org
ViewVC Help
Powered by ViewVC 1.1.24