sogo/UI/MainUI/product.plist
Wolfgang Sourdeau 871d1a16ff Monotone-Parent: 575cf41d358a8719c8b0d9a19301b8c29bbb1c30
Monotone-Revision: 0cecb36bac8d7c0453b08f4627e8b72389e560f1

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2007-11-29T16:52:38
Monotone-Branch: ca.inverse.sogo
2007-11-29 16:52:38 +00:00

146 lines
3.7 KiB
Plaintext

{
requires = ( MAIN, CommonUI );
publicResources = (
);
factories = {
};
classes = {
SOGoRootPage = {
superclass = "SoComponent";
protectedBy = "<public>";
defaultRoles = {
"View" = ( "Authenticated" );
};
};
SOGoObject = {
protectedBy = "<public>";
defaultAccess = "allow";
defaultRoles = {
"View" = ( "Owner", "ObjectViewer" );
"Change Images And Files" = ( "Owner", "ObjectEditor" );
"Access Object" = ( "Owner", "AuthorizedSubscriber" );
"Access Contents Information" = ( "Owner", "ObjectViewer" );
"Add Documents, Images, and Files" = ( "Owner", "ObjectCreator" );
"Add Folders" = ( "Owner", "FolderCreator" );
"ReadAcls" = ( "Owner" );
"SaveAcls" = ( "Owner" );
"Delete Objects" = ( "Owner", "ObjectEraser" );
"WebDAV Access" = ( "Owner", "ObjectViewer", "ObjectEditor", "ObjectCreator", "ObjectEraser" );
};
};
SOGoContentObject = {
superclass = "SOGoObject";
defaultAccess = "Access Contents Information";
protectedBy = "Access Object";
defaultRoles = {
"Access Contents Information" = ( "Owner", "ObjectViewer", "ObjectEditor" );
"Change Images And Files" = ( "Owner", "ObjectEditor" );
};
methods = {
DELETE = {
protectedBy = "Delete Objects";
};
GET = {
protectedBy = "Access Contents Information";
};
PUT = {
protectedBy = "Change Images And Files";
};
};
};
SOGoFolder = {
superclass = "SOGoObject";
protectedBy = "Access Object";
defaultRoles = {
"Change Images And Files" = ( "Owner", "ObjectEditor" );
"View" = ( "Owner", "ObjectViewer", "ObjectEditor" );
"Access Contents Information" = ( "Owner", "ObjectViewer", "ObjectEditor" );
"WebDAV Access" = ( "Authenticated", "AuthorizedSubscriber" );
};
};
SOGoParentFolder = {
superclass = "SOGoFolder";
protectedBy = "Access Contents Information";
defaultRoles = {
"Access Contents Information" = ( "Authenticated" );
"WebDAV Access" = ( "Authenticated" );
};
};
SOGoUserFolder = {
superclass = "SOGoFolder";
protectedBy = "Access Contents Information";
defaultRoles = {
"Access Contents Information" = ( "Authenticated" );
"WebDAV Access" = ( "Authenticated" );
};
};
};
categories = {
SOGo = { // TODO: move decls to class
methods = {
view = {
protectedBy = "<public>";
pageName = "SOGoRootPage";
};
connect = {
protectedBy = "<public>";
pageName = "SOGoRootPage";
actionName = "connect";
};
GET = { // more or less a hack, see README of dbd
protectedBy = "<public>";
pageName = "SOGoRootPage";
};
};
};
SOGoRootPage = {
};
SOGoUserFolder = {
methods = {
view = {
protectedBy = "<public>";
pageName = "SOGoUserHomePage";
};
logoff = {
protectedBy = "<public>";
pageName = "SOGoUserHomePage";
actionName = "logoff";
};
};
};
SOGoGroupsFolder = {
methods = {
index = {
protectedBy = "View";
pageName = "SOGoGroupsPage";
};
};
};
SOGoGroupFolder = {
methods = {
index = {
protectedBy = "View";
pageName = "SOGoGroupPage";
};
};
};
SOGoFreeBusyObject = {
methods = {
ajaxRead = {
protectedBy = "<public>";
pageName = "SOGoUserHomePage";
actionName = "readFreeBusy";
};
};
};
SOGoCustomGroupFolder = {
methods = {
};
};
};
}