Edit page GeekiGeeki
[wiki.git] / GeekiGeeki
1 <div style="float: right">GerryStich.jpg</div>
2
3 ==== What is Geeki Geeki? ====
4
5 GeekiGeeki is a minimalistic wiki with a  [[http://git.or.cz/ | git]] backend,
6 a high features/complexity ratio and a clean syntax similar to WikiCreole.
7
8 Check the EditingTips to get an idea the supported wiki syntax.
9
10 GeekiGeeki is yet another fork of PikiWiki, like MoinMoin, and it is written
11 in Python.
12
13 == Features ==
14
15  * Git versioned backend
16  * Interfaces with Gitweb for history browsing, RSS...
17  * Consistent use of CSS for easy theming
18  * Pluggable macros
19  * Page includes (templates with parameters coming)
20  * Usable for blogging
21  * Directory listing
22  * [[Picture]] gallery
23  * Easy to interface with other SCMs through a glue script
24  * User accounts supported through HTTP basic auth done by web server
25  * Per-page ACLs
26  * Simple title and full text search
27  * Easy CGI installation (no WSGI, mod_python, FCGI...)
28  * Fast!
29  * Only 800 LOCs!
30  * GuruMeditation alerts :-)
31
32 ==== Download ====
33
34 ===== Source repository ====
35
36 You can obtain the latest source snapshot through git:
37
38 {{{
39 git clone http://www.codewiz.org/~bernie/git/geekigeeki.git/
40 git clone git://www.codewiz.org/~bernie/geekigeeki.git/
41 }}}
42
43 ===== Revision history =====
44
45 Browse it online with GitWeb: http://www.codewiz.org/wikigit/geekigeeki.git
46
47 ===== Individual source files =====
48
49  * [[../wikidata/geekigeeki.py      | geekigeeki.py]]      -- The CGI itself
50  * [[../wikidata/geekigeeki.conf.py | geekigeeki.conf.py]] -- Sample site config
51  * [[../wikidata/geekigeeki.css     | geekigeeki.css]]     -- The stylesheet used at this site
52  * [[../wikidata/post_edit_hook.sh  | post_edit_hook.sh]]  -- Some glue to integrate with git
53  * [[../wikidata/wiki_apache.conf   | wiki_apache.conf]]   -- Sample conf file for Apache
54
55 ==== Installation ====
56
57 The easiest way is:
58
59  * clone the git repository anywhere you like
60  * edit **wiki_apache.conf** to adapt it to your system, and move or link it to your Apache configuration directory.
61  * customize the wiki through geekigeeki.conf.py
62  * create a git repository for your wiki:
63  {{{
64  mkdir data
65  cd data
66  git init --shared=group
67  chgrp -R apache .
68  }}}
69  * reload Apache
70
71 ==== Update procedure ====
72
73 If you cloned the repository as suggested, updating and downgrading is easy:
74
75 {{{
76 git pull
77 }}}
78
79 to switch to a different version of GeekiGeeki:
80
81 {{{
82 git checkout {tree-ish}
83 }}}
84
85 ==== Contributing ====
86
87 Please send your patches!  See the GeekiGeekiToDo list for ideas.
88
89 Bugfixes and cute hacks welcome.  BloatWare //will// be rejected: this is
90 a minimalistic wiki, damn'it!