DokuWiki: An elegant and lightweight wiki engine

 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News DokuWiki: An elegant and lightweight wiki engine
# 1  
Old 06-25-2008
DokuWiki: An elegant and lightweight wiki engine

Wed, 25 Jun 2008 08:00:00 GMT
Created as a simple solution for managing documentation, DokuWiki has evolved into a powerful and flexible wiki suitable for most tasks involving collaborative editing. DokuWiki doesn't use a database back end (all pages are stored as plain text files), which makes it easy to install and maintain. Its access control list feature offers a user-friendly and flexible mechanism for restricting access to certain pages and namespaces. You can also extend DokuWiki's default functionality using plugins, and there are hundreds of plugins to choose from.


Source...
Login or Register to Ask a Question

Previous Thread | Next Thread

5 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Is there a more elegant

Hi, I am wanting to test that an argument passed is one of tstt11/2/3, tstq11/2/3 or tstp11/2/3 and I am currently doing it as below. Just wanting to know if there is a more 'elegant' way of doing this :-) arg_inst=`echo $1 | awk '{ print tolower($1) }'` if ] then echo "-... (2 Replies)
Discussion started by: newbie_01
2 Replies

2. Shell Programming and Scripting

Store the last 10 strings. A way to make it elegant?

Hello, Please find an ugly code. bouuu. It shall work onto RAM only to update from the last 10 strings from $URLTO. I shall read first : "$HOME/.fvwmoscfg/fvwmclipboardmplayerplayurl10.ini" The code works but it is very ugly. How could it be made elegant please? Thank you ... (2 Replies)
Discussion started by: french00b
2 Replies

3. Shell Programming and Scripting

Elegant gunzip of tar Contents

I am faced with a situation where I have directories of gunzipped contents bundled into a tar file. It might look something like this. x coop/batch/bin/ha90x20.gz, 632641 bytes, 1236 tape blocks x coop/batch/icm/HA90X20.icm.gz, 1821 bytes, 4 tape blocks x coop/batch/aeenv.gz, 4117 bytes, 9 tape... (2 Replies)
Discussion started by: scotbuff
2 Replies

4. Shell Programming and Scripting

Please make this code elegant.

Hi All, Following is the part of my script.It does contain many for loops and is not elegant. Please feel free to suggest any changes to make this elegant. Thanks! nua7 for i in `ls $CATALINA_HOME/shared/lib/*.jar`; do LOCALCLASSPATH="$LOCALCLASSPATH:$i" done for i in... (3 Replies)
Discussion started by: nua7
3 Replies

5. Shell Programming and Scripting

more elegant way for conditional statement needed

Hi all, I have a script which gets its input from a text file (file.txt) and processes each line within a loop. I have a counter which increases by one and I want something to happen every 7th, 14th, 21st, etc. line read. Currently the code looks and works perfectly like this: ... (3 Replies)
Discussion started by: candyflip2000
3 Replies
Login or Register to Ask a Question
DIDIWIKI(1)						      General Commands Manual						       DIDIWIKI(1)

NAME
didiwiki - simple wiki implementation with built-in webserver SYNOPSIS
didiwiki [options] DESCRIPTION
didiwiki is aimed at those who need a quick and lightweight wiki for personal use, such as notes, "to do" lists, etc. It is written in C, and has very low system requirements (binary size of ~25k stripped). This makes it particularly useful for handhelds. didiwiki does not require installation of a separate webserver, scripting language, or database. The appearance of the wiki pages may be altered by placing a styles.css in ~/.didiwiki or in the directory specified using the --home option. OPTIONS
-d, --debug Start in debug mode. In this case, didiwiki will not bind to any IP address or port: it will only read the requests from standard input (stdin) -h directory, --home=directory By default didiwiki stores its pages in ~/.didiwiki. You can override this by specifying an alternative directory -l ipaddr, --listen=ipaddr By default didiwiki binds to "0.0.0.0". You can override this by specifying an alternative IP address -p port, --port=port By default didiwiki will listen on port 8000. You can override this by specifying an alternative port --help Display the help message EXAMPLES
didiwiki uses syslog to log when it is launched or stopped, and when a page is accessed or modified. Here is an example configuration of rsyslog: $ cat /etc/rsyslog.d/didiwiki.conf local0.* /var/log/didiwiki.log In order to launch didiwiki on a specific IP and port: $ didiwiki -l 127.0.0.1 -p 8080 AUTHOR
didiwiki was written by Matthew Allum <mallum@o-hand.com>. January 15, 2005 DIDIWIKI(1)