0

We are using MoinMoin as a wiki for our applications. We would like to open are set of pages to the public access. How would I do that ?

Can I set a public access on some pages in the configuration file ?

gpasse
  • 4,380
  • 7
  • 44
  • 75

2 Answers2

0

read HelpOnAccessControlLists wiki page.

you can set ACLs at the top of the page content.

Thomas Waldmann
  • 501
  • 2
  • 7
0

In order to set a page 'read only for un-authentificated users' :

  1. edit the configuration file wikiconfig.py with

    acl_rights_before = u"AnAdminAccount:read,write,delete,revert,admin"

    acl_rights_default = u"AnAdminAccount:read,write,delete,revert,admin"

  2. Add on top of the wiki page that you would like to open for the public :

    #acl MyUserName:read,write,admin,revert,delete All:read

gpasse
  • 4,380
  • 7
  • 44
  • 75