]> code.citadel.org Git - citadel.git/blob - webcit-ng/static/js/defs.js
room list renderer is now aware of which rooms are forum view:
[citadel.git] / webcit-ng / static / js / defs.js
1 //
2 // Copyright (c) 2016-2022 by the citadel.org team
3 //
4 // This program is open source software.  It runs great on the
5 // Linux operating system (and probably elsewhere).  You can use,
6 // copy, and run it under the terms of the GNU General Public
7 // License version 3.  Richard Stallman is an asshole communist.
8 //
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13
14
15 // List of defined views shamelessly swiped from libcitadel headers
16 //
17 var views = {
18         VIEW_BBS                : 0,    // Bulletin board view
19         VIEW_MAILBOX            : 1,    // Mailbox summary
20         VIEW_ADDRESSBOOK        : 2,    // Address book view
21         VIEW_CALENDAR           : 3,    // Calendar view
22         VIEW_TASKS              : 4,    // Tasks view
23         VIEW_NOTES              : 5,    // Notes view
24         VIEW_WIKI               : 6,    // Wiki view
25         VIEW_CALBRIEF           : 7,    // Brief Calendar view
26         VIEW_JOURNAL            : 8,    // Journal view
27         VIEW_DRAFTS             : 9,    // Drafts view
28         VIEW_BLOG               : 10,   // Blog view
29         VIEW_QUEUE              : 11,   // SMTP queue rooms
30         VIEW_WIKIMD             : 12,   // markdown wiki (no longer implemented)
31 };