e738d3b95cabbfd26af86b348728e9a00f701fc3
[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
40 ==== Source ====
41
42 You can obtain the latest version -- actually ''any'' version -- through git:
43
44 {{{
45 git clone http://www.codewiz.org/~bernie/git/geekigeeki.git/
46 git clone git://www.codewiz.org/~bernie/geekigeeki.git/
47 }}}
48
49 ===== Revision history =====
50
51 Browse it online with GitWeb: http://www.codewiz.org/wikigit/geekigeeki.git
52
53 ===== Individual source files =====
54
55  * [[../wikidata/geekigeeki.py      | geekigeeki.py]]      -- The CGI itself
56  * [[../wikidata/geekigeeki.conf.py | geekigeeki.conf.py]] -- Sample site config
57  * [[../wikidata/geekigeeki.css     | geekigeeki.css]]     -- The stylesheet used at this site
58  * [[../wikidata/post_edit_hook.sh  | post_edit_hook.sh]]  -- Some glue to integrate with git
59  * [[../wikidata/wiki_apache.conf   | wiki_apache.conf]]   -- Sample conf file for Apache
60
61 == Installation ==
62
63 The easiest way is:
64
65  * clone the git repository anywhere you like
66  * edit **wiki_apache.conf** to adapt it to your system, and move or link it to your Apache configuration directory.
67  * customize the wiki through geekigeeki.conf.py
68  * create a git repository for your wiki:
69  {{{
70  mkdir data
71  cd data
72  git init --shared=group
73  chgrp -R apache .
74  }}}
75  * reload Apache
76
77 == Update procedure ==
78
79 If you cloned the repository as suggested, updating and downgrading is easy:
80
81 {{{
82 git pull
83 }}}
84
85 to switch to a different version of GeekiGeeki:
86
87 {{{
88 git checkout {tree-ish}
89 }}}
90
91 == Contributing ==
92
93 Please send your patches!  See the GeekiGeekiToDo list for ideas.
94
95 Bugfixes and cute hacks welcome.  BloatWare //will// be rejected: this is
96 a minimalistic wiki, damn'it!