Annotation of /mambo/branches/4.6/administrator/components/com_comment/comment.xml
Parent Directory
|
Revision Log
Revision 1726 - (view) (download) (as text)
| 1 : | elpie | 967 | <?xml version="1.0" ?> |
| 2 : | <mosinstall type="component"> | ||
| 3 : | <name>Comment</name> | ||
| 4 : | <author>Mambo Foundation</author> | ||
| 5 : | <creationDate>August 2006</creationDate> | ||
| 6 : | <copyright>copyright (C) 2000 - 2007 Mambo Foundation Inc.</copyright> | ||
| 7 : | ocs_cms | 1396 | <license>http://www.opensource.org/licenses/gpl-license.php GNU/GPL v.2</license> |
| 8 : | elpie | 967 | <authorEmail>core@mambo-foundation.org</authorEmail> |
| 9 : | <authorUrl>mambo-foundation.org</authorUrl> | ||
| 10 : | andphe | 1726 | <version>1.1</version> |
| 11 : | elpie | 967 | <description>Adds a commenting feature to articles within selected sections</description> |
| 12 : | <files> | ||
| 13 : | <filename>comment.php</filename> | ||
| 14 : | </files> | ||
| 15 : | <install> | ||
| 16 : | <queries> | ||
| 17 : | <query>DROP TABLE IF EXISTS `#__comment`</query> | ||
| 18 : | <query> | ||
| 19 : | andphe | 1726 | CREATE TABLE IF NOT EXISTS `#__comment` ( |
| 20 : | elpie | 967 | `id` int(10) NOT NULL auto_increment, |
| 21 : | `articleid` int(10) NOT NULL default '0', | ||
| 22 : | `ip` varchar(15) NOT NULL default '', | ||
| 23 : | `name` varchar(30) NOT NULL default '', | ||
| 24 : | `comments` text NOT NULL, | ||
| 25 : | `startdate` datetime NOT NULL default '0000-00-00 00:00:00', | ||
| 26 : | `published` tinyint(1) NOT NULL default '0', | ||
| 27 : | PRIMARY KEY (`id`) | ||
| 28 : | ) TYPE=MyISAM; | ||
| 29 : | </query> | ||
| 30 : | </queries> | ||
| 31 : | </install> | ||
| 32 : | <uninstall> | ||
| 33 : | <queries> | ||
| 34 : | <query>DELETE FROM `#__comment`</query> | ||
| 35 : | <query>DROP TABLE `#__comment`</query> | ||
| 36 : | </queries> | ||
| 37 : | </uninstall> | ||
| 38 : | <installfile>install.comment.php</installfile> | ||
| 39 : | <uninstallfile>uninstall.comment.php</uninstallfile> | ||
| 40 : | <administration> | ||
| 41 : | <menu>Comment</menu> | ||
| 42 : | <submenu> | ||
| 43 : | <menu task="comments">View Comments</menu> | ||
| 44 : | <menu task="settings">Edit Settings</menu> | ||
| 45 : | </submenu> | ||
| 46 : | <files> | ||
| 47 : | <filename>admin.comment.html.php</filename> | ||
| 48 : | <filename>admin.comment.php</filename> | ||
| 49 : | <filename>class.comment.php</filename> | ||
| 50 : | <filename>config.comment.php</filename> | ||
| 51 : | <filename>install.comment.php</filename> | ||
| 52 : | <filename>toolbar.comment.html.php</filename> | ||
| 53 : | <filename>toolbar.comment.php</filename> | ||
| 54 : | <filename>uninstall.comment.php</filename> | ||
| 55 : | </files> | ||
| 56 : | </administration> | ||
| 57 : | cauld | 641 | </mosinstall> |
| ViewVC Help | |
| Powered by ViewVC 1.0.0 |
Web Hosting provided by Network Redux.

