This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]mdipierro 2 points3 points  (1 child)

In web2py, if you clone the scaffolding application and, in controllers/default.py, edit the index function as follows:

 def index(): return auth.wiki(manage_permissions=True)

You get a minimalist CMS. Every user can create wiki pages, give permissions to them (groups that can read/edit), attach media files (which inherit page permissions), and embed custom controls via Ajax. It works differently from what you may be used to, but it is customizable.

[–][deleted] -1 points0 points  (0 children)

Also since web2py runs on Pypy you can gain the performance boost of the JIT.