寻找用于协作 Wiki 的 django 应用程序
我一直在尝试找到一个 django wiki 应用程序,它具有以下内容 -
1.) WYSIWYG
2.) 附加文件
3.) 修订
我看到了 moinmoin,但在全力以赴之前,想看看你们都使用了什么。
I've been trying to find a django wiki app, which has the following -
1.) WYSIWYG
2.) Attach files
3.) Revisions
I see moinmoin, but before going all in, wanted to see what you all have used.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Django Wiki 项目列表:
http://djangopackages.com/grids/g/wikis/
List of Django Wiki projects:
http://djangopackages.com/grids/g/wikis/
我能找到的两个主要候选者是:
django-wikiapp 看起来更成熟一点,并且肯定支持修改但似乎不支持附件。使用 TinyMCE 或 CKEditor 之类的工具来实现所见即所得并不太难。附件可能是症结所在。
The two leading candidates I can find are:
django-wikiapp looks a little more mature, and definitely supports revisions but does not seem to support attachments. WYSIWYG wouldn't be too tough to implement using something like TinyMCE or CKEditor. Attachments may be the sticking point.
还有 pinax 中使用的 https://github.com/pinax/django-wakawaka项目。 wiki 本身不支持编辑附件,但建议在此用例中使用 django-attachments :)
There is also https://github.com/pinax/django-wakawaka which used in the pinax project. Editing attachments is not supported by the wiki itself but it is suggested to use django-attachments for this use case :)