0
|
1 = Discussions =
|
|
2
|
|
3 All Discussions objects are basically the same. You get a set of
|
|
4 options which are inherited from the parent or provided.
|
|
5
|
1
|
6 == Roles and Permissions ==
|
|
7
|
|
8 A member can be in one of three states with respect to a resource:
|
|
9
|
|
10 * administrator: has all rights over a resource except as set by
|
|
11 above resources; Administrators of the root ('/') resource are
|
|
12 site administrators and have all rights.
|
|
13
|
|
14 * members: has permissions of a resource as dictated by the
|
|
15 administrator (view, post, etc). [different types of members?
|
|
16 groups? probably not]
|
|
17
|
|
18 * non-members: if an agent isn't a member of a resource, they
|
|
19 generally have lowest level priveleges.
|
|
20
|
0
|
21 == Options ==
|
|
22
|
1
|
23 Options can be in one of three states: unset, set, and locked (and
|
|
24 set + locked). In
|
0
|
25 the case where the option is locked, all children inherit the setting
|
|
26 as well:
|
|
27
|
|
28 archive.lock = false
|
|
29
|
|
30 Locking an option prohibits any but a higher-level admin from
|
|
31 unlocking it. The higher-level admin is free to change the setting:
|
|
32
|
|
33 archive.lock = false
|
|
34 archive = true
|
|
35
|
|
36 This locks the archive of subchildren into the false state, but sets
|
|
37 the archive for this discussion in the current discussion.
|
|
38
|
|
39 This prevents archiving on any sublist. Messages to a list inherit
|
|
40 the list settings.
|
|
41
|
|
42 If an option is unset, it will use the settings of its parent, the
|
|
43 site defaults, or the application default, based on its type
|
|
44 (Forum or Discussion).
|
|
45
|
|
46
|
|
47 = Members =
|
|
48
|
|
49 == Preferences ==
|
|
50
|
1
|
51 Member preferences can also be set from the site level.
|
|
52
|
|
53 = Digest =
|
|
54
|
|
55 Different templates can be used to display different digest methods.
|
|
56 For instance, you could display a brief form of the message with just
|
|
57 the links:
|
|
58
|
|
59 {{{
|
|
60 Example of .ini configuration:
|
|
61
|
|
62 [digest:daily]
|
|
63 template = /path/to/templates/daily-digest.txt
|
|
64
|
|
65 }}}
|
|
66
|
|
67 This can be used to facilitate a moderated digest. Roundup emails can
|
|
68 be sent about a discussion written and editted by the moderator. |