From 06fbed86dcec9b4021ae782d293dfac73436fef4 Mon Sep 17 00:00:00 2001 From: Egil Moeller Date: Tue, 6 Apr 2010 19:37:31 +0200 Subject: Better plugin descriptions --- etherpad/src/plugins/fileUpload/main.js | 2 +- etherpad/src/plugins/twitterStyleTags/main.js | 2 +- 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; -- cgit v1.2.3