9

I am not aware of a really good Django-App which provides Wiki functionality. There is http://code.google.com/p/django-wikiapp/ , but it is not that extensive and no activity anymore.

Any pointers of how to integrate an already proven (and known) Wiki to Django?

loomi
  • 2,936
  • 3
  • 25
  • 28
  • Hi @loomi, I'm also looking for a good wiki application for Django, it really appears that actually there isn't too much choice. Do you have any news about this? What's the result of your research? Thanks for sharing. – Paolo Jul 31 '11 at 18:09
  • 1
    Though not strictly answering to your question, [cmsplugin-markup-tracwiki](https://bitbucket.org/mitar/cmsplugin-markup-tracwiki/overview) might be a solution. I don't know how good it is, but at least it seems maintained. – Paolo Aug 01 '11 at 17:33
  • 1
    Hi, this look's interesting indeed. But trac brings me already too much functionality. I did look into Dokuwiki integration for now. I wrote a authentication module for DokuWiki which authenticates against the django user database. http://www.dokuwiki.org/auth:django (imports even the groups) – loomi Aug 07 '11 at 20:31

2 Answers2

7

Checkout https://github.com/django-wiki/django-wiki. I've installed it and so far it looks very promising.

ostrokach
  • 17,993
  • 11
  • 78
  • 90
Rabih Kodeih
  • 9,361
  • 11
  • 47
  • 55
  • 2
    There is no documentation on how to actually get started using this project. :( – rjurney Apr 03 '18 at 16:10
  • 1
    @rjurney There is - but you are also most welcome to help improving it: https://django-wiki.readthedocs.io/en/main/index.html – benjaoming May 08 '21 at 08:32
6

One of these many packages may suit your needs: Djangopackages.com wiki grid

www.djangopackages.com is a great resource for looking for apps.

j_syk
  • 6,511
  • 2
  • 39
  • 56
  • Thank's this is a great resource! Unfortunately it doesn't help me in my decision of how to integrate a working and fullfeatured Wiki in Django. (There are a lot small projects but non of them is promising enough to adapt.) I think I will most probably integrate a PHP based Wiki like a Mediawiki or Dokuwiki. – loomi Jul 21 '11 at 12:26