~ubuntu-branches/ubuntu/raring/roundcube-plugins-extra/raring

« back to all changes in this revision

Viewing changes to contextmenu-1-7/README

Tags: 0.5.4-20110919
* Bump version number for Roundcube to 0.5.4.
* Upgrade sieverules to version 1.11-20110813.
* Label jqueryui as version 1.8+dfsg instead of 1.8.12+dfsg.
* Upgrade sauserprefs to version 1.6-20110828.
* Upgrade markasjunk2 to version 1.3.
* Fix typo in debian/copyright.
* Use system-wide jQuery Mousewheel plugin in contextmenu.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
Roundcube Webmail ContextMenu
2
 
=============================
3
 
This plugin adds a context menu to the message list. Menu links are:
4
 
mark as read
5
 
mark as unread
6
 
mark as flagged
7
 
mark as unflagged
8
 
reply
9
 
reply to all
10
 
forward
11
 
delete
12
 
print
13
 
save
14
 
show source
15
 
open in new window
16
 
move to
17
 
 
18
 
This plugin also adds a context menu to the folder list. Menu links are:
19
 
mark all as read
20
 
compact
21
 
empty
22
 
collapse all folders
23
 
expand all folders
24
 
open in new window
25
 
 
26
 
This plugin also adds a context menu to the contacts list in the address book.
27
 
Menu links are:
28
 
compose message to
29
 
edit contect
30
 
delete contact
31
 
copy contact to another address book
32
 
 
33
 
This plugin also adds a context menu to the groups list in the address book.
34
 
Menu links are:
35
 
rename
36
 
delete
37
 
 
38
 
License
39
 
=======
40
 
This plugin is released under the GNU General Public License Version 2
41
 
(http://www.gnu.org/licenses/gpl-2.0.html).
42
 
 
43
 
Even if skins might contain some programming work, they are not considered
44
 
as a linked part of the plugin and therefore skins DO NOT fall under the
45
 
provisions of the GPL license. See the README file located in the core skins
46
 
folder for details on the skin license.
47
 
 
48
 
Install
49
 
=======
50
 
* Place this plugin folder into plugins directory of Roundcube
51
 
* Add contextmenu to $rcmail_config['plugins'] in your Roundcube config
52
 
NB: When downloading the plugin from GitHub you will need to create a directory
53
 
called contextmenu and place the files in there, ignoring the root directory in
54
 
the downloaded archive.
55
 
 
56
 
Adding other items to the menu
57
 
==============================
58
 
The command rcm_contextmenu_register_command allows other plugins to add items
59
 
to the context menu.
60
 
 
61
 
IMPORTANT: The context menu plugin must be initialised before any other plugin
62
 
which adds an item to the menu.
63
 
 
64
 
rcm_contextmenu_register_command(command, callback, label [, pos [, sep
65
 
                                 [, multi ]]])
66
 
 command: the name of the command eg: spam
67
 
 callback: the name of the function which should be called when the menu item is
68
 
           clicked
69
 
 label: the name of the label to use in the menu
70
 
 (optional) pos: class name of a existing item in the menu which the new item
71
 
            should be inserted before, if no pos is specified the item is added
72
 
            to the end
73
 
 (optional) sep: [before|after] put a separating line before or after this item
74
 
 (optional) multi: [true|false] should the item be enabled when multiple
75
 
            messages are selected
76
 
 (optional) addsub: [true|false] add the new item to a sub menu
77
 
 (optional) obj: the menu object to which the item should be added
 
 
b'\\ No newline at end of file'