This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
wigit /
| name | age | message | |
|---|---|---|---|
| |
AUTHORS | Mon Jul 21 03:15:15 -0700 2008 | |
| |
COPYING | Sun Jul 20 14:23:58 -0700 2008 | |
| |
README | Sun Jul 20 13:50:57 -0700 2008 | |
| |
TODO | Sun Jul 20 13:04:59 -0700 2008 | |
| |
classTextile.php | Fri Jan 09 11:53:10 -0800 2009 | |
| |
config.php.sample | Sun Jul 20 13:50:57 -0700 2008 | |
| |
index.php | ||
| |
themes/ | Mon Jul 21 09:36:08 -0700 2008 |
README
*************************** * WiGit: A Git-based Wiki * *************************** About ----- WiGit is a simple Wiki written in PHP, using Git (http://git.or.cz/) as a backend for tracking changes. Besides Git, this wiki makes use of Textile (http://textile.thresholdstate.com/) for marking up text. Features -------- * Very simple and light * Easily customizable using themes * Extensive syntax for marking up text (using Textile) * Full history tracking support * Basic support for users/authors, by using the HTTP authentication headers to extract the user. * Support for pretty URLs (using URL rewriting) Requirements ------------ * Webserver * PHP4 * Git Installation ------------ * Put the WiGit dir in some place where the webserver can find it * Make sure there's a 'data' subdir, and that it is writable by the webserver * Copy config.php.sample to config.php, and edit config.php to reflect your local settings * Surf to the wigit URL, and you should start by editing the front page For URL rewriting, change the SCRIPT_URL to be the base URL prefix (as is shown in the config file), and add the necessary URL rewrite rules for your webserver. E.g., * For Apache, add the following to .htaccess in your wigit install dir: <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /wigit/ RewriteCond %{REQUEST_FILENAME} !-f RewriteRule (.*) /wigit/index.php?r=$1 [L] </IfModule> * For lighttpd, add the following to your config file: url.rewrite-once ( "^/wigit/templates/(.*)" => "$0", "^/wigit(.*)" => "/wigit/index.php?r=$1", ) (where /wigit is replaced by your own base url) For user support, configure your webserver to require authentication for the wigit install dir. E.g. * For Apache, add the following to .htaccess in your wigit install dir: AuthType Basic AuthName "My WiGit" AuthUserFile /path/to/passwords/file Require valid-user * For lighttpd, add the following to your config file: auth.backend = "htdigest" auth.backend.htdigest.userfile = "/path/to/htdigest/file" auth.require = ( "/wigit" => ( "method" => "digest", "realm" => "My WiGit", "require" => "valid-user", ) ) Contact ------- More information can be found on http://el-tramo.be/software/wigit Bugs and/or feature requests can be sent to me. For contact information, see http://el-tramo.be/about.








