summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--etherpad/src/plugins/fileUpload/main.js2
-rw-r--r--etherpad/src/plugins/twitterStyleTags/main.js2
2 files changed, 2 insertions, 2 deletions
diff --git a/etherpad/src/plugins/fileUpload/main.js b/etherpad/src/plugins/fileUpload/main.js
index 5ff105f..71bd819 100644
--- a/etherpad/src/plugins/fileUpload/main.js
+++ b/etherpad/src/plugins/fileUpload/main.js
@@ -3,7 +3,7 @@ import("plugins.fileUpload.hooks");
function init() {
this.hooks = ['handlePath'];
- this.description = 'File upload manager';
+ this.description = 'File upload manager adds a button to pads to upload a file. A URL to the uploaded file is then inserted into the pad.';
this.handlePath = hooks.handlePath;
this.install = install;
this.uninstall = uninstall;
diff --git a/etherpad/src/plugins/twitterStyleTags/main.js b/etherpad/src/plugins/twitterStyleTags/main.js
index 5f42dea..34d5d85 100644
--- a/etherpad/src/plugins/twitterStyleTags/main.js
+++ b/etherpad/src/plugins/twitterStyleTags/main.js
@@ -7,7 +7,7 @@ import("sqlbase.sqlcommon");
function init() {
this.hooks = ['handlePath', 'aceGetFilterStack', 'aceCreateDomLine', 'padModelWriteToDB'];
this.client = new main.init();
- this.description = 'Twitter-style tags';
+ this.description = 'Twitter-style tags allows the user to tag pads by writing #tagname anywhere in the pad text. Tags are automatically linked to searches for that tag in other pads. This plugin also provides an alternative home-page for Etherpad with a display of the last changed public pads as well as that information available as an RSS stream.';
this.handlePath = hooks.handlePath;
this.aceGetFilterStack = main.aceGetFilterStack;
this.aceCreateDomLine = main.aceCreateDomLine;