Date: 2005-01-30T16:30:33
Editor: RalphGoers
Wiki: Cocoon Wiki
Page: RightsManagement
URL: http://wiki.apache.org/cocoon/RightsManagement
no comment
Change Log:
------------------------------------------------------------------------------
@@ -1,9 +1,9 @@
= RightsManagement =
-The RightsManagement should restrict the access to plugins, functions inside
the plugins or or actions
-inside the functions. It is configured via a XML-File (the auht-file you pass
to the PortalToolManager, not fully implemented yet, it?s a simple textfile atm)
+Portal rights management restricts access to plugins, methods inside the
plugins or to actions
+inside the methods. It is configured via an XML-File (the auth-file you pass
to the PortalToolManager, not fully implemented yet, it?s a simple textfile atm)
-/!\ The RightsManagement is currently under development and may change.
+/!\ RightsManagement is currently under development and may change.
== Configuration (auth.xml) ==
=== Current Configuration ===
@@ -17,25 +17,25 @@
=== New Configuration (proposal) ===
{{{
<auth>
- <plugin id="copletManagement">
- <functions>
- <function id="showTab">
- <roles>
- <role>admin</role>
- </roles>
- <users>
- <user>cocoon</user>
- </users>
- </function>
- <actions>
- <action id="moveUp">
- <roles>
- <role>admin</role>
- </roles>
- </action>
- </actions>
- </functions>
- </plugin>
+ <plugin id="copletManagement">
+ <functions>
+ <function id="showTab">
+ <roles>
+ <role>admin</role>
+ </roles>
+ <users>
+ <user>cocoon</user>
+ </users>
+ </function>
+ <actions>
+ <action id="moveUp">
+ <roles>
+ <role>admin</role>
+ </roles>
+ </action>
+ </actions>
+ </functions>
+ </plugin>
</auth>
}}}
|