vote up 0 vote down star

Is anyone developing application integrated with Mediawiki - using Django or other Python web development platforms using mod_wsgi?

Would be very interested to find out what has been done in this direction and maybe there is some code available for re-use. (I've started creating wiki extensions working with MW database in python whose output is injected via Apache's include virtual directive. it works ok, but a bit slow so far - maybe I can optimize it though)

Basically I would like to have certain parts of displayed wiki pages be prepared with python.

Has anyone reproduced common MW skins in python templates?

Thanks.

flag

60% accept rate

2 Answers

vote up 1 vote down

There are so many different ways to do this.

  • You can make a mediawiki skin that uses iframes and inserts things from a Python server.
  • You can write a python app that accesses mediawikis data somehow and outputs it.
  • You can put a Python server in front that extracts the content from mediawiki and put's it into a page that is otherwise generated from Python.
  • You can use deliverence to skin mediawiki, and use it's pyref functionality to call pythonscripts and insert that into the skin (I think, I haven't done that myself).

Which way is best for you completely depends.

link|flag
thanks. what's pyref? – Evgeny Oct 16 at 21:48
It's mentioned in the deliverence docs. openplans.org/projects/deliverance – Lennart Regebro Oct 17 at 8:00
vote up 1 vote down

Can't you use Mediawiki HTTP based API? Loose coupling is great.

link|flag
sure, thanks. But I want to mix output of PHP with Python – Evgeny Oct 16 at 20:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.