[Comoblog-commit] modules/mod_fortune_db/install mod_fortune_db.xml,NONE,1.1
Status: Inactive
Brought to you by:
markwallis
|
From: iamdecal <iam...@us...> - 2006-02-01 17:29:12
|
Update of /cvsroot/comoblog/modules/mod_fortune_db/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30358/mod_fortune_db/install Added Files: mod_fortune_db.xml Log Message: like mod fortune, but i wanted a db based one - warning slight bug in this commit. will fix in the next 24 hours . --- NEW FILE: mod_fortune_db.xml --- <?xml version="1.0" standalone="no"?> <!DOCTYPE module SYSTEM "http://comoblog.sourceforge.net/DTD/comoblog_mod_install.dtd"> <module> <name> mod_fortune_db </name> <description> displays a random quote or phrase - a lot like mod_fortune, but i wanted a db based one </description> <allowed_pos>sidebar</allowed_pos> <allowed_pos>top</allowed_pos> <version>1.0</version> <minimum_supported>1.0</minimum_supported> <certified> 1.0 </certified> <author>iamdecal iam...@gm... http://www.iamdecal.co.uk</author> <date>2004-10-15</date> <dbquery>CREATE TABLE `easymoblog_mod_fortune_db` (`fortune_db_id` int(10) unsigned NOT NULL auto_increment, `fortune_db_content` text default NULL, `fortune_db_added` int(10) unsigned default NULL, `fortune_db_display_order` int(10) unsigned default NULL,`fortune_db_display_count` int(10) unsigned default NULL, PRIMARY KEY (`fortune_db_id`)) TYPE=MyISAM;</dbquery> <param name="CFG_MOD_FORTUNE_DB_EXTRASTYLE" description="Any extra style you might want to add, to enable this module to blend in with your site, this will be applied to the DIV that holds the module" type="text" editable="Y" accept_null="Y" value="" restrict_values="" /> <param name="CFG_MOD_FORTUNE_DB_COLOR" description="Text Color" type="color_picker" editable="Y" accept_null="N" value="000000" /> <param name="CFG_MOD_FORTUNE_DB_A_COLOR" description="Link Color" type="color_picker" editable="Y" accept_null="N" value="000000" /> <param name="CFG_MOD_FORTUNE_DB_A_HOVER_COLOR" description="Link Hover Color" type="color_picker" editable="Y" accept_null="N" value="000000" /> <param name="CFG_MOD_FORTUNE_DB_A_TEXT_DECORATION" description="Link Decoration" type="select" editable="Y" accept_null="N" value="none" restrict_values="none|underline|overline|line-through" /> <param name="CFG_MOD_FORTUNE_DB_A_HOVER_TEXT_DECORATION" description="Link Hover Decoration" type="select" editable="Y" accept_null="N" value="underline" restrict_values="none|underline|overline|line-through" /> <param name="CFG_MOD_FORTUNE_DB_FONT_FAMILY" description="Link Font Family" type="font_picker" editable="Y" accept_null="N" value="Verdana,Arial,Helvetica,sans-serif" restrict_values="Verdana,Arial,Helvetica,sans-serif" /> <param name="CFG_MOD_FORTUNE_DB_FONT_SIZE" description="Link Font Size" type="select" editable="Y" accept_null="N" value="10" restrict_values="8|9|10|11|12|13|14|15|16|17|18|19|20" /> <param name="CFG_MOD_FORTUNE_DB_TITLE" description="The title of this module" type="text" editable="Y" accept_null="Y" value="Random Quote" restrict_values="" /> </module> |