summaryrefslogtreecommitdiffstats
path: root/etherpad
diff options
context:
space:
mode:
authorEgil Moeller <egil.moller@freecode.no>2010-04-06 19:37:31 +0200
committerEgil Moeller <egil.moller@freecode.no>2010-04-06 19:37:31 +0200
commit06fbed86dcec9b4021ae782d293dfac73436fef4 (patch)
treebe9e734a00f495548d2dd2f778f5f60cad25035a /etherpad
parenta2151e06591cf6467a1e0ea36ca3961ae8b73930 (diff)
downloadetherpad-06fbed86dcec9b4021ae782d293dfac73436fef4.tar.gz
etherpad-06fbed86dcec9b4021ae782d293dfac73436fef4.tar.bz2
etherpad-06fbed86dcec9b4021ae782d293dfac73436fef4.zip
Better plugin descriptions
Diffstat (limited to 'etherpad')
-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;