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 Check the EditingTips to get an idea the supported wiki syntax.
8
9 GeekiGeeki is a descendant of PikiWiki, like MoinMoin, and it is written
10 in Python.
11
12 == Features ==
13
14  * Git versioned backend
15  * Interfaces with Gitweb for history browsing, RSS...
16  * Consistent use of CSS for easy theming
17  * HTML pass-through for powerful formatting
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 ===== Releases =====
35
36 || 11-Dec-2008 || **v3.0** || http://www.codewiz.org/wikigit/geekigeeki.git?a=snapshot;h=v3.0;sf=tbz2 ||
37 || 23-Sep-2008 || **v2.0** || http://www.codewiz.org/wikigit/geekigeeki.git?a=snapshot;h=v2.0;sf=tbz2 ||
38
39 ===== Source repository ====
40
41 You can obtain the latest source snapshot through git:
42
43 {{{
44 git clone http://www.codewiz.org/~bernie/git/geekigeeki.git/
45 git clone git://www.codewiz.org/~bernie/geekigeeki.git/
46 }}}
47
48 ===== Revision history =====
49
50 Browse it online with GitWeb: http://www.codewiz.org/wikigit/geekigeeki.git
51
52 ===== Individual source files =====
53
54  * [[../wikidata/geekigeeki.py      | geekigeeki.py]]      -- The CGI itself
55  * [[../wikidata/geekigeeki.conf.py | geekigeeki.conf.py]] -- Sample site config
56  * [[../wikidata/geekigeeki.css     | geekigeeki.css]]     -- The stylesheet used at this site
57  * [[../wikidata/post_edit_hook.sh  | post_edit_hook.sh]]  -- Some glue to integrate with git
58  * [[../wikidata/wiki_apache.conf   | wiki_apache.conf]]   -- Sample conf file for Apache
59
60 ==== Installation ====
61
62 The easiest way is:
63
64  * clone the git repository anywhere you like
65  * edit **wiki_apache.conf** to adapt it to your system, and move or link it to your Apache configuration directory.
66  * customize the wiki through geekigeeki.conf.py
67  * create a git repository for your wiki:
68  {{{
69  mkdir data
70  cd data
71  git init --shared=group
72  chgrp -R apache .
73  }}}
74  * reload Apache
75
76 ==== Update procedure ====
77
78 If you cloned the repository as suggested, updating and downgrading is easy:
79
80 {{{
81 git pull
82 }}}
83
84 to switch to a different version of GeekiGeeki:
85
86 {{{
87 git checkout {tree-ish}
88 }}}
89
90 ==== Contributing ====
91
92 Please send your patches!  See the GeekiGeekiToDo list for ideas.
93
94 Bugfixes and cute hacks welcome.  BloatWare //will// be rejected: this is
95 a minimalistic wiki, damn'it!