active questions tagged moinmoin - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T02:51:06Z http://stackoverflow.com/feeds/tag/moinmoin http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1500367/getting-started-with-a-personal-wiki-and-moinmoin 0 Getting started with a personal wiki and moinmoin Fernando 2009-09-30T20:07:16Z 2009-09-30T20:14:07Z <p>I have been planning to start a personal wiki to organize my projects. After shopping for a personal wiki I settled on moinmoin desktop. </p> <p>It seemed like a good option: no complicated installation, no db and written in Python (which is a plus for me, in case I want to tweek the code).</p> <p>However, I a bit overwhelmed and have no idea where to start... </p> <p>Are there any good tutorials or books on this system? </p> <p>Do you recommend another wiki which might have a richer documentation, books, tutorials and so forth?</p> http://stackoverflow.com/questions/176955/offline-access-to-moinmoin-wiki-using-google-gears 2 Offline access to MoinMoin wiki using Google Gears CaptSolo 2008-10-07T01:53:38Z 2009-09-06T11:53:57Z <p>How to add offline access functionality to <a href="http://moinmo.in" rel="nofollow">MoinMoin wiki</a>?</p> <p>As a minimum, I would love to have browsing access to all pages on a server-based wiki (while being offline). Search and other things, which do not modify the content, are secondary. An added bonus would be if this solution allowed to update wiki content while offline and push it back to the wiki when online.</p> <p>Google Gears looks like a good candidate for trying to solve this, but other solutions are also welcome.</p> <p>An interesting property of MoinMoin is that it keeps content in regular files instead of the database. This can make it easier to port wiki content from one location to another, but I don't know if that can play any role in answering this question.</p> <p>Note: if you see a good reply please rate it up. i'd love to do that, but the site does not let me do ratings yet.</p> http://stackoverflow.com/questions/343769/how-to-use-interwiki-links-in-moinmoin 0 How to use InterWiki links in moinmoin? UlfR 2008-12-05T13:08:12Z 2009-01-17T18:09:14Z <p>We use a number of diffrent web services in our company, wiki(moinmoin), bugtracker (internally), requestracker (customer connection), subversion. Is there a way to parse the wikipages so that if I write "... in Bug1234 you could ..." Bug1234 woud be renderd as a link to <code>http://mybugtracker/bug1234</code></p> http://stackoverflow.com/questions/395591/moinmoin-cgi-and-query-string-parameters 0 MoinMoin CGI and Query String Parameters Adam Liss 2008-12-27T23:37:17Z 2008-12-27T23:37:17Z <p>I've just chosen MoinMoin over TWiki to create a simple-but-robust web site. In addition to zero ramp-up and very basic authentication and Wiki features, I need to execute a few simple scripts that take the user's ID and email address as parameters.</p> <p>TWiki supported this with:</p> <pre><code>[[/cgi-bin/mywiki/userscript?id=%USERNAME%&amp;email=%USERINFO{format="$emails"}%][Execute personalized script for %USERNAME%]] </code></pre> <p>I've scoured the docs and the web; I'm guessing I want something like:</p> <pre><code>[[GetVal(WikiDict,UserName)]] </code></pre> <p>... but I haven't gotten the details right. Can anyone point me to an example?</p> <p>Thanks for your help!</p> http://stackoverflow.com/questions/335891/shell-script-doesnt-run-automatically-though-it-is-registered-in-mac-os-x-login 2 Shell Script doesn't run automatically though it is registered in Mac OS X Login Items stuartcw 2008-12-03T00:19:58Z 2008-12-03T13:07:20Z <p>I have the following shell script registered in my "Login Items" preferences but it does not seem to have any effect. It is meant to launch the moinmoin wiki but only works when it is run by hand from a terminal window, after which it runs until the machine is next shut down.</p> <pre><code>#!/bin/bash cd /Users/stuartcw/Documents/Wiki/moin-1.7.2 /usr/bin/python wikiserver.py &gt;&gt; logs/`date +"%d%b%Y"`.log 2&gt;&amp;1 &amp; </code></pre> <p>I would really like the Wiki to be available after restarting so any help in understanding this would be appreciated.</p>