Questions tagged [moinmoin]

MoinMoin is an Open Source wiki program written in Python.

MoinMoin is an Open Source wiki program written in Python. MoinMoin supports access control lists MoinMoin is easy to extend

46 questions
5
votes
2 answers

Is there a way to incorporate python code into moinmoin pages?

I was wondering whether there is a trick to (easily) incorporate some python code into a moinmoin page, perhaps by adding some action. The idea is that something like <<< for j in [1,3,5]: print(i) >>> is displayed on the page as 1 3 5 Quick…
mitchus
  • 4,677
  • 3
  • 35
  • 70
5
votes
5 answers

Offline access to MoinMoin wiki using Google Gears

How to add offline access functionality to MoinMoin wiki? 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…
CaptSolo
  • 1,771
  • 1
  • 16
  • 17
4
votes
1 answer

How to programmatically create a new Page in MoinMoin?

I want to write a python script that calls some external REST service and then creates MoinMoin pages based on the data that I pull back. I am using Python 2.4.3 on CentOS 5.3 and MoinMoin 1.9.3 in a wiki farm configuration. Note I don't want to…
user177800
4
votes
4 answers

Shell Script doesn't run automatically though it is registered in Mac OS X Login Items

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…
stuartcw
  • 127
  • 2
  • 11
3
votes
1 answer

Emacs Orgmode to MoinMoin converter

I am looking for some way of automatic conversion of emacs org-mode file into moin-moin syntax. I couldn't find any direct converters. Then my hope were converters like pandoc or txt2tags and indirect conversion with some intermediate format.…
claperius
  • 311
  • 7
  • 16
3
votes
1 answer

Minimal way to render Wiki Syntax (for example MoinMoin Wiki)

I enjoy using to Wikis to document all kind of stuff (recently I used MoinMoin, so I am used to that syntax). Now I am looking for a more lightweight solution, for documents where setting up a MoinMoin server is too much hassle. What is the…
Alex
  • 32,506
  • 16
  • 106
  • 171
3
votes
0 answers

MoinMoin - Upload Wiki with python script. No GUI

What I have: 0) A python script using requests that fetched all the data from old WIKI. (ask me for it if you want) 1) A "download"-folder. In there are saved the wiki markups as .txt files. 2) Name of the file: wiki/page1 is used to make…
Lionel Trebuchon
  • 400
  • 6
  • 14
3
votes
1 answer

Does Python respect symlinks?

I'm have difficulty finding any docs describing Python's expected symlink behavior. I've tried testing it myself but I'm getting weird results - sometimes it appears to work for a while then stops working. Anyway, I have a situation where MoinMoin…
EddyR
  • 6,891
  • 7
  • 42
  • 50
2
votes
1 answer

Trying to run 2 Python applications with different Python versions with mod_wsgi

I have in my Apache 2 applications: Django app and MoinMoin app. The first one is running now with Python3.4 and the second one (MoinMoin) with Python2.7 When running dpkg: ruben@babylon:/var/log/apache2$ dpkg -l | grep wsgi rc libapache2-mod-wsgi …
Ruben
  • 1,065
  • 5
  • 18
  • 44
2
votes
3 answers

How to use InterWiki links in moinmoin?

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…
UlfR
  • 4,175
  • 29
  • 45
2
votes
1 answer

Is there a way to get user statistics from MoinMoin

I am a beginner with MoinMoin. I am looking for a way to capture some stats about users. Specifically, interested in knowing the top contributors, their edit frequency, etc. Is there a way to do that??
Varunkumar Nagarajan
  • 1,807
  • 1
  • 24
  • 43
2
votes
1 answer

XML-RPC ResponseError failures on some machines and not others

I have a very simple python script that connects to a MoinMoin wiki via XMLRPC (v2) and pulls some data. It all begins with a simple authentication: self._server = xmlrpclib.ServerProxy(self.url) self.token = self._server.getAuthToken(self.user,…
lorenzog
  • 3,483
  • 4
  • 29
  • 50
1
vote
1 answer

Configuring moin2 to use postgresql as the Wiki Engine

I'm trying to setup the Wiki Engine Configuration on the file wikiconfig.py to be able to use postgresql instead of the default filesystem (fs store) but I can't make it work, I've done all the imports (flask_sqlalchemy and sqlalchemy),edited the…
1
vote
1 answer

python: "import Image" only works when executed as root

when I start python interpreter as root, I can import Image: Python 2.7.13 (default, Sep 26 2018, 18:42:22) >>> import Image however, when I do the same as user (www-data), I get MemoryError: Python 2.7.13 (default, Sep 26 2018, 18:42:22) >>>…
Martin Vegter
  • 136
  • 9
  • 32
  • 56
1
vote
1 answer

MoinMoin 1.9 programmatically creating page error: MoinMoin.PageEditor.AccessDenied: You are not allowed to edit this page!

I am trying to create a new wiki page programmatically with MoinMoin. But it is not allowing me to edit the page, how do I provide a user to create this page as? [Fri Mar 11 11:44:35] [root]@[dev] /usr/local/share/moin # python2.6 Python 2.6.5…
user177800
1
2 3 4