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