Almost-minimal filesystem based blog.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.5 KiB

17 years ago
17 years ago
17 years ago
  1. ########################
  2. # display.pl options #
  3. ########################
  4. our %DISPLAY_CONF = (
  5. root_dir => "/home/bbearnes/p1k3.com/archives",
  6. url_root => "http://p1k3.com/",
  7. image_url_root => "http://p1k3.com/",
  8. header => 'header',
  9. footer => 'footer',
  10. stylesheet_url => 'http://p1k3.com/p1k3.css',
  11. favicon_url => 'http://p1k3.com/favicon.png',
  12. author => 'Brennen Bearnes',
  13. description => '',
  14. license => '',
  15. );
  16. ##################
  17. # WALA OPTIONS #
  18. ##################
  19. our %WalaConf = (
  20. RecentChangesMaxLines => 50,
  21. DefaultUserName => 'Anonymous',
  22. StyleSheet => 'http://p1k3.com/wala/wala.css',
  23. DefaultPageText => "Write something.\n",
  24. CookieSurvivalDays => 90,
  25. HomePage => "HomePage",
  26. TimeZone => "UTC",
  27. TitleString => "p1k3 wala::",
  28. ScriptName => "http://p1k3.com/wala/wala.pl",
  29. CheckSetup => 0,
  30. # No trailing slash on RootDir, please.
  31. RootDir => "/home/bbearnes/wala",
  32. FeedURL => "http://p1k3.com/wala/wala_feed.pl",
  33. ShowSearchlinks => 1,
  34. UseCache => 1,
  35. DisplayRootDir => $DISPLAY_CONF{root_dir},
  36. DisplayURL => $DISPLAY_CONF{url_root},
  37. );
  38. $WalaConf{LogFile} = $WalaConf{RootDir} . '/log';
  39. $WalaConf{PagesDir} = '/home/bbearnes/wala/pages';
  40. $WalaConf{CacheDir} = '/home/bbearnes/wala/cache';
  41. $WalaConf{DiffDir} = '/home/bbearnes/wala/diffs';