[Comoblog-commit] modules/mod_skinselect/install mod_skinselect.xml,NONE,1.1
Status: Inactive
Brought to you by:
markwallis
|
From: iamdecal <iam...@us...> - 2006-02-24 00:01:37
|
Update of /cvsroot/comoblog/modules/mod_skinselect/install In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13177/mod_skinselect/install Added Files: mod_skinselect.xml Log Message: initial commit to make sure i've not missed anything transfering the code from my live site down to my cvs version basic premis is that new skins sit in css/SKINNAME/css.php of mod skin select is set to be shown then the users can change the skin via a drop down, if not then a default can be set in the admin area. these skins are imported after the rest of the css so that the content overrides and extends the existing comoblog css - i think we need to decide if skins will provide a full set of styleing or just override and extend the exising code should skin css be entered via the admin area, or uploaded (like a module) ? id prefere to upload as a module as that allows for custom images etc note need to change things like the topic icons some how --- NEW FILE: mod_skinselect.xml --- <?xml version="1.0" standalone="no"?> <!DOCTYPE module SYSTEM "http://comoblog.sourceforge.net/DTD/comoblog_mod_install.dtd"> <module> <version>1.1</version> <minimum_supported>1.0</minimum_supported> <certified>1.5</certified> <name>mod_skinselect</name> <description>Allows the changing of the site look and feel by the user </description> <allowed_pos>sidebar</allowed_pos> <allowed_pos>top</allowed_pos> <dbquery>CREATE TABLE `comoblog_mod_skinselect` (`skinselect_id` int(10) unsigned NOT NULL auto_increment, `skinselect_title` varchar(255) default NULL, `skinselect_description` text, `skinselect_nav_text` varchar(99) default NULL, `skinselect_nav_link` varchar(255) default NULL, `skinselect_visible` char(1) NOT NULL default 'Y', `skinselect_added` int(10) unsigned default NULL, `skinselect_display_order` int(10) unsigned default NULL,`skinselect_author` varchar(255) default NULL, PRIMARY KEY (`skinselect_id`)) TYPE=MyISAM </dbquery> <filter_posts>N</filter_posts> <filter_comments>N</filter_comments> <version>0.5</version> <author>iamdecal - iam...@gm... http://www.iamdecal.co.uk</author> <date>2004-05-09</date> <param name="CFG_MOD_SKINSELECT_COLOR" description="colour of the text" type="color_picker" editable="Y" accept_null="N" value="000000" /> <param name="CFG_MOD_SKINSELECT_A_COLOR" description="colour of the link text" type="color_picker" editable="Y" accept_null="N" value="000000" /> <param name="CFG_MOD_SKINSELECT_A_HOVER_COLOR" description="colour of the link text when hovering" type="color_picker" editable="Y" accept_null="N" value="000000" /> <param name="CFG_MOD_SKINSELECT_A_TEXT_DECORATION" description="" type="select" editable="Y" accept_null="N" value="none" restrict_values="none|underline|overline|line-through" /> <param name="CFG_MOD_SKINSELECT_A_HOVER_TEXT_DECORATION" description="" type="select" editable="Y" accept_null="N" value="underline" restrict_values="none|underline|overline|line-through" /> <param name="CFG_MOD_SKINSELECT_FONT_FAMILY" description="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_SKINSELECT_FONT_SIZE" description="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_SKINSELECT_SHOW_SELECTOR" description="Allow users to change the skin" type="select" editable="Y" accept_null="N" value="10" restrict_values="Y|N" /> <param name="CFG_MOD_SKINSELECT_DEFAULT" description="The Skin to be used by default item" type="text" accept_null="N" encrypt="N" restricted_values="" editable="Y" value="default" /> </module> |