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