X-Git-Url: https://codewiz.org/gitweb?p=wiki.git;a=blobdiff_plain;f=GeekiGeeki;h=c6ce51dde2df341494a2433aaeda287c476dc698;hp=bfa2820e6bb16f42e57a8837c9b039a9596a08ac;hb=4c616c8eb71a350087dab8da3fa28db8050f623e;hpb=afd034716e35256f80f87aa28e501df15376f000 diff --git a/GeekiGeeki b/GeekiGeeki index bfa2820..c6ce51d 100644 --- a/GeekiGeeki +++ b/GeekiGeeki @@ -1,17 +1,97 @@ -This WikiWikiWeb runs a fork of PikiWiki. The most important feature of GeekiGeeki is of course the GuruMeditation alerts, but it also uses [[http://git.or.cz/ Git]] as a versioning backend. +
GerryStich.jpg
-==== Source Code ==== +== What is Geeki Geeki? == -The modified source code is available here: - * [[../wikidata/geekigeeki.py geekigeeki.py]] -- The CGI itself - * [[../wikidata/geekigeeki.css geekigeeki.css]] -- The stylesheet used at this site - * [[../wikidata/post_edit_hook.sh post_edit_hook.sh]] -- Some glue to integrate with Git - * [[../wikidata/wiki_apache.conf wiki_apache.conf]] -- Sample configuration file for Apache +GeekiGeeki is a minimalistic wiki with a [[http://git.or.cz/ | Git]] +backend, a high features/complexity ratio and a very clean syntax. -==== Contributing ==== +Check the EditingTips page to get an idea the supported wiki markup. -Please send your patches! See the GeekiGeekiToDo list for ideas. +GeekiGeeki is a descendant of PikiWiki, like MoinMoin, and is written in Python. + +== Features == + + * Rich, clean markup syntax highly compatible with WikiCreole + * Git versioned storage backend + * Interfaces with Gitweb for history browsing, RSS... + * Consistent use of CSS for easy theming + * HTML pass-through for powerful formatting + * Pluggable macros + * Page includes (templates with parameters coming) + * Usable for blogging + * Directory listing + * [[Picture]] gallery + * Easy to interface with other SCMs through a glue script + * User accounts supported through HTTP basic auth done by web server + * Per-page ACLs + * Simple title and full text search + * Easy CGI installation (no WSGI, mod_python, FCGI...) + * Fast! + * Only 800 LOCs! + * GuruMeditation alerts :-) + +== Download == + +==== Releases ==== + +|| 11-Dec-2008 || **v3.0** || http://www.codewiz.org/wikigit/geekigeeki.git?a=snapshot;h=v3.0;sf=tbz2 || +|| 23-Sep-2008 || **v2.0** || http://www.codewiz.org/wikigit/geekigeeki.git?a=snapshot;h=v2.0;sf=tbz2 || + + +==== Source ==== + +You can obtain the latest version -- actually ''any'' version -- through git: + +{{{ +git clone http://www.codewiz.org/~bernie/git/geekigeeki.git/ +git clone git://www.codewiz.org/~bernie/geekigeeki.git/ +}}} + +===== Revision history ===== + +Browse it online with GitWeb: http://www.codewiz.org/wikigit/geekigeeki.git -Bugfixes and cute hacks welcome. BloatWare ''will'' be rejected: this is a minimalistic wiki, damn'it! +===== Individual source files ===== + + * [[../wikidata/geekigeeki.py | geekigeeki.py]] -- The CGI itself + * [[../wikidata/geekigeeki.conf.py | geekigeeki.conf.py]] -- Sample site config + * [[../wikidata/geekigeeki.css | geekigeeki.css]] -- The stylesheet used at this site + * [[../wikidata/post_edit_hook.sh | post_edit_hook.sh]] -- Some glue to integrate with git + * [[../wikidata/wiki_apache.conf | wiki_apache.conf]] -- Sample conf file for Apache + +== Installation == + +The easiest way is: + + * clone the git repository anywhere you like + * edit **wiki_apache.conf** to adapt it to your system, and move or link it to your Apache configuration directory. + * customize the wiki through geekigeeki.conf.py + * create a git repository for your wiki: + {{{ + mkdir data + cd data + git init --shared=group + chgrp -R apache . + }}} + * reload Apache + +== Update procedure == + +If you cloned the repository as suggested, updating and downgrading is easy: + +{{{ +git pull +}}} + +to switch to a different version of GeekiGeeki: + +{{{ +git checkout {tree-ish} +}}} + +== Contributing == + +Please send your patches! See the GeekiGeekiToDo list for ideas. -GerryStich.jpg +Bugfixes and cute hacks welcome. BloatWare //will// be rejected: this is +a minimalistic wiki, damn'it!