]> err.no Git - scalable-opengroupware.org/blob - dbd/product.plist
git-svn-id: http://svn.opengroupware.org/SOGo/trunk@54 d1b88da0-ebda-0310-925b-ed51d8...
[scalable-opengroupware.org] / dbd / product.plist
1 {
2   publicResources = (
3     "dbd.css"
4   );
5
6   classes = {
7     DBDaemon = {
8       superclass    = "SoApplication";
9       protectedBy   = "View";
10       defaultAccess = "allow";
11       defaultRoles = {
12         "View"          = "Anonymous";
13         "WebDAV Access" = "Authenticated";
14       };
15       methods = {
16         index = { 
17           protectedBy = "View";
18           pageName    = "MainPage"; 
19         };
20         GET = { // more or less a hack, see README
21           protectedBy = "View";
22           pageName    = "MainPage"; 
23         };
24         connect = { 
25           protectedBy = "View";
26           pageName    = "MainPage"; 
27           actionName  = "connect";
28         };
29       };
30     };
31
32     DSoObject = {
33       protectedBy   = "View";
34       defaultAccess = "allow";
35       defaultRoles = {
36         "View"          = "Authenticated";
37         "WebDAV Access" = "Authenticated";
38       };
39       methods = {
40       };
41     };
42     
43     DSoHost = {
44       superclass    = "DSoObject";
45       methods = {
46         index = { 
47           protectedBy = "View";
48           pageName    = "DHostView";
49         };
50       };
51     };
52     DSoTable = {
53       superclass    = "DSoObject";
54       methods = {
55         index = { 
56           protectedBy = "View";
57           pageName    = "DTable";
58         };
59       };
60     };
61     DSoDatabase = {
62       superclass    = "DSoObject";
63       methods = {
64         index = { 
65           protectedBy = "View";
66           pageName    = "DDatabase"; 
67         };
68       };
69     };
70     DSoDatabaseManager = {
71       superclass    = "DSoObject";
72       methods = {
73         index = { 
74           protectedBy = "View";
75           pageName    = "DDatabaseManager"; 
76         };
77       };
78     };
79     DSoUser = {
80       superclass    = "DSoObject";
81       methods = {
82       };
83     };
84     DSoUserManager = {
85       superclass    = "DSoObject";
86       methods = {
87       };
88     };
89     DSoField = {
90       superclass    = "DSoObject";
91       methods = {
92       };
93     };
94   };
95 }