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