From: <var...@us...> - 2010-03-31 12:09:09
|
Revision: 7314 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7314&view=rev Author: vargenau Date: 2010-03-31 12:09:03 +0000 (Wed, 31 Mar 2010) Log Message: ----------- Avoid direct call to file themeinfo.php Modified Paths: -------------- trunk/themes/Crao/themeinfo.php trunk/themes/Hawaiian/themeinfo.php trunk/themes/MacOSX/themeinfo.php trunk/themes/MonoBook/themeinfo.php trunk/themes/Portland/themeinfo.php trunk/themes/Sidebar/themeinfo.php trunk/themes/SpaceWiki/themeinfo.php trunk/themes/Wordpress/themeinfo.php trunk/themes/blog/themeinfo.php trunk/themes/default/themeinfo.php trunk/themes/gforge/themeinfo.php trunk/themes/shamino_com/themeinfo.php trunk/themes/smaller/themeinfo.php trunk/themes/wikilens/themeinfo.php Modified: trunk/themes/Crao/themeinfo.php =================================================================== --- trunk/themes/Crao/themeinfo.php 2010-03-31 11:59:04 UTC (rev 7313) +++ trunk/themes/Crao/themeinfo.php 2010-03-31 12:09:03 UTC (rev 7314) @@ -1,4 +1,11 @@ <?php +// Avoid direct call to this file. +// PHPWIKI_VERSION is defined in lib/prepend.php +if (!defined('PHPWIKI_VERSION')) { + header("Location: /"); + exit; +} + rcs_id('$Id$'); /* Modified: trunk/themes/Hawaiian/themeinfo.php =================================================================== --- trunk/themes/Hawaiian/themeinfo.php 2010-03-31 11:59:04 UTC (rev 7313) +++ trunk/themes/Hawaiian/themeinfo.php 2010-03-31 12:09:03 UTC (rev 7314) @@ -1,4 +1,10 @@ <?php +// Avoid direct call to this file. +// PHPWIKI_VERSION is defined in lib/prepend.php +if (!defined('PHPWIKI_VERSION')) { + header("Location: /"); + exit; +} rcs_id('$Id$'); Modified: trunk/themes/MacOSX/themeinfo.php =================================================================== --- trunk/themes/MacOSX/themeinfo.php 2010-03-31 11:59:04 UTC (rev 7313) +++ trunk/themes/MacOSX/themeinfo.php 2010-03-31 12:09:03 UTC (rev 7314) @@ -1,4 +1,11 @@ <?php //-*-php-*- +// Avoid direct call to this file. +// PHPWIKI_VERSION is defined in lib/prepend.php +if (!defined('PHPWIKI_VERSION')) { + header("Location: /"); + exit; +} + rcs_id('$Id$'); /** Modified: trunk/themes/MonoBook/themeinfo.php =================================================================== --- trunk/themes/MonoBook/themeinfo.php 2010-03-31 11:59:04 UTC (rev 7313) +++ trunk/themes/MonoBook/themeinfo.php 2010-03-31 12:09:03 UTC (rev 7314) @@ -1,4 +1,11 @@ <?php +// Avoid direct call to this file. +// PHPWIKI_VERSION is defined in lib/prepend.php +if (!defined('PHPWIKI_VERSION')) { + header("Location: /"); + exit; +} + rcs_id('$Id$'); /** * The new mediawiki (Wikipedia.org) default style. Modified: trunk/themes/Portland/themeinfo.php =================================================================== --- trunk/themes/Portland/themeinfo.php 2010-03-31 11:59:04 UTC (rev 7313) +++ trunk/themes/Portland/themeinfo.php 2010-03-31 12:09:03 UTC (rev 7314) @@ -1,4 +1,11 @@ <?php +// Avoid direct call to this file. +// PHPWIKI_VERSION is defined in lib/prepend.php +if (!defined('PHPWIKI_VERSION')) { + header("Location: /"); + exit; +} + rcs_id('$Id$'); /* Modified: trunk/themes/Sidebar/themeinfo.php =================================================================== --- trunk/themes/Sidebar/themeinfo.php 2010-03-31 11:59:04 UTC (rev 7313) +++ trunk/themes/Sidebar/themeinfo.php 2010-03-31 12:09:03 UTC (rev 7314) @@ -1,4 +1,11 @@ <?php +// Avoid direct call to this file. +// PHPWIKI_VERSION is defined in lib/prepend.php +if (!defined('PHPWIKI_VERSION')) { + header("Location: /"); + exit; +} + rcs_id('$Id$'); /* Modified: trunk/themes/SpaceWiki/themeinfo.php =================================================================== --- trunk/themes/SpaceWiki/themeinfo.php 2010-03-31 11:59:04 UTC (rev 7313) +++ trunk/themes/SpaceWiki/themeinfo.php 2010-03-31 12:09:03 UTC (rev 7314) @@ -1,4 +1,10 @@ <?php // -*-php-*- +// Avoid direct call to this file. +// PHPWIKI_VERSION is defined in lib/prepend.php +if (!defined('PHPWIKI_VERSION')) { + header("Location: /"); + exit; +} rcs_id('$Id$'); Modified: trunk/themes/Wordpress/themeinfo.php =================================================================== --- trunk/themes/Wordpress/themeinfo.php 2010-03-31 11:59:04 UTC (rev 7313) +++ trunk/themes/Wordpress/themeinfo.php 2010-03-31 12:09:03 UTC (rev 7314) @@ -1,4 +1,11 @@ <?php +// Avoid direct call to this file. +// PHPWIKI_VERSION is defined in lib/prepend.php +if (!defined('PHPWIKI_VERSION')) { + header("Location: /"); + exit; +} + rcs_id('$Id$'); /* Modified: trunk/themes/blog/themeinfo.php =================================================================== --- trunk/themes/blog/themeinfo.php 2010-03-31 11:59:04 UTC (rev 7313) +++ trunk/themes/blog/themeinfo.php 2010-03-31 12:09:03 UTC (rev 7314) @@ -1,4 +1,11 @@ <?php +// Avoid direct call to this file. +// PHPWIKI_VERSION is defined in lib/prepend.php +if (!defined('PHPWIKI_VERSION')) { + header("Location: /"); + exit; +} + rcs_id('$Id$'); /** Modified: trunk/themes/default/themeinfo.php =================================================================== --- trunk/themes/default/themeinfo.php 2010-03-31 11:59:04 UTC (rev 7313) +++ trunk/themes/default/themeinfo.php 2010-03-31 12:09:03 UTC (rev 7314) @@ -1,4 +1,11 @@ <?php +// Avoid direct call to this file. +// PHPWIKI_VERSION is defined in lib/prepend.php +if (!defined('PHPWIKI_VERSION')) { + header("Location: /"); + exit; +} + rcs_id('$Id$'); /* Modified: trunk/themes/gforge/themeinfo.php =================================================================== --- trunk/themes/gforge/themeinfo.php 2010-03-31 11:59:04 UTC (rev 7313) +++ trunk/themes/gforge/themeinfo.php 2010-03-31 12:09:03 UTC (rev 7314) @@ -1,4 +1,11 @@ <?php +// Avoid direct call to this file. +// PHPWIKI_VERSION is defined in lib/prepend.php +if (!defined('PHPWIKI_VERSION')) { + header("Location: /"); + exit; +} + rcs_id('$Id$'); require_once('lib/WikiTheme.php'); Modified: trunk/themes/shamino_com/themeinfo.php =================================================================== --- trunk/themes/shamino_com/themeinfo.php 2010-03-31 11:59:04 UTC (rev 7313) +++ trunk/themes/shamino_com/themeinfo.php 2010-03-31 12:09:03 UTC (rev 7314) @@ -1,4 +1,11 @@ <?php +// Avoid direct call to this file. +// PHPWIKI_VERSION is defined in lib/prepend.php +if (!defined('PHPWIKI_VERSION')) { + header("Location: /"); + exit; +} + rcs_id('$Id$'); /** * A minimalistic design by walter rafelsberger Modified: trunk/themes/smaller/themeinfo.php =================================================================== --- trunk/themes/smaller/themeinfo.php 2010-03-31 11:59:04 UTC (rev 7313) +++ trunk/themes/smaller/themeinfo.php 2010-03-31 12:09:03 UTC (rev 7314) @@ -1,4 +1,11 @@ <?php +// Avoid direct call to this file. +// PHPWIKI_VERSION is defined in lib/prepend.php +if (!defined('PHPWIKI_VERSION')) { + header("Location: /"); + exit; +} + rcs_id('$Id$'); /** * tiny actionbar, only Edit (if signed in) and Info => PageInfo, Modified: trunk/themes/wikilens/themeinfo.php =================================================================== --- trunk/themes/wikilens/themeinfo.php 2010-03-31 11:59:04 UTC (rev 7313) +++ trunk/themes/wikilens/themeinfo.php 2010-03-31 12:09:03 UTC (rev 7314) @@ -1,4 +1,11 @@ <?php +// Avoid direct call to this file. +// PHPWIKI_VERSION is defined in lib/prepend.php +if (!defined('PHPWIKI_VERSION')) { + header("Location: /"); + exit; +} + rcs_id('$Id$'); /** * The wikilens theme is just a normal WikiTheme (can be based on any, here based on default), This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-04-15 08:41:13
|
Revision: 7329 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7329&view=rev Author: vargenau Date: 2010-04-15 08:41:07 +0000 (Thu, 15 Apr 2010) Log Message: ----------- Although color names are case-insensitive, it is recommended to use the mixed capitalization, to make the names more legible Modified Paths: -------------- trunk/themes/Crao/crao.css trunk/themes/Hawaiian/Hawaiian.css trunk/themes/MacOSX/MacOSX.css trunk/themes/MonoBook/main.css trunk/themes/Sidebar/monobook.css trunk/themes/SpaceWiki/SpaceWiki.css trunk/themes/Wordpress/Wordpress.css trunk/themes/default/phpwiki.css Modified: trunk/themes/Crao/crao.css =================================================================== --- trunk/themes/Crao/crao.css 2010-04-15 08:18:28 UTC (rev 7328) +++ trunk/themes/Crao/crao.css 2010-04-15 08:41:07 UTC (rev 7329) @@ -655,7 +655,7 @@ .pagelist tr.oddrow { background-color: white; } .pagelist td { padding:3px; } th.gridbutton { - background-color: threedlightshadow; + background-color: ThreeDLightShadow; color: black; font-size: small; font-weight: normal; @@ -669,7 +669,7 @@ padding: 5px 0px 5px 0px; border-width: 1px; border-style: solid; - border-color: threedhighlight threeddarkshadow threeddarkshadow threedhighlight; + border-color: ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight; } input.gridbutton, a.gridbutton, a:hover.gridbutton, a:visited.gridbutton { text-decoration: none; @@ -677,7 +677,7 @@ font-weight: normal; /*font-style: menu;*/ font-family: Tahoma, Arial, Helvetica, sans-serif; - background-color: threedlightshadow; + background-color: ThreeDLightShadow; color: black; } Modified: trunk/themes/Hawaiian/Hawaiian.css =================================================================== --- trunk/themes/Hawaiian/Hawaiian.css 2010-04-15 08:18:28 UTC (rev 7328) +++ trunk/themes/Hawaiian/Hawaiian.css 2010-04-15 08:41:07 UTC (rev 7329) @@ -150,7 +150,7 @@ .pagelist tr.evenrow { background: #eee; } .pagelist tr.oddrow { background: white; } th.gridbutton { - background-color: threedlightshadow; + background-color: ThreeDLightShadow; color: black; font-family: Tahoma, sans-serif, Arial, Helvetica; font-size: small; @@ -162,7 +162,7 @@ padding: 5px 0px 5px 0px; border-width: 1px; border-style: solid; - border-color: threedhighlight threeddarkshadow threeddarkshadow threedhighlight; + border-color: ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight; } input.gridbutton, a.gridbutton, a:hover.gridbutton, a:visited.gridbutton { text-decoration: none; @@ -170,7 +170,7 @@ font-weight: normal; /*font-style: menu;*/ font-family: Tahoma, sans-serif, Arial, Helvetica; - background-color: threedlightshadow; + background-color: ThreeDLightShadow; color: black; } Modified: trunk/themes/MacOSX/MacOSX.css =================================================================== --- trunk/themes/MacOSX/MacOSX.css 2010-04-15 08:18:28 UTC (rev 7328) +++ trunk/themes/MacOSX/MacOSX.css 2010-04-15 08:41:07 UTC (rev 7329) @@ -434,7 +434,7 @@ border: solid transparent 2px; } th.gridbutton { - background-color: threedlightshadow; + background-color: ThreeDLightShadow; color: black; font-family: Tahoma, sans-serif, Arial, Helvetica; font-size: small; @@ -448,7 +448,7 @@ float: none; border-width: 1px; border-style: solid; - border-color: threedhighlight threeddarkshadow threeddarkshadow threedhighlight; + border-color: ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight; } input.gridbutton, a.gridbutton, a:hover.gridbutton, a:visited.gridbutton { text-decoration: none; @@ -456,7 +456,7 @@ font-weight: normal; /*font-style: menu;*/ font-family: Tahoma, sans-serif, Arial, Helvetica; - background-color: threedlightshadow; + background-color: ThreeDLightShadow; color: black; } Modified: trunk/themes/MonoBook/main.css =================================================================== --- trunk/themes/MonoBook/main.css 2010-04-15 08:18:28 UTC (rev 7328) +++ trunk/themes/MonoBook/main.css 2010-04-15 08:41:07 UTC (rev 7329) @@ -1615,7 +1615,7 @@ .pagelist tr.evenrow { background: #eee; } .pagelist tr.oddrow { background: white; } th.gridbutton { - background-color: ThreedLightShadow; + background-color: ThreeDLightShadow; color: black; font-family: Tahoma, sans-serif, Arial, Helvetica; font-size: small; @@ -1627,7 +1627,7 @@ padding: 5px 0px 5px 0px; border-width: 1px; border-style: solid; - border-color: ThreedHighlight ThreedDarkShadow ThreedDarkShadow ThreedHighlight; + border-color: ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight; } input.gridbutton, a.gridbutton, a:hover.gridbutton, a:visited.gridbutton { text-decoration: none; @@ -1635,7 +1635,7 @@ font-weight: normal; /*font-style: menu;*/ font-family: Tahoma, sans-serif, Arial, Helvetica; - background-color: ThreedLightShadow; + background-color: ThreeDLightShadow; color: black; } Modified: trunk/themes/Sidebar/monobook.css =================================================================== --- trunk/themes/Sidebar/monobook.css 2010-04-15 08:18:28 UTC (rev 7328) +++ trunk/themes/Sidebar/monobook.css 2010-04-15 08:41:07 UTC (rev 7329) @@ -1667,7 +1667,7 @@ .pagelist tr.evenrow { background: #eee; } .pagelist tr.oddrow { background: white; } th.gridbutton { - background-color: ThreedLightShadow; + background-color: ThreeDLightShadow; color: black; font-family: Tahoma, sans-serif, Arial, Helvetica; font-size: small; @@ -1679,7 +1679,7 @@ padding: 5px 0px 5px 0px; border-width: 1px; border-style: solid; - border-color: ThreedHighlight ThreedDarkShadow ThreedDarkShadow ThreedHighlight; + border-color: ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight; } input.gridbutton, a.gridbutton, a:hover.gridbutton, a:visited.gridbutton { text-decoration: none; @@ -1687,7 +1687,7 @@ font-weight: normal; /*font-style: menu;*/ font-family: Tahoma, sans-serif, Arial, Helvetica; - background-color: ThreedLightShadow; + background-color: ThreeDLightShadow; color: black; } Modified: trunk/themes/SpaceWiki/SpaceWiki.css =================================================================== --- trunk/themes/SpaceWiki/SpaceWiki.css 2010-04-15 08:18:28 UTC (rev 7328) +++ trunk/themes/SpaceWiki/SpaceWiki.css 2010-04-15 08:41:07 UTC (rev 7329) @@ -281,7 +281,7 @@ .pagelist tr.evenrow { background: #111; } .pagelist tr.oddrow { background: black; } th.gridbutton { - background-color: threedlightshadow; + background-color: ThreeDLightShadow; color: black; font-family: Tahoma, sans-serif, Arial, Helvetica; font-size: small; @@ -293,7 +293,7 @@ padding: 5px 0px 5px 0px; border-width: 1px; border-style: solid; - border-color: threedhighlight threeddarkshadow threeddarkshadow threedhighlight; + border-color: ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight; } input.gridbutton, a.gridbutton, a:hover.gridbutton, a:visited.gridbutton { text-decoration: none; @@ -301,7 +301,7 @@ font-weight: normal; /*font-style: menu;*/ font-family: Tahoma, sans-serif, Arial, Helvetica; - background-color: threedlightshadow; + background-color: ThreeDLightShadow; color: black; } Modified: trunk/themes/Wordpress/Wordpress.css =================================================================== --- trunk/themes/Wordpress/Wordpress.css 2010-04-15 08:18:28 UTC (rev 7328) +++ trunk/themes/Wordpress/Wordpress.css 2010-04-15 08:41:07 UTC (rev 7329) @@ -261,7 +261,7 @@ padding: 5px 0px 5px 0px; border-width: 1px; border-style: solid; - border-color: threedhighlight threeddarkshadow threeddarkshadow threedhighlight; + border-color: ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight; } input.gridbutton, a.gridbutton, a:hover.gridbutton, a:visited.gridbutton { text-decoration: none; Modified: trunk/themes/default/phpwiki.css =================================================================== --- trunk/themes/default/phpwiki.css 2010-04-15 08:18:28 UTC (rev 7328) +++ trunk/themes/default/phpwiki.css 2010-04-15 08:41:07 UTC (rev 7329) @@ -221,7 +221,7 @@ .pagelist tr.evenrow { background: #eee; } .pagelist tr.oddrow { background: white; } th.gridbutton { - background-color: ThreedLightShadow; + background-color: ThreeDLightShadow; color: black; font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: small; @@ -233,7 +233,7 @@ padding: 5px 0px 5px 0px; border-width: 1px; border-style: solid; - border-color: ThreedHighlight ThreedDarkShadow ThreedDarkShadow ThreedHighlight; + border-color: ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight; } input.gridbutton, a.gridbutton, a:hover.gridbutton, a:visited.gridbutton { text-decoration: none; @@ -241,7 +241,7 @@ font-weight: normal; /*font-style: menu;*/ font-family: Tahoma, sans-serif, Arial, Helvetica; - background-color: ThreedLightShadow; + background-color: ThreeDLightShadow; color: black; } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-04-15 09:04:57
|
Revision: 7331 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7331&view=rev Author: vargenau Date: 2010-04-15 09:04:51 +0000 (Thu, 15 Apr 2010) Log Message: ----------- You are encouraged to offer a generic family as a last alternative Modified Paths: -------------- trunk/themes/Crao/crao.css trunk/themes/Hawaiian/Hawaiian.css trunk/themes/MacOSX/MacOSX.css trunk/themes/MonoBook/main.css trunk/themes/Sidebar/monobook.css trunk/themes/SpaceWiki/SpaceWiki.css trunk/themes/Wordpress/Wordpress.css trunk/themes/default/phpwiki.css Modified: trunk/themes/Crao/crao.css =================================================================== --- trunk/themes/Crao/crao.css 2010-04-15 08:46:46 UTC (rev 7330) +++ trunk/themes/Crao/crao.css 2010-04-15 09:04:51 UTC (rev 7331) @@ -659,7 +659,6 @@ color: black; font-size: small; font-weight: normal; - /*font-style: menu;*/ font-family: Tahoma, Arial, Helvetica, sans-serif; height: 18px; margin: 5px 0px; @@ -675,7 +674,6 @@ text-decoration: none; font-size: small; font-weight: normal; - /*font-style: menu;*/ font-family: Tahoma, Arial, Helvetica, sans-serif; background-color: ThreeDLightShadow; color: black; Modified: trunk/themes/Hawaiian/Hawaiian.css =================================================================== --- trunk/themes/Hawaiian/Hawaiian.css 2010-04-15 08:46:46 UTC (rev 7330) +++ trunk/themes/Hawaiian/Hawaiian.css 2010-04-15 09:04:51 UTC (rev 7331) @@ -152,10 +152,9 @@ th.gridbutton { background-color: ThreeDLightShadow; color: black; - font-family: Tahoma, sans-serif, Arial, Helvetica; + font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: small; font-weight: normal; - /*font-style: menu;*/ margin: 5px 0px; white-space: nowrap; max-height: 24px; @@ -168,8 +167,7 @@ text-decoration: none; font-size: small; font-weight: normal; - /*font-style: menu;*/ - font-family: Tahoma, sans-serif, Arial, Helvetica; + font-family: Tahoma, Arial, Helvetica, sans-serif; background-color: ThreeDLightShadow; color: black; } Modified: trunk/themes/MacOSX/MacOSX.css =================================================================== --- trunk/themes/MacOSX/MacOSX.css 2010-04-15 08:46:46 UTC (rev 7330) +++ trunk/themes/MacOSX/MacOSX.css 2010-04-15 09:04:51 UTC (rev 7331) @@ -436,10 +436,9 @@ th.gridbutton { background-color: ThreeDLightShadow; color: black; - font-family: Tahoma, sans-serif, Arial, Helvetica; + font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: small; font-weight: normal; - /*font-style: menu;*/ height: 18px; white-space: nowrap; max-height: 24px; @@ -454,8 +453,7 @@ text-decoration: none; font-size: small; font-weight: normal; - /*font-style: menu;*/ - font-family: Tahoma, sans-serif, Arial, Helvetica; + font-family: Tahoma, Arial, Helvetica, sans-serif; background-color: ThreeDLightShadow; color: black; } @@ -809,7 +807,7 @@ /* Sidebar */ .box { background:#ffffff; border: 1px solid silver } -.box-title { font-family: Tahoma; font-weight: normal; /*font-size: 11pt; */ background-color: #ccc; color: black; /*font-style: menu;*/ text-align: center; border: none; padding: 2px 0 2px 0;} +.box-title { font-family: Tahoma, sans-serif; font-weight: normal; background-color: #ccc; color: black; text-align: center; border: none; padding: 2px 0 2px 0;} .box-data { width: 160px; font-size: 9pt; font-weight: normal; border: none; } .box-data .wiki { font-weight: normal; } td.sidebar { border-spacing: 0px; margin: 0ex;} Modified: trunk/themes/MonoBook/main.css =================================================================== --- trunk/themes/MonoBook/main.css 2010-04-15 08:46:46 UTC (rev 7330) +++ trunk/themes/MonoBook/main.css 2010-04-15 09:04:51 UTC (rev 7331) @@ -1617,10 +1617,9 @@ th.gridbutton { background-color: ThreeDLightShadow; color: black; - font-family: Tahoma, sans-serif, Arial, Helvetica; + font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: small; font-weight: normal; - /*font-style: menu;*/ white-space: nowrap; margin: 5px 0px; max-height: 24px; @@ -1633,8 +1632,7 @@ text-decoration: none; font-size: small; font-weight: normal; - /*font-style: menu;*/ - font-family: Tahoma, sans-serif, Arial, Helvetica; + font-family: Tahoma, Arial, Helvetica, sans-serif; background-color: ThreeDLightShadow; color: black; } Modified: trunk/themes/Sidebar/monobook.css =================================================================== --- trunk/themes/Sidebar/monobook.css 2010-04-15 08:46:46 UTC (rev 7330) +++ trunk/themes/Sidebar/monobook.css 2010-04-15 09:04:51 UTC (rev 7331) @@ -141,7 +141,6 @@ } li { margin-bottom: 0.1em; } dt { - /*font-family: Tahoma, sans-serif;*/ font-size: 115%; /*font-weight: bolder;*/ /*background-color: #ddd;*/ @@ -1669,10 +1668,9 @@ th.gridbutton { background-color: ThreeDLightShadow; color: black; - font-family: Tahoma, sans-serif, Arial, Helvetica; + font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: small; font-weight: normal; - /*font-style: menu;*/ white-space: nowrap; margin: 5px 0px; max-height: 24px; @@ -1685,8 +1683,7 @@ text-decoration: none; font-size: small; font-weight: normal; - /*font-style: menu;*/ - font-family: Tahoma, sans-serif, Arial, Helvetica; + font-family: Tahoma, Arial, Helvetica, sans-serif; background-color: ThreeDLightShadow; color: black; } Modified: trunk/themes/SpaceWiki/SpaceWiki.css =================================================================== --- trunk/themes/SpaceWiki/SpaceWiki.css 2010-04-15 08:46:46 UTC (rev 7330) +++ trunk/themes/SpaceWiki/SpaceWiki.css 2010-04-15 09:04:51 UTC (rev 7331) @@ -283,10 +283,9 @@ th.gridbutton { background-color: ThreeDLightShadow; color: black; - font-family: Tahoma, sans-serif, Arial, Helvetica; + font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: small; font-weight: normal; - /*font-style: menu;*/ margin: 5px 0px; white-space: nowrap; max-height: 24px; @@ -299,8 +298,7 @@ text-decoration: none; font-size: small; font-weight: normal; - /*font-style: menu;*/ - font-family: Tahoma, sans-serif, Arial, Helvetica; + font-family: Tahoma, Arial, Helvetica, sans-serif; background-color: ThreeDLightShadow; color: black; } Modified: trunk/themes/Wordpress/Wordpress.css =================================================================== --- trunk/themes/Wordpress/Wordpress.css 2010-04-15 08:46:46 UTC (rev 7330) +++ trunk/themes/Wordpress/Wordpress.css 2010-04-15 09:04:51 UTC (rev 7331) @@ -254,7 +254,6 @@ font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: small; font-weight: normal; - /*font-style: menu;*/ margin: 5px 0px; max-height: 24px; white-space: nowrap; @@ -824,7 +823,7 @@ /* Sidebar */ .box { background:#ffffff; border: 1px solid silver } -.box-title { font-family: Tahoma, Arial, Helvetica, sans-serif; font-weight: normal; /*font-size: 11pt; */ background-color: #ccc; color: black; /*font-style: menu;*/ text-align: center; border: none; padding: 2px 0 2px 0;} +.box-title { font-family: Tahoma, Arial, Helvetica, sans-serif; font-weight: normal; background-color: #ccc; color: black; text-align: center; border: none; padding: 2px 0 2px 0;} .box-data { width: 160px; font-size: 9pt; font-weight: normal; border: none; } .box-data .wiki { font-weight: normal; } td.sidebar { border-spacing: 0px; margin: 0ex;} Modified: trunk/themes/default/phpwiki.css =================================================================== --- trunk/themes/default/phpwiki.css 2010-04-15 08:46:46 UTC (rev 7330) +++ trunk/themes/default/phpwiki.css 2010-04-15 09:04:51 UTC (rev 7331) @@ -226,7 +226,6 @@ font-family: Tahoma, Arial, Helvetica, sans-serif; font-size: small; font-weight: normal; - /*font-style: menu;*/ white-space: nowrap; margin: 5px 0px; max-height: 24px; @@ -239,8 +238,7 @@ text-decoration: none; font-size: small; font-weight: normal; - /*font-style: menu;*/ - font-family: Tahoma, sans-serif, Arial, Helvetica; + font-family: Tahoma, Arial, Helvetica, sans-serif; background-color: ThreeDLightShadow; color: black; } @@ -845,7 +843,7 @@ /* Sidebar */ .box { background:#ffffff; border: 1px solid silver } -.box-title { font-family: Tahoma, Arial, Helvetica, sans-serif; font-weight: normal; /*font-size: 11pt; */ background-color: #ccc; color: black; /*font-style: menu;*/ text-align: center; border: none; padding: 2px 0 2px 0;} +.box-title { font-family: Tahoma, Arial, Helvetica, sans-serif; font-weight: normal; background-color: #ccc; color: black; text-align: center; border: none; padding: 2px 0 2px 0;} .box-data { width: 160px; font-size: 9pt; font-weight: normal; border: none; } .box-data .wiki { font-weight: normal; } td.sidebar { border-spacing: 0px; margin: 0ex;} This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ru...@us...> - 2010-04-26 16:52:54
|
Revision: 7345 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7345&view=rev Author: rurban Date: 2010-04-26 16:52:48 +0000 (Mon, 26 Apr 2010) Log Message: ----------- add missing Makefiles Added Paths: ----------- trunk/themes/Makefile trunk/themes/Makefile.global trunk/themes/default/moacdropdown/css/dropdown-min.css Added: trunk/themes/Makefile =================================================================== --- trunk/themes/Makefile (rev 0) +++ trunk/themes/Makefile 2010-04-26 16:52:48 UTC (rev 7345) @@ -0,0 +1,17 @@ +# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# +# themes/Makefile +# +# minify themes +# + +.PHONY: all css js + +THEMES =AVL default MonoBook wikilens Sidebar SpaceWiki blog MacOSX gforge \ + Portland shamino_com Crao Wordpress smaller Hawaiian + +# http://developer.yahoo.com/yui/compressor/ +YUICOMPRESSOR = java -jar h:/Java/yuicompressor-2.4.2.jar + +all: + $(foreach dir,$(THEMES),make -C $(dir);) Added: trunk/themes/Makefile.global =================================================================== --- trunk/themes/Makefile.global (rev 0) +++ trunk/themes/Makefile.global 2010-04-26 16:52:48 UTC (rev 7345) @@ -0,0 +1,32 @@ +# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# +# themes/Makefile.global +# +# minify themes, for gnu make only + +.PHONY: all css js + +THEMES = AVL default MonoBook wikilens Sidebar SpaceWiki blog MacOSX gforge + +# http://developer.yahoo.com/yui/compressor/ +YUICOMPRESSOR = java -jar h:/Java/yuicompressor-2.4.2.jar + + +css: $(CSS_FILES) + +js: $(MAIN)-min.js $(patsubst %.js,%-min.js,$(JS_REST)) + +clean: + rm $(MAIN)-min.js $(patsubst %.js,%-min.js,$(JS_REST)) $(CSS_FILES) + +$(MAIN)-min.js : $(JS_MAIN) + $(YUICOMPRESSOR) -o $@ $(JS_MAIN) + +%-min.css : %.css + $(YUICOMPRESSOR) -o $@ $< + +%-min.js : %.js + $(YUICOMPRESSOR) -o $@ $< + +IEFixes-min.js : IEFixes.js + $(YUICOMPRESSOR) $< | sed -e's,style.floats,style.float,g' > $@ Added: trunk/themes/default/moacdropdown/css/dropdown-min.css =================================================================== --- trunk/themes/default/moacdropdown/css/dropdown-min.css (rev 0) +++ trunk/themes/default/moacdropdown/css/dropdown-min.css 2010-04-26 16:52:48 UTC (rev 7345) @@ -0,0 +1 @@ +div.acinputContainer{position:relative;float:left;height:20px;margin:0;padding:0;border-width:1px;border-style:solid;border-color:#aaa #eee #eee #aaa;background-color:buttonface;-moz-box-sizing:border-box;}div.acinputContainer input{position:relative;float:left;height:100%;border-width:1px;margin:0;padding:0;clear:none;float:left;-moz-box-sizing:border-box;}div.acinputContainer input.search{background-color:#b41b00;-moz-box-sizing:border-box;}div.acinputContainer input.button{position:relative;float:left;font-size:2px;width:18px;height:100%;border-width:1px;background-image:url(../i/arrowdown.gif);background-repeat:no-repeat;background-position:2px 2px;-moz-box-sizing:border-box;}input.dropdown{border:1px solid #AAA;border-color:#888 #aaa #aaa #888;margin-bottom:2px;-moz-box-sizing:border-box;}div.autocomplete_holder{position:absolute;font-size:95%;visibility:hidden;background-color:#fff;-moz-box-sizing:border-box;}div.autocomplete_firstborder{border-width:1px;border-style:solid;border-color:buttonshadow;padding:0;margin-left:3px;margin-bottom:5px;-moz-box-sizing:border-box;}div.autocomplete_secondborder{border-style:none;padding:2px;-moz-box-sizing:border-box;}ul.autocomplete{width:100%;height:95px;overflow-y:auto;overflow:-moz-scrollbars-vertical;font:menu;margin:0;margin-left:0;padding-left:0;text-indent:0;list-style-type:none;vertical-align:middle;background-repeat:no-repeat;-moz-box-sizing:border-box;}ul.autocomplete li a,ul.autocomplete li a:hover,ul.autocomplete li a.selected,ul.autocomplete li a:hover.selected{display:block;width:100%;padding:2px;text-decoration:none;color:#333;border:1px solid #fff;-moz-box-sizing:border-box;margin-left:-14px;voice-family:"\"}\"";voice-family:inherit;margin-left:0;}ul.autocomplete li{padding:0;padding-left:5px;background-position:2px 0;background-repeat:no-repeat;line-height:13px;vertical-align:top;margin:0;-moz-box-sizing:border-box;}ul.autocomplete li a:hover{color:highlighttext;background-color:highlight;border-color:#e0e0e0;}ul.autocomplete li a.selected{border:1px solid #444;color:#fff;background-color:#004ba6;}ul.autocomplete li a:hover.selected{border:1px solid #e0e0e0;color:white;background-color:#004ba6;background-image:none;} \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ru...@us...> - 2010-04-26 17:15:47
|
Revision: 7347 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7347&view=rev Author: rurban Date: 2010-04-26 17:15:34 +0000 (Mon, 26 Apr 2010) Log Message: ----------- add missing -min and Makefiles Modified Paths: -------------- trunk/themes/Sidebar/themeinfo.php Added Paths: ----------- trunk/themes/Crao/Makefile trunk/themes/Crao/crao-min.css trunk/themes/Crao/sticky-min.js trunk/themes/Hawaiian/Hawaiian-heavy-min.css trunk/themes/Hawaiian/Hawaiian-min.css trunk/themes/Hawaiian/Makefile trunk/themes/MacOSX/MacOSX-heavy-min.css trunk/themes/MacOSX/MacOSX-min.css trunk/themes/MacOSX/MacOSX-topbottombars-min.css trunk/themes/MacOSX/Makefile trunk/themes/MonoBook/IE50Fixes-min.css trunk/themes/MonoBook/IE55Fixes-min.css trunk/themes/MonoBook/IE60Fixes-min.css trunk/themes/MonoBook/IE70Fixes-min.css trunk/themes/MonoBook/IEFixes-min.css trunk/themes/MonoBook/IEFixes-min.js trunk/themes/MonoBook/IEMacFixes-min.css trunk/themes/MonoBook/KHTMLFixes-min.css trunk/themes/MonoBook/Makefile trunk/themes/MonoBook/Opera6Fixes-min.css trunk/themes/MonoBook/Opera7Fixes-min.css trunk/themes/MonoBook/commonPrint-min.css trunk/themes/MonoBook/delayed-min.js trunk/themes/MonoBook/main-min.css trunk/themes/MonoBook/monobook-min.css trunk/themes/MonoBook/rtl-min.css trunk/themes/MonoBook/wikibits-min.js trunk/themes/MonoBook/wikiprintable-min.css trunk/themes/MonoBook/wikistandard-min.css trunk/themes/Portland/Makefile trunk/themes/Portland/portland-min.css trunk/themes/Sidebar/Makefile trunk/themes/Sidebar/sidebar-min.css trunk/themes/SpaceWiki/Makefile trunk/themes/SpaceWiki/SpaceWiki-gravimetric-min.css trunk/themes/SpaceWiki/SpaceWiki-min.css trunk/themes/Wordpress/Makefile trunk/themes/Wordpress/Wordpress-min.css trunk/themes/gforge/Makefile trunk/themes/gforge/gforge-autonumbering-min.css trunk/themes/gforge/gforge-fullscreen-min.css trunk/themes/gforge/gforge-print-min.css trunk/themes/gforge/gforge-rereading-min.css trunk/themes/shamino_com/Makefile trunk/themes/shamino_com/shamino_com-min.css trunk/themes/smaller/Makefile trunk/themes/smaller/phpwiki-min.css trunk/themes/wikilens/Makefile trunk/themes/wikilens/wikilens-min.css trunk/themes/wikilens/wikilens-min.js Added: trunk/themes/Crao/Makefile =================================================================== --- trunk/themes/Crao/Makefile (rev 0) +++ trunk/themes/Crao/Makefile 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1,15 @@ +# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# +# themes/Crao/Makefile +# +# minify CSS and JS +# + +CSS_SRC = crao.css +CSS_FILES = $(patsubst %.css,%-min.css,$(CSS_SRC)) +MAIN = sticky +JS_MAIN = sticky.js + +all : css js + +include ../Makefile.global Property changes on: trunk/themes/Crao/Makefile ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/Crao/crao-min.css =================================================================== --- trunk/themes/Crao/crao-min.css (rev 0) +++ trunk/themes/Crao/crao-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +body{background-color:#ccc;font-family:Helvetica,Verdana,Arial,sans-serif;font-size:12px;line-height:14px;margin:0;padding:0;border:0 none;color:#000;text-align:left;}img{border:0;vertical-align:middle;}table{border-spacing:0;empty-cells:show;}a:link,a{color:#33c;text-decoration:underline;background-color:transparent;}a:visited{color:#33c;text-decoration:underline;background-color:transparent;}a:hover{color:#03f;text-decoration:underline;background-color:transparent;}hr{background-color:#ccc;height:1px;border:1px solid #ccc;}div.wikitext pre{font-family:monospace;}p{font-size:1em;margin:0;margin-bottom:1em;}ul{position:relative;padding:0;margin:0;font-family:Helvetica,Verdana,Arial,sans-serif;font-size:100%;line-height:120%;list-style:inside;background-color:transparent;}ul ul{position:relative;font-family:Helvetica,Verdana,Arial,sans-serif;font-size:100%;margin-left:2em;}li.rc-major{list-style:none;display:block;background-color:#fff;margin:6px 0;border:1px #666 dashed;padding:.5ex;}li.evenrow{border:0;padding:1ex;}li.oddrow{border:0;padding:1ex;}li strong{font-weight:normal;background-color:transparent;}strong.wiki-summary{display:block;padding:5px 0;background-color:transparent;}li a.wiki-rc-action{display:inline;}li a.wiki-rc-action{border:0;}li.rc-major a.wiki{font-size:1.2em;font-weight:bold;}li>p{display:inline;}p.wiki-rc-action{text-align:center;vertical-align:middle;padding:5px 5px 5px 5px;border:1px #000 solid;background-color:transparent;}p a.wiki-rc-action{display:inline;padding:0 10px;font-weight:bold;background-color:transparent;}#header{background-color:#333;}#logo{color:#ccc;display:inline;margin-top:0;margin-left:0;height:50px;width:auto;background-color:transparent;font:bolder 67px/50px Verdana,Arial,Helvetica,sans-serif;letter-spacing:-0.1em;font-variant:condensed;}#logo img{border:0;}#logo a{color:#ccc;font:bolder 67px/50px Arial,Verdana,Helvetica,sans-serif;text-decoration:none;}div.ie-actionbuttons{position:relative;height:22px;right:0;bottom:0;margin:0;background:transparent url(images/BG.png) no-repeat top right;text-align:right;vertical-align:bottom;padding-left:2em;padding-right:1em;padding-top:.5ex;padding-bottom:.5ex;border:0 none;}#actionbuttons{position:fixed;max-width:30%;height:22px;right:0;bottom:0;margin:0;background:transparent url(images/BG.png) top left;vertical-align:bottom;padding-left:2em;padding-right:1em;padding-top:.5ex;padding-bottom:.5ex;border:0 none;}#actionbuttons a,#actionbuttons a:link{position:relative;display:inline;text-align:right;width:100%;margin-bottom:.5em;margin-top:auto;background-color:transparent;border:0;}#content{margin-top:0;margin-left:7%;margin-right:7%;margin-bottom:7%;background-color:#f2f2f2;border:1px #999 solid;padding-left:2em;padding-right:15px;padding-top:15px;padding-bottom:.5ex;}div.wikitext{font-size:1em;line-height:130%;text-align:left;}blockquote.mail-style-quote{border-left:#ff993;margin:0;margin-bottom:1em;border:1px solid #F93;padding:.5em;}.mail-style-quote blockquote.mail-style-quote{margin-left:.3em;margin-bottom:0;background:transparent;border-style:none;border-left:2px solid #F93;padding:0;padding-left:.5em;}blockquote p{margin-top:.5ex;margin-bottom:.5ex;}.toolbar,input.button,#signin{font-family:Verdana,Arial,Helvetica,sans-serif;}div.toolbar{display:block;background-color:#f2f2f2;border:1px #666 solid;margin:2% 7%;}.toolbar{padding:0;margin:0;}.edit-toolbar{padding:0;margin:0;}.edit-toolbar img,.edit-toolbar input{background-color:#fff;border:1px solid ButtonFace;}#navbuttons{display:inline;}#navbuttons img{margin:5px 0 5px 10px;}#navbuttons a:link,#navbuttons a{font-weight:bold;padding-left:1ex;padding-right:1ex;color:#333;}#signin{width:auto;text-align:right;padding-right:10px;background-color:transparent;color:#ccc;font-size:12px;}#signin form{text-align:center;padding:1px;margin:0;display:inline;}#signin input{padding:0;padding-left:3px;margin:0;font-family:Verdana,Arial,Helvetica,sans-serif;color:#333;font-size:12px;}#signin input.wikisignin{padding:0;margin:0;border:0 none;}#signin a.wiki{color:#FFF;background-color:transparent;}#search{font-size:12px;margin:5px 10px 5px 10px;float:right;}#search form{text-align:center;padding:1px;margin:0;display:inline;}#search input{padding:0;padding-left:3px;margin:0;font-family:Verdana,Arial,Helvetica,sans-serif;color:#333;font-size:12px;}#search input.wikiaction{padding:0;margin:0;border:0 none;}.search-context{background:white;font-style:oblique;}.search-term{background:yellow;font-weight:normal;}#livesearch{height:13px;width:100px;}#LSResult{position:absolute;text-align:left;display:none;z-index:100;background-color:white;border:1px solid #d0d0d0;font-size:9px;overflow:hidden;}#LSHighlight{background-color:#f08000;}#LSResult .evenrow{background-color:#f0f0f0;}.LSEnd{text-align:right;}.LSRow:hover{background-color:white;}.LSRow{padding:1px;}ul.LSRes{margin:0;padding:0;}li.LSRow{margin:0;list-style-image:none;}body.sidebar{font-size:smaller;margin:.5em;}body.sidebar div.wikitext{padding:.5em;}body.sidebar{padding-left:1em;}body.sidebar h2{margin-top:0;}form.wikiadmin div{color:#000;background-color:#f2f2f2;}a.wikiaction,a.wikiadmin{line-height:2.6ex;}div.wikiaction input[type=text],div.wikiadmin input[type=text],form.wikiadmin input[type=file]{margin-right:.5em;}img.linkicon{vertical-align:middle;}img.rssicon{vertical-align:baseline;}a.wikiaction,a.wikiadmin,a.wiki-rc-action,a.wikiunsafe{text-decoration:none;font-family:Verdana,Arial,Helvetica,sans-serif;}.wikiunsafe{color:#000;background-color:#f2f2f2;}input.wikiadmin{color:#000;background-color:#fff;}.wikiunknown,.named-wikiunknown{font-weight:normal;font-size:100%;background-color:transparent;}.wikiunknown a,.named-wikiunknown a{color:#FFF;background-color:#000;text-decoration:none;font-weight:normal;font-size:1em;padding:1px;padding-top:0;padding-bottom:0;border-top:1px solid #000;border-bottom:1px solid #000;margin-right:2px;}.backlinks{text-decoration:underline;background-color:transparent;color:#006;}.wikipage{font-weight:bold;}.interwiki{text-decoration:none;}.interwiki,i.interwiki .wikipage,em .interwiki .wikipage{font-style:oblique;}.interwiki .wikipage,i .interwiki,em .interwiki{font-style:normal;}h1,h2,h3,h4,h5,h6{font-family:Arial,Helvetica,sans-serif;}h1{margin-top:10px;background-color:transparent;color:#555;}h1 a.backlinks{color:#777;text-decoration:none;}h1 a.wiki{color:#777;text-decoration:none;}h1 a.pagetitle{color:#555;text-decoration:none;}h1 a:hover{color:#888;text-decoration:underline;}h4,h5,h6{margin-bottom:0;background-color:transparent;color:#111;}.tightenable h2{font-size:12px;color:#888;font-weight:bold;}div.rss{background-color:#fff;color:#000;border:2px solid #ddd;}div.feed{font-size:1.4em;padding:.5em;}.chandesc{font-size:.9em;}div.rssitem{display:block;background-color:#fff;color:#000;border-top:1px solid #ddd;padding:0 .5em;}div.itemname{display:block;border:0;margin-top:.5em;}div.itemdesc{font-size:1em;margin-bottom:.5em;}table,td{font-family:Verdana,Arial,Helvetica,sans-serif;}caption{font-family:Verdana,Arial,Helvetica,sans-serif;width:auto;}.pagelist{background-color:white;border:1px #333 dashed;}.pagelist tr.evenrow{background-color:white;}.pagelist tr.oddrow{background-color:white;}.pagelist td{padding:3px;}th.gridbutton{background-color:threedlightshadow;color:black;font-size:small;font-weight:normal;font-family:Tahoma,sans-serif,Arial,Helvetica;height:18px;margin:5px 0;float:none;white-space:nowrap;max-height:24px;padding:5px 0 5px 0;border-width:1px;border-style:solid;border-color:threedhighlight threeddarkshadow threeddarkshadow threedhighlight;}input.gridbutton,a.gridbutton,a:hover.gridbutton,a:visited.gridbutton{text-decoration:none;font-size:small;font-weight:normal;font-family:Tahoma,sans-serif,Arial,Helvetica;background-color:threedlightshadow;color:black;}.wikilink{display:block;}#revision{font-size:10px;text-align:right;background-color:#f2f2f2;padding-left:2em;padding-right:1em;padding-top:.5ex;padding-bottom:.5ex;clear:both;}.editdate{font-family:Arial,Helvetica,sans-serif;margin:0;padding:0;padding-top:.25ex;}#xhtml-validator{font-size:small;text-align:center;margin-top:1em;}form{margin:0;}input,textarea{margin:.1em;background-color:#FFF;vertical-align:middle;font-size:1em;}input.wikisignin{border:0 none;background-color:#FFF;}input.wikiaction{border:1px solid black;background-color:#D7FA8C;}input.numeric{text-align:center;}textarea.wikiedit{width:90%;margin:.5ex;padding:2px;font-family:Verdana,Arial,Helvetica,sans-serif;}#editarea-size{margin-top:1ex;margin-bottom:-1ex;text-align:right;font-size:smaller;border:1px none;}#editarea-size legend{text-align:right;font-size:smaller;border:1px solid #CCC;background-color:#ccc;}.editarea legend{font-family:Verdana,Helvetica,Arial;font-size:1em;line-height:1em;padding:.2em;border:1px solid #333;background-color:#eee;text-align:;}fieldset.editarea{margin:1ex;margin-top:1em;text-align:center;padding:10px;border:1px solid #333;background-color:#E8E8E5;}fieldset.toolbar{margin:1ex;margin-top:0;text-align:center;padding:3px;border:1px solid #FFF;background-color:#FFF;}.transclusion-title{text-align:right;font-style:oblique;font-size:smaller;text-decoration:underline;margin-bottom:.25ex;margin-right:.25em;}.transclusion,.wiki-edithelp{font-size:smaller;}.transclusion{border:1px solid grey;padding-left:.8em;padding-right:.8em;padding-top:0;padding-bottom:0;margin-left:.25em;margin-right:.25em;margin-bottom:.1ex;}.wiki-edithelp{background-color:white;border:medium solid #fff8dc;padding-left:.5em;padding-right:.5em;padding-top:.75ex;padding-bottom:.75ex;margin-left:0;margin-right:0;margin-top:1ex;margin-bottom:1ex;}.wiki-edithelp p{font-family:Verdana,Helvetica,Arial,sans-serif;padding-left:.5em;padding-right:.5em;padding-top:.5ex;padding-bottom:.5ex;margin:0;}table.cal{float:right;font-size:10px;border:1px solid #333;background-color:#ccc;margin:10px;padding:1px;empty-cells:hide;}table.cal td{text-align:right;}table.cal-header{font-size:larger;background-color:#333;color:#f2f2f2;}table.cal-header tr,table.cal-header td{text-align:center;}.cal-arrow{font-weight:bold;text-decoration:none;color:#fff;}a.cal-arrow{color:#fff;}.cal-dayname td{text-align:center;font-size:smaller;text-decoration:none;background-color:#f2f2f2;}a.cal-hide{font-size:9px;text-decoration:none;}table.cal td.cal-today{margin:1px;border:1px solid #333;color:#000;background-color:#f2f2f2;}table.cal td.cal-day a.cal-day{font-size:9px;text-decoration:underline;}.diff .block div{position:relative;padding-left:1.5em;}.diff .prefix{position:absolute;left:.5em;top:0;}.diff{color:#000;background-color:transparent;border:1px solid black;}.diff .block{color:#000;background-color:#ccc;padding-left:1em;}.diff .context{color:#000;background-color:transparent;border:none;}.diff .block tt{font-weight:normal;font-family:monospace;color:black;background-color:transparent;margin-left:0;border:none;}.diff del,.diff ins{font-weight:bold;text-decoration:none;}.diff .original,.diff .deleted,.diff .final,.diff .added{color:#000;background-color:white;}.diff .original,.diff .deleted{color:#000;background-color:#fcc;border:none;}.diff .final,.diff .added{color:#000;background-color:#cfc;border:none;}.diff del{color:#000;background-color:#f99;}.diff ins{color:#000;background-color:#9f9;}td.pageinfo{font-weight:bold;}.pageinfo-minoredit,.pageinfo-authorid{font-size:smaller;font-style:oblique;}.hint{color:black;background-color:#eee;font-size:smaller;margin-left:5em;border:thin solid #aaa;}#clear{clear:both;margin:0;margin-top:-7px;padding:2px;text-align:center;color:#000;background-color:#FFF;border:solid 0 none;}#clear{margin-top:0;}img.inlineimage{border:0;vertical-align:middle;margin:0 5px 0 5px;}em>img.inlineimage{float:left;border:0;vertical-align:middle;margin:5px 15px 15px 0;}strong>img.inlineimage{float:right;border:0;vertical-align:middle;margin:5px 0 15px 15px;}h2.wikiblog-heading{font-size:2em;padding-bottom:.5em;border-bottom:2px solid grey;}.interwiki-map thead td{text-decoration:underline;}.printer{display:none;}div.errors{color:black;background-color:#eee;margin-top:1em;margin-bottom:1em;padding-left:.8em;padding-right:.8em;padding-top:.8ex;padding-bottom:0;border:medium solid red;clear:both;}.errors h4{color:red;margin:0;padding:0;text-decoration:underline;background-color:transparent;}.error{font-family:monospace;}.error ul{font-family:monospace;}.debug{color:black;background-color:transparent;font-family:monospace;font-size:smaller;margin:1ex 0;padding:.5ex .5em;}div.br{display:none;} \ No newline at end of file Property changes on: trunk/themes/Crao/crao-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/Crao/sticky-min.js =================================================================== --- trunk/themes/Crao/sticky-min.js (rev 0) +++ trunk/themes/Crao/sticky-min.js 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +var mySticky;var theLayer;lastY=10;YOffset=0;staticYOffset=10;refreshMS=25;function setup(a){bw=new checkBrowser;if(bw.ns4||bw.opera){MM_reloadPage(true)}var b=bw.ie4||bw.ns4||(bw.macie50)?true:false;if(window.attachEvent){fix_bind()}else{if(b){if(bw.ns6){document.getElementById(a).style.position="absolute"}if(bw.macie50){document.getElementById(a).style.position="absolute";document.getElementById(a).style.backgroundColor="#ccffcc"}if(bw.ns6&&YOffset==0){YOffset=-15}mySticky=new makeLayerObj(a);layerSlide(a)}else{mySticky=new makeLayerObj(a);mySticky.css.position="fixed"}}if(!mySticky){mySticky=new makeLayerObj(a)}}fix_elements=new Array();function fix_event(){var a;for(a=0;a<fix_elements.length;a++){fix_elements[a].style.left=parseInt(fix_elements[a].fix_left)+document.getElementsByTagName("html")[0].scrollLeft+document.getElementsByTagName("body")[0].scrollLeft+"px";fix_elements[a].style.top=parseInt(fix_elements[a].fix_top)+document.getElementsByTagName("html")[0].scrollTop+document.getElementsByTagName("body")[0].scrollTop+"px"}}function fix_bind(){var a;for(a=0;a<document.all.length;a++){if(document.all[a].currentStyle.position=="fixed"){document.all[a].fix_left=document.all[a].currentStyle.left;document.all[a].fix_top=document.all[a].currentStyle.top;document.all[a].style.position="absolute";fix_elements[fix_elements.length]=document.all[a];window.attachEvent("onscroll",fix_event);window.attachEvent("onresize",fix_event)}}}function layerSlide(a){if(bw.dhtml){if(!mySticky){mySticky=new makeLayerObj(a)}if(bw.ns){winY=window.pageYOffset}else{if(bw.ie){winY=document.body.scrollTop}}if(bw.ie||bw.ns){if(winY!=lastY&&winY>YOffset-staticYOffset){smooth=0.3*(winY-lastY-YOffset+staticYOffset)}else{if(YOffset-staticYOffset+lastY>YOffset-staticYOffset){smooth=0.3*(winY-lastY-(YOffset-(YOffset-winY)))}else{smooth=0}}if(smooth>0){smooth=Math.ceil(smooth)}else{smooth=Math.floor(smooth)}if(bw.ie){mySticky.css.pixelTop+=smooth}else{if(bw.ns){mySticky.css.top=parseInt(mySticky.css.top)+smooth}}lastY=lastY+smooth;top.window.status=new Date();setTimeout('layerSlide("'+a+'")',refreshMS)}}}function MM_reloadPage(init){if(init==true){with(navigator){if((appName=="Netscape")&&(parseInt(appVersion)==4)){document.MM_pgW=innerWidth;document.MM_pgH=innerHeight;top.onresize=MM_reloadPage}}}else{if(innerWidth!=document.MM_pgW||innerHeight!=document.MM_pgH){location.reload()}}}function makeLayerObj(a){if(document.getElementById){this.css=document.getElementById(a).style}else{if(document.layers){this.css=document.layers[a]}else{if(document.all){this.css=document.all[a].style}}}return this}function checkBrowser(){this.ver=navigator.appVersion;this.name=navigator.appName;this.mac=(navigator.platform.toLowerCase().indexOf("mac")>-1)?true:false;this.opera=(navigator.userAgent.toLowerCase().indexOf("opera")>-1)?true:false;this.dom=document.getElementById?true:false;this.ns=(this.name=="Netscape");this.ie4=(document.all&&!this.dom)?true:false;this.ie=(this.name=="Microsoft Internet Explorer"&&!this.opera)?true:false;this.ie5=(this.ie&&(navigator.userAgent.indexOf("MSIE 5")!=-1))?true:false;this.macie50=(this.mac&&this.ie5&&(navigator.userAgent.indexOf("MSIE 5.0")!=-1))?true:false;this.ns4=(this.ns&&parseInt(this.ver)==4)?true:false;this.ns6=((this.name=="Netscape")&&(parseInt(this.ver)==5))?true:false;this.standards=document.getElementById?true:false;this.dhtml=this.standards||this.ie4||this.ns4}function showMe(a){myFloater=new makeLayerObj(a);myFloater.css.visibility="visible"}function hideMe(a){myFloater=new makeLayerObj(a);myFloater.css.visibility="hidden"}; \ No newline at end of file Property changes on: trunk/themes/Crao/sticky-min.js ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/Hawaiian/Hawaiian-heavy-min.css =================================================================== --- trunk/themes/Hawaiian/Hawaiian-heavy-min.css (rev 0) +++ trunk/themes/Hawaiian/Hawaiian-heavy-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +.toolbar,div.toolbar{margin:.5ex 0;}img.linkicon{vertical-align:middle;}div.wikitext{width:auto;background:url("images/tchecker-white.png") repeat;}.wiki-edithelp{background:url("images/tchecker-sand.png") repeat;}.wiki-edithelp p{background:url("images/tchecker-white.png") repeat;}.diff .block div{position:relative;padding-left:1.5em;}.diff .prefix{position:absolute;left:.5em;top:0;}div.errors{background:url("images/tchecker-sand.png") repeat;}.debug{background:url("images/tchecker-sand.png") repeat;} \ No newline at end of file Property changes on: trunk/themes/Hawaiian/Hawaiian-heavy-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/Hawaiian/Hawaiian-min.css =================================================================== --- trunk/themes/Hawaiian/Hawaiian-min.css (rev 0) +++ trunk/themes/Hawaiian/Hawaiian-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +@import url(Hawaiian-heavy.css);img{border:0;vertical-align:baseline;}form{margin:0;}input{margin:.1em;}input.numeric{text-align:right;}table{border-spacing:1px;empty-cells:show;}caption{caption-side:top;text-align:left;margin-bottom:.5ex;width:100%;}body{color:black;background:white url("images/uhhbackground.jpg") repeat;font-family:Arial,Helvetica,sans-serif;margin:1ex .5em;}body p{margin-left:1em;}#logo img{border:1px outset gray;margin-left:1em;margin-bottom:1ex;}img#signature{background:white;border:1px outset gray;padding-left:8px;padding-right:8px;padding-top:8px;padding-bottom:14px;}div.wikitext{margin-top:1ex;margin-bottom:.5ex;padding-left:.8em;padding-right:.8em;padding-top:.5ex;padding-bottom:.5ex;clear:both;}div.wikitext hr{height:1px;}div.wikitext pre{font-family:monospace;}body.sidebar{font-size:smaller;margin:.5em;}body.sidebar div.wikitext{padding:.5em;}body.sidebar div.wikitext ul{padding-left:1em;}body.sidebar h2{margin-top:0;}.wiki,.named-wiki{font-weight:bold;color:#87785c;}.wiki{text-decoration:none;}.named-wiki{text-decoration:underline;}.wikiaction,.wikiadmin,.wiki-rc-action,.backlinks{text-decoration:none;}.wikiaction,.wikiadmin{font-weight:bold;}.wikiaction,.wikiaction table,span.wikiaction{color:#4d5a6b;}.wikiadmin,.wikiadmin table{color:#ff7e00;}.backlinks{color:#1d4fc0;}h1 .backlinks{text-decoration:underline;}.wikiunknown a,.named-wikiunknown a,.wikiunknown u{color:#a6977a;}.wikipage{font-weight:bold;}.interwiki{text-decoration:none;}.interwiki,i.interwiki .wikipage,em .interwiki .wikipage{font-style:oblique;}.interwiki .wikipage,i .interwiki,em .interwiki{font-style:normal;}h1,h2,h3,h4,h5,h6{font-family:Arial,Helvetica,sans-serif;}h1{margin:0;}caption{font-family:Arial,Helvetica,sans-serif;}.pagelist tr.evenrow{background:#eee;}.pagelist tr.oddrow{background:white;}th.gridbutton{background-color:threedlightshadow;color:black;font-family:Tahoma,sans-serif,Arial,Helvetica;font-size:small;font-weight:normal;margin:5px 0;white-space:nowrap;max-height:24px;padding:5px 0 5px 0;border-width:1px;border-style:solid;border-color:threedhighlight threeddarkshadow threeddarkshadow threedhighlight;}input.gridbutton,a.gridbutton,a:hover.gridbutton,a:visited.gridbutton{text-decoration:none;font-size:small;font-weight:normal;font-family:Tahoma,sans-serif,Arial,Helvetica;background-color:threedlightshadow;color:black;}.toolbar,input.button{font-family:Arial,Helvetica,sans-serif;}.toolbar{padding:0;margin:0;}#navbar,#actionbar{line-height:140%;}.editdate{font-family:Arial,Helvetica,sans-serif;margin:0;padding:0;padding-top:.25ex;}.wikiedit{width:100%;margin-bottom:.5ex;margin-top:.5ex;padding:2px;}input.button{font-family:Arial,Helvetica,sans-serif;}#editarea-size{margin-top:1ex;text-align:right;font-size:smaller;}.transclusion-title{text-align:right;font-style:oblique;font-size:smaller;text-decoration:underline;margin-bottom:.25ex;margin-right:.25em;}.transclusion,.wiki-edithelp{font-size:smaller;}.transclusion{background:inherit;border:1px dotted #a6977a;padding-left:.8em;padding-right:.8em;padding-top:0;padding-bottom:0;margin-left:.25em;margin-right:.25em;margin-bottom:.1ex;}.wiki-edithelp{border:medium solid #d8caae;padding-left:.5em;padding-right:.5em;padding-top:.75ex;padding-bottom:.75ex;margin-left:0;margin-right:0;margin-top:1ex;margin-bottom:1ex;}.wiki-edithelp .wiki{color:#87785c;}.wiki-edithelp p{font-family:Arial,Helvetica,sans-serif;padding-left:.5em;padding-right:.5em;padding-top:.5ex;padding-bottom:.5ex;margin:0;}table.cal{border:1px outset gray;margin:.5ex .5em;padding:1px;empty-cells:hide;}table.cal table.cal-header td{padding-top:110px;}table.cal thead tr:first-child{background:url("images/pictures/SteamVolcanoDusk.jpg") no-repeat;background-position:center;font-size:larger;}table.cal table.cal-header td{text-align:center;color:white;background:transparent;border:0;}.cal-arrow{text-decoration:none;color:white;font-weight:bold;}table.cal tr .cal-dayname{background:inherit;}.cal-dayname td{text-align:center;font-size:smaller;text-decoration:none;color:black;padding-bottom:.5ex;}table.cal tbody td{border:.5pt solid #ddd;background:white;text-align:right;}a.cal-hide{text-decoration:none;color:black;font-weight:normal;}table.cal td.cal-today{margin:1px;background:white;border:.5pt solid black;}table.cal td.cal-today a{color:blue;}table.cal td.cal-day{margin:1px;background:white;border:.5pt solid black;}table.cal td.cal-day a{color:red;text-decoration:none;}.diff .block{background:#ccc;padding:.5ex .5em;margin:.5ex 0;}.diff .context{background:white;}.diff .block tt{font-weight:bold;font-family:monospace;margin-left:-.6em;color:black;}.diff del,.diff ins{font-weight:bold;text-decoration:none;}.diff .original,.diff .deleted{background:#fcc;}.diff .final,.diff .added{background:#cfc;}.diff del{background:#f99;}.diff ins{background:#9f9;}.printer{display:none;}div.errors{color:black;border:medium solid #d8caae;margin-top:1em;margin-bottom:1em;padding-left:.8em;padding-right:.8em;padding-top:.8ex;padding-bottom:0;font-size:smaller;clear:both;}.errors h4{color:#87785c;margin:0;padding:0;text-decoration:none;font-weight:bold;}.error{font-family:monospace;}.error ul{font-family:monospace;}.debug{color:black;font-family:monospace;margin:1ex 0;padding:.5ex .5em;border:medium solid #d8caae;}.clear-floats{clear:both;}.search-context{background:white;font-style:oblique;}.search-term{background:yellow;font-weight:normal;}#LSResult{position:absolute;text-align:left;display:none;z-index:100;background-color:white;border:1px solid #d0d0d0;font-size:9px;overflow:hidden;}#LSHighlight{background-color:#f08000;}#LSResult .evenrow{background-color:#f0f0f0;}.LSEnd{text-align:right;}.LSRow:hover{background-color:white;}.LSRow{padding:1px;}ul.LSRes{margin:0;padding:0;}li.LSRow{margin:0;list-style-image:none;} \ No newline at end of file Property changes on: trunk/themes/Hawaiian/Hawaiian-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/Hawaiian/Makefile =================================================================== --- trunk/themes/Hawaiian/Makefile (rev 0) +++ trunk/themes/Hawaiian/Makefile 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1,13 @@ +# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# +# themes/Hawaiian/Makefile +# +# minify CSS and JS +# + +CSS_SRC = Hawaiian.css Hawaiian-heavy.css +CSS_FILES = $(patsubst %.css,%-min.css,$(CSS_SRC)) + +all : css + +include ../Makefile.global Property changes on: trunk/themes/Hawaiian/Makefile ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MacOSX/MacOSX-heavy-min.css =================================================================== --- trunk/themes/MacOSX/MacOSX-heavy-min.css (rev 0) +++ trunk/themes/MacOSX/MacOSX-heavy-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +textarea.wikiedit,input.wikitext,textarea.summary{background:white;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;padding-left:.8em;padding-right:.8em;padding-top:.5em;padding-bottom:.5em;margin:.5ex 0;clear:both;}.toolbar,div.toolbar{margin:.5ex 0;}div.wikitext{width:auto;}img.linkicon{vertical-align:middle;}.interwiki-map thead td,.interwiki-moniker,.interwiki-url{padding-left:1em;padding-right:1em;}.diff{margin:.5ex 0;padding:1px;}.diff .block{padding:.5ex .5em;}.diff .original,.diff .deleted,.diff .final,.diff .added{padding:1px;}.diff .block div{position:relative;padding-left:1.5em;}.diff .prefix{position:absolute;left:0;top:0;}.diff del,.diff ins{padding-left:.5ex;padding-right:.5ex;} \ No newline at end of file Property changes on: trunk/themes/MacOSX/MacOSX-heavy-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MacOSX/MacOSX-min.css =================================================================== --- trunk/themes/MacOSX/MacOSX-min.css (rev 0) +++ trunk/themes/MacOSX/MacOSX-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +@import url(MacOSX-heavy.css);body{background:#fafafa url("images/bgpaper8.png");}body.edit{background:#fafafa url("images/bggranular.png");}input[type=submit],input[type=cancel],input[type=image]{vertical-align:middle;}h1,h2,h3,.toolbar,td{font-family:"Lucida Grande",Helvetica,Arial,sans-serif;}input.button{font-family:"Lucida Grande",Helvetica,Arial,sans-serif;}input.numeric{text-align:right;}.wikitext pre{font-family:Monaco,monospace;}input[type=text]{border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;}div.wikiaction input[type=text],div.wikiadmin input[type=text],form.wikiadmin input[type=file]{margin-right:.5em;}div.wikitext{background:white;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;padding-left:.8em;padding-right:.8em;padding-top:.5em;padding-bottom:.5em;margin:.5ex 0;clear:both;}input.wikitext{margin:0;}input[type=text]{height:2.7ex;padding:.4ex .3ex;}div.toolbar{margin:1ex 0;}.interwiki-map thead td{background:#e8e8e8;font-weight:bold;font-size:smaller;}.interwiki-map thead td:first-child{text-decoration:underline;}.interwiki-moniker{background:#eee;}.interwiki-url{background:#f8f8f8;}body.sidebar{font-size:smaller;margin:.5em;}body.sidebar div.wikitext{padding:.5em;}body.sidebar div.wikitext ul{padding-left:1em;}body.sidebar h2{margin-top:0;}div.errors{background:#eee;border:1px solid gray;padding-left:.8em;padding-right:.8em;padding-top:.8ex;padding-bottom:0;margin-top:1em;clear:both;font-size:smaller;}.errors h4{color:black;text-decoration:underline;font-family:"Lucida Grande",Helvetica,Arial,sans-serif;margin-top:0;margin-bottom:.5ex;}.error{font-family:Monaco,monospace;margin:0;font-size:smaller;}.error ul{font-size:smaller;font-family:Monaco,monospace;}.debug{color:black;background:white;font-family:monospace;font-size:smaller;margin:1ex 0;padding:.5ex .5em;border:1px solid #eee;}a.wiki{text-decoration:none;}.wiki,.named-wiki{font-weight:bold;color:#1d42be;}.wikiunknown a,.named-wikiunknown a,.wikiunknown U{text-decoration:none;}.wikiunknown,.named-wikiunknown{color:#555;}a.interwiki{text-decoration:none;}.wikipage{font-weight:bold;}.interwiki,i .interwiki .wikipage,em .interwiki .wikipage{font-style:oblique;}.interwiki .wikipage,i .interwiki,em .interwiki{font-style:normal;}a.wikiaction,a.wikiadmin{text-decoration:none;}img.linkicon,img.rssicon{border:0;}img.rssicon{vertical-align:middle;}img.wiki-button{vertical-align:middle;}a.wikiaction{border:0;}a.backlinks{color:#006;}textarea.wikiedit{width:100%;margin-top:1ex;}p.editdate{font-size:smaller;margin-bottom:0;font-family:"Lucida Grande",Helvetica,Arial,sans-serif;}a.cal-hide,a.cal-arrow{text-decoration:none;}.cal-arrow{font-weight:bold;}.cal-dayname{font-size:smaller;text-decoration:none;}table.cal td{background:white;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;}table.cal-header td{font-size:larger;background:white;border:0;}table.cal td.cal-dayname{background:#e8e8e8;}table.cal td.cal-today{background:#f4f4f4;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;}.transclusion-title{font-family:"Lucida Grande",Helvetica,Arial,sans-serif;font-size:smaller;text-decoration:underline;text-align:right;}div.transclusion{background:#fdfdfd;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;padding-left:.8em;padding-right:.8em;padding-top:0;padding-bottom:0;margin:.5ex;}div.wiki-edithelp .transclusion{font-size:smaller;background:inherit;padding:.5ex .5em;margin:.2ex 5%;}div.wiki-edithelp .transclusion p{margin:0;}div.wiki-edithelp{background:white;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;font-size:smaller;padding:6pt;}div.wiki-message{background:#fff url("images/bggranular.png");border:solid 1px #d8d8d8;padding:6pt;}.printer{display:none;}.diff{background:white;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;}.diff .block{background:#d8d8d8;}.diff .context{background:white;border:none;}.diff .block tt.prefix{font-weight:normal;font-family:monospace;margin-left:-1.6em;color:black;border:none;}.diff ins{font-weight:bolder;}.diff ins{text-decoration:none;}.diff .original,.diff .deleted,.diff .final,.diff .added{background:white;}.diff .original:first-child,.diff .deleted:first-child{border-top:2px solid #f99;}.diff .original,.diff .deleted{background:white;border-left:2px solid #f99;border-right:2px solid #f99;}.diff .original:last-child,.diff .deleted:last-child{border-bottom:2px solid #f99;}.diff .final:first-child,.diff .added:first-child{border-top:2px solid #9f9;}.diff .final,.diff .added{background:white;border-left:2px solid #9f9;border-right:2px solid #9f9;}.diff .final:last-child,.diff .added:last-child{border-bottom:2px solid #9f9;}.diff del{background:#fcc;}.diff ins{background:#cfc;}.pagelist tr.evenrow{background:#f8f8f8;}.pagelist tr.oddrow{background:#eee;}.pagelist thead td{background:#e8e8e8;text-decoration:none;font-weight:bold;font-size:smaller;}.pagelist thead td u{text-decoration:none;}.pagelist tbody tr:hover>td{border:solid #ff9 2px;}.pagelist tbody tr>td{border:solid transparent 2px;}th.gridbutton{background-color:threedlightshadow;color:black;font-family:Tahoma,sans-serif,Arial,Helvetica;font-size:small;font-weight:normal;height:18px;white-space:nowrap;max-height:24px;padding:5px 0 5px 0;margin:5px 0;float:none;border-width:1px;border-style:solid;border-color:threedhighlight threeddarkshadow threeddarkshadow threedhighlight;}input.gridbutton,a.gridbutton,a:hover.gridbutton,a:visited.gridbutton{text-decoration:none;font-size:small;font-weight:normal;font-family:Tahoma,sans-serif,Arial,Helvetica;background-color:threedlightshadow;color:black;}#searchholder{display:inline;}.search-context{background:white;font-style:oblique;}.search-term{background:#9bdaff;font-weight:normal;}#LSResult{position:absolute;text-align:left;display:none;z-index:100;background-color:white;border:1px solid #d0d0d0;font-size:9px;overflow:hidden;}#LSHighlight{background-color:#f08000;}#LSResult .evenrow{background-color:#f0f0f0;}.LSEnd{text-align:right;}.LSRow:hover{background-color:white;}.LSRow{padding:1px;}ul.LSRes{margin:0;padding:0;}li.LSRow{margin:0;list-style-image:none;}.clear-floats{clear:both;}dl{display:table;}dt{display:table;font-weight:bold;vertical-align:baseline;margin-top:1.25ex;margin-bottom:.25ex;padding-left:.25ex;padding-right:.25ex;border-bottom-style:dotted;border-bottom-width:2pt;border-bottom-color:#99c;}dt a.wiki,dt a.named-wiki{text-decoration:none;}dl>dt:first-child{margin-top:0;}dd{position:relative;margin-left:3.5em;margin-bottom:.5ex;padding-left:.125em;padding-bottom:.5ex;padding-right:.125em;border-bottom-style:solid;border-bottom-width:thin;border-bottom-color:#99c;}pre,div.plugin code{color:black;display:block;background-color:#fcfcfc;font-size:90%;line-height:1.25em;margin-top:.25em;margin-left:0;margin-bottom:2ex;margin-right:0;padding-top:.25em;padding-left:.5em;padding-bottom:.25em;padding-right:.5em;border-style:solid;border-width:1px;border-color:#ccc;}pre{background:#fafafa url("images/bgpaper8.png");}ul li.rc-major,ul li.rc-minor{margin-left:0;padding-left:3em;text-indent:-3em;}p{margin:1em 0;}li p,dd p,td p{margin:1ex 0;}li.tightenable{margin:1em 0;}dt.tightenable{margin-top:1em;}dd.tightenable{margin-bottom:1.5ex;}li.tightenable.top,dt.tightenable.top,dd.tightenable.top{margin-top:.2ex;}li li.tightenable.top{margin-top:0;}li.tightenable.bottom,dd.tightenable.bottom{margin-bottom:.2ex;}li li.tightenable.bottom{margin-bottom:0;}.tightenable.top{margin-top:0;}.tightenable.bottom{margin-bottom:0;}.transclusion-title{text-align:right;font-style:oblique;font-size:smaller;text-decoration:underline;margin-bottom:.25ex;margin-right:.25em;}.transclusion,.wiki-edithelp{font-size:smaller;}.transclusion{border:1px solid gray;padding-left:.8em;padding-right:.8em;padding-top:0;padding-bottom:0;margin-left:.25em;margin-right:.25em;margin-bottom:.1ex;}.wiki-edithelp{background:white;border:medium solid #fff8dc;padding-left:.5em;padding-right:.5em;padding-top:.75ex;padding-bottom:.75ex;margin-left:0;margin-right:0;margin-top:1ex;margin-bottom:1ex;}.wiki-edithelp p{font-family:Arial,Helvetica,sans-serif;padding-left:.5em;padding-right:.5em;padding-top:.5ex;padding-bottom:.5ex;margin:0;}td.pageinfo{font-weight:bold;}.pageinfo-minoredit,.pageinfo-authorid{font-size:smaller;font-style:oblique;}.printer,.no-css{display:none;}.disabled-plugin{clear:both;margin:1ex 0;padding:0;}.disabled-plugin .title{color:#400;background-color:inherit;font-size:x-small;text-align:right;padding:0 .5em;}.disabled-plugin pre{color:black;background:#ddd;margin:0;padding:.3ex .5em;}span.redirectfrom{font-size:small;font-style:oblique;font-weight:normal;padding-left:1em;}blockquote.mail-style-quote{border-left:medium #284 solid;padding-left:1em;margin-left:0;margin-right:0;}.mail-style-quote blockquote.mail-style-quote{margin-left:-0.6em;}.floatleft{float:left;}.floatright{float:right;}div.wikiblog{margin:1ex 2em;padding:0;}div.wikiblog>div{margin:0;padding:.5ex .5em;}div.wikiblog>div.wikiblog-footer{padding:.2ex .5em;}h3.wikiblog-summary{font-size:medium;font-weight:bold;margin:0 0 1ex 0;}table.wikiblog-form{width:auto;border-collapse:collapse;margin:.25em 0;}.wikiblog-form caption{caption-side:top;font-weight:bold;text-align:left;padding:.5ex .5em;}.wikiblog-form th{vertical-align:top;text-align:right;padding:0 0 .3em .5em;}.wikiblog-form td{padding:.25em .5em;}.wikiblog-form td.submit-button{padding:0;}.wikiblog-form input[type=text],.wikiblog-form textarea{margin:0;width:100%;}div.wikicomment div.wikicomment-footer{padding:.2ex .5em;}div.wikicomment div.wikicomment-footer named-wiki{font-size:small;}table.interwiki-map{margin:1em 2em;}.interwiki-map th{text-decoration:underline;text-align:left;padding-left:1em;}.interwiki-map td.interwiki-url{padding-left:2em;}.interwiki-map th.interwiki-url{padding-left:3em;}.dialog{background-color:#cdf;color:black;margin:2em auto 2em auto;border:thin black solid;width:50%;}.dialog h1,.dialog p,.dialog div{text-align:center;}.dialog h1{font-size:large;margin:.5em 0 1em 0;}.dialog div.message{background-color:white;color:black;color:black;margin:0 1em;padding:.5em .5em;}.dialog p.buttons{margin:1em 0 .5em 0;}.gensmall{font-size:10px;}.genmed{font-size:11px;}td.cat{font-weight:bold;letter-spacing:1px;color:#000;background:url(./images/cellpic1.png);height:27px;}td.row1{background:#eaedf4;color:#000;}td.row2{background:#d9e2ec;color:#000;}td.row3{background:#cad9ea;color:#000;}td.spacerow{background:#cad9ea;color:#000;}.forumline{background:#fff;color:#000;border:1px solid #069;}.box{background:#fff;border:1px solid silver;}.box-title{font-family:Tahoma;font-weight:normal;background-color:#ccc;color:black;text-align:center;border:none;padding:2px 0 2px 0;}.box-data{width:160px;font-size:9pt;font-weight:normal;border:none;}.box-data .wiki{font-weight:normal;}td.sidebar{border-spacing:0;margin:0;}div.boxright{width:200px;right:10px;padding:.5em;float:right;border:thin solid #888;padding:.5em;}div.rss{margin:1em;padding:1em;font-size:.9em;background-color:#eee;border:thin dashed #aaa;}div.feed{color:#333;margin:-0.5em;margin-bottom:0;padding:.3em;font-weight:bold;background-color:#f2f2f2;font-size:1.2em;}div.itemdesc{padding-left:1em;}div.rssitem{border-top:thin dashed #aaa;}table.sqlresult{border:1px outset gray;background:white;margin:.5ex .5em;padding:1px;}.sqlresult tr.evenrow{background:#eee;}.sqlresult tr.oddrow{background:white;}table.sqlresult td{margin:1px;border:1px solid gray;}img.tex{border:0;vertical-align:middle;}.boldsmall{font-weight:bold;font-size:11px;}.wikiwyg_toolbar{background:#D3D3D3;border:1px outset;letter-spacing:0;padding:2px;}span.wikiwyg_control_link a{padding-right:8px;}.wikiwyg_button{background:#D3D3D3;border:1px solid #D3D3D3;cursor:pointer;width:20px;height:20px;vertical-align:bottom;}.wikiwyg_button:hover{border:1px outset;}.wikiwyg_button:active{border:1px inset;}.wikiwyg_separator{background:#D3D3D3;border:1px solid #D3D3D3;width:9px;height:20px;vertical-align:bottom;}.wikiwyg_selector{width:70px;}.wikiwyg_wysiwyg table{border-collapse:collapse;margin-bottom:.2em;}.wikiwyg_wysiwyg table td{border:1px;border-style:solid;padding:.2em;vertical-align:top;} \ No newline at end of file Property changes on: trunk/themes/MacOSX/MacOSX-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MacOSX/MacOSX-topbottombars-min.css =================================================================== --- trunk/themes/MacOSX/MacOSX-topbottombars-min.css (rev 0) +++ trunk/themes/MacOSX/MacOSX-topbottombars-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +@import url("MacOSX.css");body{padding-top:16ex;padding-bottom:9ex;}div#header,div#footer{background:white url("images/bgpaper8.png");margin:0;padding:0;position:fixed;left:0;right:0;padding-top:.5ex;padding-bottom:.5ex;padding-left:1em;padding-right:1em;}hr.toolbar{display:none;}div#header{top:0;border-bottom:1px solid #b2b2b2;}div#navbuttons{padding-bottom:.25ex;}div#footer{border-top:1px solid #b2b2b2;bottom:-1ex;padding-bottom:0;}div#actionbuttons{padding-bottom:1ex;padding-top:.25ex;}p.editdate{margin-top:.75ex;margin-bottom:.5ex;} \ No newline at end of file Property changes on: trunk/themes/MacOSX/MacOSX-topbottombars-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MacOSX/Makefile =================================================================== --- trunk/themes/MacOSX/Makefile (rev 0) +++ trunk/themes/MacOSX/Makefile 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1,20 @@ +# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# +# themes/MacOSX/Makefile +# +# minify CSS and JS +# +# TODO: resolve @import + +CSS_SRC = MacOSX.css MacOSX-heavy.css MacOSX-topbottombars.css +#MAIN = MacOSX +#JS_MAIN = MacOSX.js +JS_REST = + +CSS_FILES = $(patsubst %.css,%-min.css,$(CSS_SRC)) + +all : css + +include ../Makefile.global + + Property changes on: trunk/themes/MacOSX/Makefile ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MonoBook/IE50Fixes-min.css =================================================================== --- trunk/themes/MonoBook/IE50Fixes-min.css (rev 0) +++ trunk/themes/MonoBook/IE50Fixes-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +#column-content{margin:0!important;float:none;}#column-content #content{margin-top:3em;height:1%;}#column-one{position:absolute;overflow:visible;top:0;left:0;z-index:3;}#footer{margin:0 0 0 13.6em;}body{font-size:xx-small;}#p-cactions li{float:left;padding-top:0;padding-bottom:0!important;height:.9em;}#p-cactions li a{display:block;padding-bottom:.045em;}#p-cactions li.selected a{padding-bottom:.17em;}#p-cactions li a:hover{padding-bottom:.17em;}.link-external,.external{background:none;padding:0;}#p-personal ul{float:right;}#p-personal li{float:left;}li#pt-userpage,li#pt-anonuserpage,li#pt-login,li#pt-logout{background:none;padding-left:none;}.visualClear{width:100%;height:0;padding:0;margin:0;}.firstHeading{margin-bottom:.3em;} \ No newline at end of file Property changes on: trunk/themes/MonoBook/IE50Fixes-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MonoBook/IE55Fixes-min.css =================================================================== --- trunk/themes/MonoBook/IE55Fixes-min.css (rev 0) +++ trunk/themes/MonoBook/IE55Fixes-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +#column-content{float:none;margin-left:0;height:1%;}#column-content #content{position:relative;z-index:5;margin-left:12.2em;margin-top:3em;height:1%;}#column-one{position:absolute;z-index:4;top:0;left:0;width:100%;}#footer{margin-left:13.6em;border-left:1px solid #fabd23;}#p-personal{padding-bottom:.1em;}body{font-size:xx-small;}pre{font-size:x-small;}#p-cactions{width:76%!important;z-index:3!important;float:none;}#p-cactions li{float:left;padding-top:0;padding-bottom:0!important;height:.9em;}#p-cactions li a{display:block;padding-bottom:.045em;}#p-cactions li.selected a{padding-bottom:.17em;padding-bottom:.17em!important;}#p-cactions li a:hover{padding-bottom:.17em;}.portlet{overflow:hidden;}#bodyContent a.external{background:url(external.png) center right no-repeat;padding-right:13px;}#p-logo a,#p-logo a:hover{cursor:pointer;}.visualClear{width:90%;height:1px;padding:0;margin:0;} \ No newline at end of file Property changes on: trunk/themes/MonoBook/IE55Fixes-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MonoBook/IE60Fixes-min.css =================================================================== --- trunk/themes/MonoBook/IE60Fixes-min.css (rev 0) +++ trunk/themes/MonoBook/IE60Fixes-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +#column-content{float:none;margin-left:0;height:1%;}#column-content #content{margin-left:12.2em;margin-top:3em;height:1%;}#column-one{position:absolute;z-index:4;top:0;left:0;}#footer{margin-left:13.6em;border-left:1px solid #fabd23;}body{font-size:80%;}tt{font-size:110%;}#p-cactions{z-index:3;}#p-cactions li{padding-bottom:0!important;border:none;background-color:transparent;cursor:default;float:none!important;}#p-cactions li a{display:inline-block!important;vertical-align:top;padding-bottom:0;border:solid #aaa;border-width:1px 1px 0;}#p-cactions li.selected a{border-color:#fabd23;padding-bottom:.17em!important;}#p-cactions li a:hover{padding-bottom:.17em;}#p-navigation a{display:inline-block;width:100%;}#portal-personaltools{padding-bottom:.1em;}#bodyContent a.external{background:url(images/external.png) center right no-repeat;padding-right:13px;}#p-logo a,#p-logo a:hover{cursor:pointer;}div.visualClear{width:100%;line-height:0;}textarea{width:96%;}div.editsection,#catlinks,div.tright,div.tleft{position:relative;}span.rateit{text-decoration:none;font-family:Arial,Helvetica,sans-serif;line-height:1em;}div#rateit-widget-top{top:38px;} \ No newline at end of file Property changes on: trunk/themes/MonoBook/IE60Fixes-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MonoBook/IE70Fixes-min.css =================================================================== --- trunk/themes/MonoBook/IE70Fixes-min.css (rev 0) +++ trunk/themes/MonoBook/IE70Fixes-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +#column-content #content{margin-left:12.2em;margin-top:3em;height:1%;}.rtl #column-one{padding-top:0;}.rtl #column-one #p-navigation{margin-top:160px;}#p-cactions{z-index:3;}#p-cactions li{padding-bottom:0!important;border:none;background-color:transparent;cursor:default;float:none!important;}#p-cactions li a{display:inline-block!important;vertical-align:top;padding-bottom:0;border:solid #aaa;border-width:1px 1px 0;}#p-cactions li.selected a{border-color:#fabd23;padding-bottom:.17em!important;}#p-cactions li a:hover{padding-bottom:.17em!important;}#p-navigation a{display:inline-block;width:100%;}#portal-personaltools{padding-bottom:.1em;}textarea{width:96%;}tt,pre{font-size:105%;}#footer li{margin-right:0;} \ No newline at end of file Property changes on: trunk/themes/MonoBook/IE70Fixes-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MonoBook/IEFixes-min.css =================================================================== --- trunk/themes/MonoBook/IEFixes-min.css (rev 0) +++ trunk/themes/MonoBook/IEFixes-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +@import "null?\"\{";@import "IE60Fixes.css";voice-family:"\"}\"";voice-family:inherit;@media tty{i{content:"\";}}@media tty{i{content:"\";}}@m;@import 'IE55Fixes.css'; \ No newline at end of file Property changes on: trunk/themes/MonoBook/IEFixes-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MonoBook/IEFixes-min.js =================================================================== --- trunk/themes/MonoBook/IEFixes-min.js (rev 0) +++ trunk/themes/MonoBook/IEFixes-min.js 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +var rslt=navigator.appVersion.match(/MSIE (\d+\.\d+)/,"");if(rslt!=null){var version=Number(rslt[1])}else{var version=0}function hookit(){fixalpha();relativeforfloats()}function fixalpha(){if(version>=5.5&&document.getElementById("p-logo")){var c=document.getElementById("p-logo").firstChild;var b=c.currentStyle.backgroundImage;if(b.match(/\.png/i)!=null){var a=b.substring(5,b.length-2);c.style.backgroundImage="none";c.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(src='"+a+"', sizingMethod='crop')"}}}function relativeforfloats(){var c=document.getElementById("bodyContent");if(c){var a=c.getElementsByTagName("table");var b=c.getElementsByTagName("div")}setrelative(a);setrelative(b)}function setrelative(a){var b=0;while(b<a.length){if((((a[b].style.float&&a[b].style.float!=("none"))||((a[b].align&&a[b].align!=("none"))))&&(!a[b].style.position||a[b].style.position!="relative"))){a[b].style.position="relative"}b++}}; \ No newline at end of file Property changes on: trunk/themes/MonoBook/IEFixes-min.js ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MonoBook/IEMacFixes-min.css =================================================================== --- trunk/themes/MonoBook/IEMacFixes-min.css (rev 0) +++ trunk/themes/MonoBook/IEMacFixes-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +#portal-column-content{margin:0 0 4.8em 0;float:none;}#portal-column-content #content{z-index:0;}#portal-column-one{position:absolute;top:0;left:0;z-index:3;}#portal-footer{margin-left:12em;}#portlet-contentViews li,#portlet-contentViews .selected{border:none!important;}#portlet-contentViews li a{border:1px solid #aaa;border-bottom:none;}#portlet-contentViews li.selected a{border:1px solid #fabd23;border-bottom:none;}li#personaltools-userpage,li#personaltools-login{background:none;padding-left:none;}#mactest{color:Green;} \ No newline at end of file Property changes on: trunk/themes/MonoBook/IEMacFixes-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MonoBook/KHTMLFixes-min.css =================================================================== --- trunk/themes/MonoBook/KHTMLFixes-min.css (rev 0) +++ trunk/themes/MonoBook/KHTMLFixes-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +#column-content{margin-left:0;} \ No newline at end of file Property changes on: trunk/themes/MonoBook/KHTMLFixes-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MonoBook/Makefile =================================================================== --- trunk/themes/MonoBook/Makefile (rev 0) +++ trunk/themes/MonoBook/Makefile 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1,19 @@ +# $Id: Makefile 6691 2009-03-23 07:43:49Z vargenau $ +# +# themes/MonoBook/Makefile +# +# minify CSS and JS +# + +CSS_SRC = IE50Fixes.css IE70Fixes.css KHTMLFixes.css commonPrint.css rtl.css \ + IE55Fixes.css IEFixes.css Opera6Fixes.css main.css wikiprintable.css \ + IE60Fixes.css IEMacFixes.css Opera7Fixes.css monobook.css wikistandard.css +MAIN = wikibits +JS_MAIN = wikibits.js # sticky.js +JS_REST = IEFixes.js delayed.js + +CSS_FILES = $(patsubst %.css,%-min.css,$(CSS_SRC)) + +all : css js + +include ../Makefile.global Property changes on: trunk/themes/MonoBook/Makefile ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MonoBook/Opera6Fixes-min.css =================================================================== --- trunk/themes/MonoBook/Opera6Fixes-min.css (rev 0) +++ trunk/themes/MonoBook/Opera6Fixes-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +#column-one{position:relative;max-width:11.7em;}#p-personal{width:45em;margin-left:8.6em;right:0;}#bodyContent a.external{background:url(external.png) center right no-repeat;padding-right:13px;} \ No newline at end of file Property changes on: trunk/themes/MonoBook/Opera6Fixes-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MonoBook/Opera7Fixes-min.css =================================================================== --- trunk/themes/MonoBook/Opera7Fixes-min.css (rev 0) +++ trunk/themes/MonoBook/Opera7Fixes-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +#p-cactions{margin-top:.1em;}#p-cactions li a{top:2px;}#bodyContent a.external{background:url(external.png) center right no-repeat;padding-right:13px;} \ No newline at end of file Property changes on: trunk/themes/MonoBook/Opera7Fixes-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MonoBook/commonPrint-min.css =================================================================== --- trunk/themes/MonoBook/commonPrint-min.css (rev 0) +++ trunk/themes/MonoBook/commonPrint-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +@page{size:A4 portrait;margin:17mm 10mm 17mm 10mm;}h1{string-set:header content();}@page :left{@top-left{content:"Phpwiki";}@top-right{content:string(header);}@bottom-left{content:"Page " counter(page) " of " counter(pages);}}@page :right{@top-left{content:string(header);}@top-right{content:"Phpwiki";}@bottom-right{content:"Page " counter(page) " of " counter(pages);}}@page :first{@top-right{content:normal;}@top-left{content:normal;}}h1,h2,h3,h4,h5,h6{page-break-after:avoid;}table.nobreak{page-break-inside:avoid!important;}a.stub,a.new{color:#ba0000;text-decoration:none;}.toc,#toc{border:1px solid #aaa;background-color:#f9f9f9;padding:5px;}.tocindent{margin-left:2em;}.tocline{margin-bottom:0;}.toctoggle,.editsection{font-size:smaller;}div.floatright{float:right;margin:0;position:relative;border:.5em solid White;border-width:.5em 0 .8em 1.4em;}div.floatright p{font-style:italic;}div.floatleft{float:left;margin:.3em .5em .5em 0;position:relative;border:.5em solid White;border-width:.5em 1.4em .8em 0;}div.floatleft p{font-style:italic;}div.thumb{margin-bottom:.5em;border-style:solid;border-color:White;width:auto;}div.thumb div{border:1px solid #ccc;padding:3px!important;background-color:#f9f9f9;font-size:94%;text-align:center;}div.thumb div a img{border:1px solid #ccc;}div.thumb div div.thumbcaption{border:none;text-align:left;padding:.3em 0 .1em 0;}div.magnify{display:none;}div.tright{float:right;border-width:.5em 0 .8em 1.4em;}div.tleft{float:left;margin-right:.5em;border-width:.5em 1.4em .8em 0;}table.rimage{float:right;width:1pt;position:relative;margin-left:1em;margin-bottom:1em;text-align:center;}body{background:White;color:Black;margin:0;padding:0;}div#p-personal,div.top,div#column-one,#colophon,.editsection,.toctoggle,div#f-poweredbyico,div#f-copyrightico,li#f-viewcount,li#f-about,li#f-disclaimer,div#xhtml-validator,li#pt-logout,li#pt-login,div#p-logo,div.hint,fieldset.wiki-rc-action,span.debug{display:none;}ul{list-style-type:square;}#content{background:none;border:none!important;font-size:11pt;padding:0!important;margin:0!important;text-align:left;}#footer{border:1px solid black;}h1,h2,h3,h4,h5,h6{font-weight:bold;}p,.documentDescription{margin:1em 0!important;line-height:1.2em;}pre{border:1pt dashed black;white-space:pre;font-size:8pt;overflow:auto;padding:0;}table.listing,table.listing td{border:1pt solid black;border-collapse:collapse;}a{color:Black!important;padding:0!important;}a:link,a:visited{color:#520;background:transparent;text-decoration:underline;}#globalWrapper{width:100%!important;min-width:0!important;}#column-content{margin:0!important;}#column-content #content{padding:1em;margin:0!important;}a,a.external,a.new,a.stub{color:black!important;text-decoration:none!important;}a,a.external,a.new,a.stub{color:inherit!important;text-decoration:inherit!important;}.urlexpansion{display:inline!important;}div.townBox{position:relative;float:right;background:white;margin-left:1em;border:1px solid gray;padding:.3em;width:200px;overflow:hidden;clear:right;}div.townBox dl{padding:0;margin:0 0 .3em 0;font-size:96%;}div.townBox dl dt{background:none;margin:.4em 0 0 0;}div.townBox dl dd{margin:.1em 0 0 1.1em;background-color:#f3f3f3;} \ No newline at end of file Property changes on: trunk/themes/MonoBook/commonPrint-min.css ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MonoBook/delayed-min.js =================================================================== --- trunk/themes/MonoBook/delayed-min.js (rev 0) +++ trunk/themes/MonoBook/delayed-min.js 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +var rslt=navigator.appVersion.match(/MSIE (\d+\.\d+)/,"");if(rslt!=null){window.attachEvent("onload",hookit)}; \ No newline at end of file Property changes on: trunk/themes/MonoBook/delayed-min.js ___________________________________________________________________ Added: svn:executable + * Added: trunk/themes/MonoBook/main-min.css =================================================================== --- trunk/themes/MonoBook/main-min.css (rev 0) +++ trunk/themes/MonoBook/main-min.css 2010-04-26 17:15:34 UTC (rev 7347) @@ -0,0 +1 @@ +#column-content{width:100%;float:right;margin:0 0 .6em -12.2em;padding:0;height:1%;}#content{position:relative;z-index:2;margin:2.8em 0 0 12.2em;padding:0 1em 1.5em 1em;background:white;color:black;border:1px solid #aaa;border-right:none;line-height:1.5em;}#column-one{position:absolute;padding-top:160px;top:0;left:0;}body{font:small sans-serif;background:#f9f9f9 url("images/headbg.jpg") 0 0 no-repeat;color:black;margin:0;padding:0;}#globalWrapper{font-size:127%;width:100%;margin:0;padding:0;}.visualClear{clear:both;}table{font-size:100%;color:black;}a{text-decoration:none;color:#002bb8;background:n... [truncated message content] |
From: <var...@us...> - 2010-04-27 01:30:54
|
Revision: 7348 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7348&view=rev Author: vargenau Date: 2010-04-27 01:30:48 +0000 (Tue, 27 Apr 2010) Log Message: ----------- svn propdel svn:executable Property Changed: ---------------- trunk/themes/Crao/Makefile trunk/themes/Hawaiian/Makefile trunk/themes/MacOSX/Makefile trunk/themes/MonoBook/Makefile trunk/themes/Portland/Makefile trunk/themes/Sidebar/Makefile trunk/themes/SpaceWiki/Makefile trunk/themes/Wordpress/Makefile trunk/themes/gforge/Makefile trunk/themes/shamino_com/Makefile trunk/themes/smaller/Makefile trunk/themes/wikilens/Makefile Property changes on: trunk/themes/Crao/Makefile ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/Hawaiian/Makefile ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MacOSX/Makefile ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/Makefile ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/Portland/Makefile ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/Sidebar/Makefile ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/SpaceWiki/Makefile ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/Wordpress/Makefile ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/gforge/Makefile ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/shamino_com/Makefile ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/smaller/Makefile ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/wikilens/Makefile ___________________________________________________________________ Deleted: svn:executable - * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-04-27 01:36:12
|
Revision: 7349 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7349&view=rev Author: vargenau Date: 2010-04-27 01:36:01 +0000 (Tue, 27 Apr 2010) Log Message: ----------- svn propdel svn:executable Property Changed: ---------------- trunk/themes/Crao/crao-min.css trunk/themes/Hawaiian/Hawaiian-heavy-min.css trunk/themes/Hawaiian/Hawaiian-min.css trunk/themes/MacOSX/MacOSX-heavy-min.css trunk/themes/MacOSX/MacOSX-min.css trunk/themes/MacOSX/MacOSX-topbottombars-min.css trunk/themes/MonoBook/IE50Fixes-min.css trunk/themes/MonoBook/IE55Fixes-min.css trunk/themes/MonoBook/IE60Fixes-min.css trunk/themes/MonoBook/IE70Fixes-min.css trunk/themes/MonoBook/IEFixes-min.css trunk/themes/MonoBook/IEMacFixes-min.css trunk/themes/MonoBook/KHTMLFixes-min.css trunk/themes/MonoBook/Opera6Fixes-min.css trunk/themes/MonoBook/Opera7Fixes-min.css trunk/themes/MonoBook/commonPrint-min.css trunk/themes/MonoBook/main-min.css trunk/themes/MonoBook/monobook-min.css trunk/themes/MonoBook/rtl-min.css trunk/themes/MonoBook/wikiprintable-min.css trunk/themes/MonoBook/wikistandard-min.css trunk/themes/Portland/portland-min.css trunk/themes/Sidebar/sidebar-min.css trunk/themes/SpaceWiki/SpaceWiki-gravimetric-min.css trunk/themes/SpaceWiki/SpaceWiki-min.css trunk/themes/Wordpress/Wordpress-min.css trunk/themes/gforge/gforge-autonumbering-min.css trunk/themes/gforge/gforge-fullscreen-min.css trunk/themes/gforge/gforge-print-min.css trunk/themes/gforge/gforge-rereading-min.css trunk/themes/shamino_com/shamino_com-min.css trunk/themes/smaller/phpwiki-min.css trunk/themes/wikilens/wikilens-min.css Property changes on: trunk/themes/Crao/crao-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/Hawaiian/Hawaiian-heavy-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/Hawaiian/Hawaiian-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MacOSX/MacOSX-heavy-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MacOSX/MacOSX-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MacOSX/MacOSX-topbottombars-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/IE50Fixes-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/IE55Fixes-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/IE60Fixes-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/IE70Fixes-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/IEFixes-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/IEMacFixes-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/KHTMLFixes-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/Opera6Fixes-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/Opera7Fixes-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/commonPrint-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/main-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/monobook-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/rtl-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/wikiprintable-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/wikistandard-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/Portland/portland-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/Sidebar/sidebar-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/SpaceWiki/SpaceWiki-gravimetric-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/SpaceWiki/SpaceWiki-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/Wordpress/Wordpress-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/gforge/gforge-autonumbering-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/gforge/gforge-fullscreen-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/gforge/gforge-print-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/gforge/gforge-rereading-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/shamino_com/shamino_com-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/smaller/phpwiki-min.css ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/wikilens/wikilens-min.css ___________________________________________________________________ Deleted: svn:executable - * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-04-27 01:37:51
|
Revision: 7350 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7350&view=rev Author: vargenau Date: 2010-04-27 01:37:45 +0000 (Tue, 27 Apr 2010) Log Message: ----------- svn propdel svn:executable Property Changed: ---------------- trunk/themes/Crao/sticky-min.js trunk/themes/MonoBook/IEFixes-min.js trunk/themes/MonoBook/delayed-min.js trunk/themes/MonoBook/wikibits-min.js trunk/themes/wikilens/wikilens-min.js Property changes on: trunk/themes/Crao/sticky-min.js ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/IEFixes-min.js ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/delayed-min.js ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/MonoBook/wikibits-min.js ___________________________________________________________________ Deleted: svn:executable - * Property changes on: trunk/themes/wikilens/wikilens-min.js ___________________________________________________________________ Deleted: svn:executable - * This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-04-27 01:44:38
|
Revision: 7351 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7351&view=rev Author: vargenau Date: 2010-04-27 01:44:31 +0000 (Tue, 27 Apr 2010) Log Message: ----------- svn propset svn:keywords Id Modified Paths: -------------- trunk/themes/Crao/Makefile trunk/themes/Hawaiian/Makefile trunk/themes/MacOSX/Makefile trunk/themes/Makefile trunk/themes/Makefile.global trunk/themes/MonoBook/Makefile trunk/themes/Portland/Makefile trunk/themes/Sidebar/Makefile trunk/themes/SpaceWiki/Makefile trunk/themes/Wordpress/Makefile trunk/themes/blog/Makefile trunk/themes/default/Makefile trunk/themes/gforge/Makefile trunk/themes/shamino_com/Makefile trunk/themes/smaller/Makefile trunk/themes/wikilens/Makefile Property Changed: ---------------- trunk/themes/Crao/Makefile trunk/themes/Hawaiian/Makefile trunk/themes/MacOSX/Makefile trunk/themes/Makefile trunk/themes/Makefile.global trunk/themes/MonoBook/Makefile trunk/themes/Portland/Makefile trunk/themes/Sidebar/Makefile trunk/themes/SpaceWiki/Makefile trunk/themes/Wordpress/Makefile trunk/themes/blog/Makefile trunk/themes/default/Makefile trunk/themes/gforge/Makefile trunk/themes/shamino_com/Makefile trunk/themes/smaller/Makefile trunk/themes/wikilens/Makefile Modified: trunk/themes/Crao/Makefile =================================================================== --- trunk/themes/Crao/Makefile 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/Crao/Makefile 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# $Id$ # # themes/Crao/Makefile # Property changes on: trunk/themes/Crao/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: trunk/themes/Hawaiian/Makefile =================================================================== --- trunk/themes/Hawaiian/Makefile 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/Hawaiian/Makefile 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# $Id$ # # themes/Hawaiian/Makefile # Property changes on: trunk/themes/Hawaiian/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: trunk/themes/MacOSX/Makefile =================================================================== --- trunk/themes/MacOSX/Makefile 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/MacOSX/Makefile 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# $Id$ # # themes/MacOSX/Makefile # Property changes on: trunk/themes/MacOSX/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: trunk/themes/Makefile =================================================================== --- trunk/themes/Makefile 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/Makefile 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# $Id$ # # themes/Makefile # Property changes on: trunk/themes/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: trunk/themes/Makefile.global =================================================================== --- trunk/themes/Makefile.global 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/Makefile.global 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# $Id$ # # themes/Makefile.global # Property changes on: trunk/themes/Makefile.global ___________________________________________________________________ Added: svn:keywords + Id Modified: trunk/themes/MonoBook/Makefile =================================================================== --- trunk/themes/MonoBook/Makefile 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/MonoBook/Makefile 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z vargenau $ +# $Id$ # # themes/MonoBook/Makefile # Property changes on: trunk/themes/MonoBook/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: trunk/themes/Portland/Makefile =================================================================== --- trunk/themes/Portland/Makefile 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/Portland/Makefile 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# $Id$ # # themes/Portland/Makefile # Property changes on: trunk/themes/Portland/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: trunk/themes/Sidebar/Makefile =================================================================== --- trunk/themes/Sidebar/Makefile 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/Sidebar/Makefile 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# $Id$ # # themes/Sidebar/Makefile # Property changes on: trunk/themes/Sidebar/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: trunk/themes/SpaceWiki/Makefile =================================================================== --- trunk/themes/SpaceWiki/Makefile 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/SpaceWiki/Makefile 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# $Id$ # # themes/SpaceWiki/Makefile # Property changes on: trunk/themes/SpaceWiki/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: trunk/themes/Wordpress/Makefile =================================================================== --- trunk/themes/Wordpress/Makefile 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/Wordpress/Makefile 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# $Id$ # # themes/Wordpress/Makefile # Property changes on: trunk/themes/Wordpress/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: trunk/themes/blog/Makefile =================================================================== --- trunk/themes/blog/Makefile 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/blog/Makefile 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# $Id$ # # themes/blog/Makefile # Property changes on: trunk/themes/blog/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: trunk/themes/default/Makefile =================================================================== --- trunk/themes/default/Makefile 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/default/Makefile 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z vargenau $ +# $Id$ # # themes/default/Makefile # Property changes on: trunk/themes/default/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: trunk/themes/gforge/Makefile =================================================================== --- trunk/themes/gforge/Makefile 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/gforge/Makefile 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# $Id$ # # themes/gforge/Makefile # Property changes on: trunk/themes/gforge/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: trunk/themes/shamino_com/Makefile =================================================================== --- trunk/themes/shamino_com/Makefile 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/shamino_com/Makefile 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# $Id$ # # themes/shamino_com/Makefile # Property changes on: trunk/themes/shamino_com/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: trunk/themes/smaller/Makefile =================================================================== --- trunk/themes/smaller/Makefile 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/smaller/Makefile 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# $Id$ # # themes/smaller/Makefile # Property changes on: trunk/themes/smaller/Makefile ___________________________________________________________________ Added: svn:keywords + Id Modified: trunk/themes/wikilens/Makefile =================================================================== --- trunk/themes/wikilens/Makefile 2010-04-27 01:37:45 UTC (rev 7350) +++ trunk/themes/wikilens/Makefile 2010-04-27 01:44:31 UTC (rev 7351) @@ -1,4 +1,4 @@ -# $Id: Makefile 6691 2009-03-23 07:43:49Z rurban $ +# $Id$ # # themes/wikilens/Makefile # Property changes on: trunk/themes/wikilens/Makefile ___________________________________________________________________ Added: svn:keywords + Id This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-04-27 01:58:23
|
Revision: 7352 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7352&view=rev Author: vargenau Date: 2010-04-27 01:58:17 +0000 (Tue, 27 Apr 2010) Log Message: ----------- No AVL theme present Modified Paths: -------------- trunk/themes/Makefile trunk/themes/Makefile.global Modified: trunk/themes/Makefile =================================================================== --- trunk/themes/Makefile 2010-04-27 01:44:31 UTC (rev 7351) +++ trunk/themes/Makefile 2010-04-27 01:58:17 UTC (rev 7352) @@ -7,7 +7,7 @@ .PHONY: all css js -THEMES =AVL default MonoBook wikilens Sidebar SpaceWiki blog MacOSX gforge \ +THEMES = default MonoBook wikilens Sidebar SpaceWiki blog MacOSX gforge \ Portland shamino_com Crao Wordpress smaller Hawaiian # http://developer.yahoo.com/yui/compressor/ Modified: trunk/themes/Makefile.global =================================================================== --- trunk/themes/Makefile.global 2010-04-27 01:44:31 UTC (rev 7351) +++ trunk/themes/Makefile.global 2010-04-27 01:58:17 UTC (rev 7352) @@ -6,12 +6,11 @@ .PHONY: all css js -THEMES = AVL default MonoBook wikilens Sidebar SpaceWiki blog MacOSX gforge +THEMES = default MonoBook wikilens Sidebar SpaceWiki blog MacOSX gforge # http://developer.yahoo.com/yui/compressor/ YUICOMPRESSOR = java -jar h:/Java/yuicompressor-2.4.2.jar - css: $(CSS_FILES) js: $(MAIN)-min.js $(patsubst %.js,%-min.js,$(JS_REST)) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-04-27 02:12:19
|
Revision: 7353 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7353&view=rev Author: vargenau Date: 2010-04-27 02:12:12 +0000 (Tue, 27 Apr 2010) Log Message: ----------- Provide yuicompressor-2.4.2.jar so that Makefile works Modified Paths: -------------- trunk/themes/Makefile trunk/themes/Makefile.global Added Paths: ----------- trunk/themes/default/yuicompressor-2.4.2.jar Modified: trunk/themes/Makefile =================================================================== --- trunk/themes/Makefile 2010-04-27 01:58:17 UTC (rev 7352) +++ trunk/themes/Makefile 2010-04-27 02:12:12 UTC (rev 7353) @@ -11,7 +11,7 @@ Portland shamino_com Crao Wordpress smaller Hawaiian # http://developer.yahoo.com/yui/compressor/ -YUICOMPRESSOR = java -jar h:/Java/yuicompressor-2.4.2.jar +YUICOMPRESSOR = java -jar default/yuicompressor-2.4.2.jar all: $(foreach dir,$(THEMES),make -C $(dir);) Modified: trunk/themes/Makefile.global =================================================================== --- trunk/themes/Makefile.global 2010-04-27 01:58:17 UTC (rev 7352) +++ trunk/themes/Makefile.global 2010-04-27 02:12:12 UTC (rev 7353) @@ -9,7 +9,7 @@ THEMES = default MonoBook wikilens Sidebar SpaceWiki blog MacOSX gforge # http://developer.yahoo.com/yui/compressor/ -YUICOMPRESSOR = java -jar h:/Java/yuicompressor-2.4.2.jar +YUICOMPRESSOR = java -jar ../default/yuicompressor-2.4.2.jar css: $(CSS_FILES) Added: trunk/themes/default/yuicompressor-2.4.2.jar =================================================================== (Binary files differ) Property changes on: trunk/themes/default/yuicompressor-2.4.2.jar ___________________________________________________________________ Added: svn:mime-type + application/octet-stream This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ru...@us...> - 2010-06-14 12:05:41
|
Revision: 7532 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7532&view=rev Author: rurban Date: 2010-06-14 12:05:35 +0000 (Mon, 14 Jun 2010) Log Message: ----------- add opengraph site and title for FacebookLike Modified Paths: -------------- trunk/themes/Crao/templates/head.tmpl trunk/themes/default/templates/head.tmpl trunk/themes/wikilens/templates/head.tmpl Modified: trunk/themes/Crao/templates/head.tmpl =================================================================== --- trunk/themes/Crao/templates/head.tmpl 2010-06-14 08:03:53 UTC (rev 7531) +++ trunk/themes/Crao/templates/head.tmpl 2010-06-14 12:05:35 UTC (rev 7532) @@ -110,5 +110,7 @@ $pagetitle = " - ". AsString($TITLE); ?> <title><?=WIKI_NAME.$pagetitle?></title> +<meta property="og:title" content="<?= $TITLE ?>"/> +<meta property="og:site_name" content="<?= WIKI_NAME ?>"/> <?= $WikiTheme->getMoreHeaders() ?> </head> Modified: trunk/themes/default/templates/head.tmpl =================================================================== --- trunk/themes/default/templates/head.tmpl 2010-06-14 08:03:53 UTC (rev 7531) +++ trunk/themes/default/templates/head.tmpl 2010-06-14 12:05:35 UTC (rev 7532) @@ -117,5 +117,7 @@ $pagetitle = " - ". AsString($TITLE); ?> <title><?= WIKI_NAME.$pagetitle ?></title> +<meta property="og:title" content="<?= $TITLE ?>"/> +<meta property="og:site_name" content="<?= WIKI_NAME ?>"/> <?= $WikiTheme->getMoreHeaders() ?> </head> Modified: trunk/themes/wikilens/templates/head.tmpl =================================================================== --- trunk/themes/wikilens/templates/head.tmpl 2010-06-14 08:03:53 UTC (rev 7531) +++ trunk/themes/wikilens/templates/head.tmpl 2010-06-14 12:05:35 UTC (rev 7532) @@ -110,6 +110,8 @@ $pagetitle = " - ". AsString($TITLE); ?> <title><?= WIKI_NAME.$pagetitle ?></title> +<meta property="og:title" content="<?= $TITLE ?>"/> +<meta property="og:site_name" content="<?= WIKI_NAME ?>"/> <?php require_once("lib/plugin/RateIt.php"); $plugin = new WikiPlugin_RateIt; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-06-24 15:25:38
|
Revision: 7569 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7569&view=rev Author: vargenau Date: 2010-06-24 15:25:31 +0000 (Thu, 24 Jun 2010) Log Message: ----------- No "clear" attribute for <br> Modified Paths: -------------- trunk/themes/Crao/templates/editpage.tmpl trunk/themes/Crao/templates/wikiblog.tmpl trunk/themes/MonoBook/templates/viewsource.tmpl trunk/themes/Portland/templates/browse.tmpl trunk/themes/Portland/templates/debug.tmpl trunk/themes/Sidebar/templates/debug.tmpl trunk/themes/Wordpress/templates/browse.tmpl trunk/themes/blog/templates/viewsource.tmpl trunk/themes/blog/templates/wikiblog.tmpl trunk/themes/default/templates/comment.tmpl trunk/themes/default/templates/debug.tmpl trunk/themes/default/templates/editpage.tmpl trunk/themes/default/templates/login.tmpl trunk/themes/default/templates/viewsource.tmpl trunk/themes/default/templates/wikiblog.tmpl trunk/themes/gforge/templates/debug.tmpl trunk/themes/gforge/templates/editpage.tmpl trunk/themes/shamino_com/templates/debug.tmpl Modified: trunk/themes/Crao/templates/editpage.tmpl =================================================================== --- trunk/themes/Crao/templates/editpage.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/Crao/templates/editpage.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -31,7 +31,7 @@ accept-charset="<?=CHARSET?>"> <?php if (!empty($_GET['start_debug'])) echo '<input type="hidden" name="start_debug" value="1" >'; ?> <?php /* To clear beyond a larger logo, such as in the Hawaiian theme */ ?> - <br clear="all" class="clear-floats" /> + <br class="clear-floats" /> <table width="100%"> <tr><td><?= $EDIT_TOOLBAR ?></td> <td align="right"><div id="editarea-size"> Modified: trunk/themes/Crao/templates/wikiblog.tmpl =================================================================== --- trunk/themes/Crao/templates/wikiblog.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/Crao/templates/wikiblog.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -29,7 +29,7 @@ <div class="wikiblog-header"> <strong class="floatleft"><?= WikiLink($page, 'known', $CDATE) ?></strong> <strong class="floatright"><?= WikiLink($BLOG_CREATOR, 'if_known') ?></strong> - <br clear="all" class="clear-floats" /> + <br class="clear-floats" /> </div> <div class="wikiblog-body"> <?php if ($rev->get('summary')) { ?> @@ -42,7 +42,7 @@ <div class="wikiblog-footer"> <?= $buttons ?> <?= $modified ?> - <br clear="all" class="clear-floats" /> + <br class="clear-floats" /> </div> <?php } ?> Modified: trunk/themes/MonoBook/templates/viewsource.tmpl =================================================================== --- trunk/themes/MonoBook/templates/viewsource.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/MonoBook/templates/viewsource.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -14,8 +14,7 @@ <!-- Dummy form else NS4 does not like the textarea --> <form method="post" action="<?=$request->getPostURL()?>" accept-charset="<?=CHARSET?>"> <?php /* To clear beyond a larger logo, such as in the Hawaiian theme */ ?> -<br clear="all" class="clear-floats" /> -<!-- wrap=virtual is not HTML4, but without it NS4 does not wrap long lines --> +<br class="clear-floats" /> <textarea class="wikiedit" name="content" rows="<?=$request->getPref('editHeight')?>" Modified: trunk/themes/Portland/templates/browse.tmpl =================================================================== --- trunk/themes/Portland/templates/browse.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/Portland/templates/browse.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -2,7 +2,7 @@ // rcs_id('$Id$'); ?> -<br clear="all" class="clear-floats" /> +<br class="clear-floats" /> <?php if ($revision and !$revision->isCurrent()) { ?> <p><strong><?=_("Note:")?></strong> Modified: trunk/themes/Portland/templates/debug.tmpl =================================================================== --- trunk/themes/Portland/templates/debug.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/Portland/templates/debug.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -10,5 +10,4 @@ </td><td> <span class="debug"><?=fmt("Page Execution took %s seconds", $RUNTIMER->getStats())?></span> </td></tr></table> -<?php // This keeps the valid XHTML! icons from "hanging off the bottom of the screen" ?> -<br clear="all" class="clear-floats" /> +<br class="clear-floats" /> Modified: trunk/themes/Sidebar/templates/debug.tmpl =================================================================== --- trunk/themes/Sidebar/templates/debug.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/Sidebar/templates/debug.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -19,5 +19,4 @@ <? if (substr(PHP_OS,0,3) != 'WIN') { $mem = @getMemoryUsage(); PrintXml(fmt(", Memory: %s", $mem)); } ?> </span> </td></tr></table> -<?php // This keeps the valid XHTML! icons from "hanging off the bottom of the screen" ?> -<br clear="all" class="clear-floats" /> +<br class="clear-floats" /> Modified: trunk/themes/Wordpress/templates/browse.tmpl =================================================================== --- trunk/themes/Wordpress/templates/browse.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/Wordpress/templates/browse.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -2,7 +2,7 @@ // rcs_id('$Id$'); ?> -<br clear="all" class="clear-floats" /> +<br class="clear-floats" /> <?php if ($revision and !$revision->isCurrent()) { ?> <p><strong><?=_("Note:")?></strong> Modified: trunk/themes/blog/templates/viewsource.tmpl =================================================================== --- trunk/themes/blog/templates/viewsource.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/blog/templates/viewsource.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -16,8 +16,7 @@ <!-- Dummy form else NS4 does not like the textarea --> <form method="post" id="editcontent" action="<?=$request->getPostURL()?>" accept-charset="<?=CHARSET?>"> -<?php /* To clear beyond a larger logo, such as in the Hawaiian theme */ ?> -<!br clear="all" class="clear-floats" /> +<br class="clear-floats" /> <textarea class="wikiedit" name="content" rows="<?=$request->getPref('editHeight')?>" Modified: trunk/themes/blog/templates/wikiblog.tmpl =================================================================== --- trunk/themes/blog/templates/wikiblog.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/blog/templates/wikiblog.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -27,7 +27,7 @@ <!-- <div class="wikiblog-header"> <strong class="floatleft"><?= WikiLink($page, 'known', $CDATE) ?></strong> <strong class="floatright"><?= WikiLink($BLOG_CREATOR, 'if_known') ?></strong> - <br clear="all" class="clear-floats" /> + <br class="clear-floats" /> </div> --> <div class="wikiblog-body"> <?php if ($rev->get('summary')) { ?> @@ -40,7 +40,7 @@ <div class="wikiblog-footer"> <?= $buttons ?> <?= $modified ?> - <br clear="all" class="clear-floats" /> + <br class="clear-floats" /> </div> <?php } ?> Modified: trunk/themes/default/templates/comment.tmpl =================================================================== --- trunk/themes/default/templates/comment.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/default/templates/comment.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -26,13 +26,13 @@ <div class="wikicomment-footer"> <span class="floatright"> <?= fmt("%s by %s", WikiLink($page, 'known', $CDATE), WikiLink($COMMENT_CREATOR, 'if_known')) ?></span> - <br clear="all" class="clear-floats" /> + <br class="clear-floats" /> </div> <?php if ($buttons or $modified) { ?> <div class="floatright"> <?= $buttons ?> <?= $modified ?> - <br clear="all" /> + <br class="clear-floats" /> </div> <?php } ?> <div class="wikicomment-body"> Modified: trunk/themes/default/templates/debug.tmpl =================================================================== --- trunk/themes/default/templates/debug.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/default/templates/debug.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -21,5 +21,4 @@ <? } ?> </span> </td></tr></table> -<?php // This keeps the valid XHTML! icons from "hanging off the bottom of the screen" ?> -<br clear="all" class="clear-floats" /> +<br class="clear-floats" /> Modified: trunk/themes/default/templates/editpage.tmpl =================================================================== --- trunk/themes/default/templates/editpage.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/default/templates/editpage.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -33,7 +33,7 @@ accept-charset="<?=CHARSET?>"> <?php if (!empty($_GET['start_debug'])) echo '<input type="hidden" name="start_debug" value="1" >'; ?> <?php /* To clear beyond a larger logo, such as in the Hawaiian theme */ ?> - <br clear="all" class="clear-floats" /> + <br class="clear-floats" /> <table width="100%"> <tr><td><?= $EDIT_TOOLBAR ?></td> <td align="right"><div id="editarea-size"> Modified: trunk/themes/default/templates/login.tmpl =================================================================== --- trunk/themes/default/templates/login.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/default/templates/login.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -5,7 +5,6 @@ <p><strong><?=$fail_message?></strong></p> <hr noshade="noshade" /> <?php } ?> -<?php /* br past the logo */ ?> <br class="clear-floats" /> <?php Modified: trunk/themes/default/templates/viewsource.tmpl =================================================================== --- trunk/themes/default/templates/viewsource.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/default/templates/viewsource.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -15,7 +15,7 @@ <!-- Dummy form else NS4 does not like the textarea --> <form method="post" action="<?=$request->getPostURL()?>" accept-charset="<?=CHARSET?>"> <?php /* To clear beyond a larger logo, such as in the Hawaiian theme */ ?> -<br clear="all" class="clear-floats" /> +<br class="clear-floats" /> <textarea class="wikiedit" name="content" rows="<?=$request->getPref('editHeight')?>" Modified: trunk/themes/default/templates/wikiblog.tmpl =================================================================== --- trunk/themes/default/templates/wikiblog.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/default/templates/wikiblog.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -25,7 +25,7 @@ <!-- <div class="wikiblog-header"> <strong class="floatleft"><?= WikiLink($page, 'known', $CDATE) ?></strong> <strong class="floatright"><?= WikiLink($BLOG_CREATOR, 'if_known') ?></strong> - <br clear="all" class="clear-floats" /> + <br class="clear-floats" /> </div> --> <div class="wikiblog-body"> <?php if ($rev->get('summary')) { ?> @@ -38,7 +38,7 @@ <div class="wikiblog-footer"> <?= $buttons ?> <?= $modified ?> - <br clear="all" class="clear-floats" /> + <br class="clear-floats" /> </div> <?php } ?> Modified: trunk/themes/gforge/templates/debug.tmpl =================================================================== --- trunk/themes/gforge/templates/debug.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/gforge/templates/debug.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -10,4 +10,4 @@ <?php } ?> </span> </td></tr></table> -<br clear="all" class="clear-floats" /> +<br class="clear-floats" /> Modified: trunk/themes/gforge/templates/editpage.tmpl =================================================================== --- trunk/themes/gforge/templates/editpage.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/gforge/templates/editpage.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -28,7 +28,7 @@ accept-charset="<?=CHARSET?>"> <?php if (!empty($_GET['start_debug'])) echo '<input type="hidden" name="start_debug" value="1" >'; ?> <?php /* To clear beyond a larger logo, such as in the Hawaiian theme */ ?> - <br clear="all" class="clear-floats" /> + <br class="clear-floats" /> <table width="100%"> <tr><td><?= $EDIT_TOOLBAR ?></td> <td align="right"><div id="editarea-size"> Modified: trunk/themes/shamino_com/templates/debug.tmpl =================================================================== --- trunk/themes/shamino_com/templates/debug.tmpl 2010-06-24 14:45:19 UTC (rev 7568) +++ trunk/themes/shamino_com/templates/debug.tmpl 2010-06-24 15:25:31 UTC (rev 7569) @@ -10,4 +10,4 @@ <?php $mem = @getMemoryUsage(); if ($mem) { ?> <?=fmt(", Memory: %s", $mem) ?> <?php } ?></span></div> -<br clear="all" class="clear-floats" /> +<br class="clear-floats" /> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-06-26 15:00:22
|
Revision: 7578 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7578&view=rev Author: vargenau Date: 2010-06-26 15:00:16 +0000 (Sat, 26 Jun 2010) Log Message: ----------- id is enough Modified Paths: -------------- trunk/themes/Sidebar/templates/search.tmpl trunk/themes/default/templates/search.tmpl Modified: trunk/themes/Sidebar/templates/search.tmpl =================================================================== --- trunk/themes/Sidebar/templates/search.tmpl 2010-06-26 14:55:07 UTC (rev 7577) +++ trunk/themes/Sidebar/templates/search.tmpl 2010-06-26 15:00:16 UTC (rev 7578) @@ -3,7 +3,7 @@ ?> <!--{{{ LiveSearch --> <? // -*- php -*- ?> <div id="searchholder"> -<form id="searchform" name="searchform" action="<?= WikiURL(_("FindPage"))?>" +<form id="searchform" action="<?= WikiURL(_("FindPage"))?>" method="get" accept-charset="<?=$charset?>" style="display:inline" class="searchform"> <?php $s = $request->getArg('s') ? $request->getArg('s') : _("Search"); Modified: trunk/themes/default/templates/search.tmpl =================================================================== --- trunk/themes/default/templates/search.tmpl 2010-06-26 14:55:07 UTC (rev 7577) +++ trunk/themes/default/templates/search.tmpl 2010-06-26 15:00:16 UTC (rev 7578) @@ -1,6 +1,6 @@ <!--{{{ LiveSearch --> <? // -*- php -*- ?> <div id="searchholder"> -<form id="searchform" name="searchform" action="<?= WikiURL(_("TitleSearch"))?>" +<form id="searchform" action="<?= WikiURL(_("TitleSearch"))?>" method="get" accept-charset="<?=$charset?>" style="display:inline" class="searchform"> <?php $s = $request->getArg('s') ? $request->getArg('s') : _("Search"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-06-26 18:15:32
|
Revision: 7579 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7579&view=rev Author: vargenau Date: 2010-06-26 18:15:25 +0000 (Sat, 26 Jun 2010) Log Message: ----------- No target _top Modified Paths: -------------- trunk/themes/Crao/templates/navbar.tmpl trunk/themes/MacOSX/themeinfo.php trunk/themes/MonoBook/templates/logo.tmpl trunk/themes/Portland/templates/debug.tmpl trunk/themes/Portland/themeinfo.php trunk/themes/Sidebar/templates/debug.tmpl trunk/themes/Sidebar/templates/logo.tmpl trunk/themes/blog/templates/debug.tmpl trunk/themes/blog/themeinfo.php trunk/themes/shamino_com/templates/debug.tmpl trunk/themes/shamino_com/templates/top.tmpl trunk/themes/wikilens/templates/top.tmpl Modified: trunk/themes/Crao/templates/navbar.tmpl =================================================================== --- trunk/themes/Crao/templates/navbar.tmpl 2010-06-26 15:00:16 UTC (rev 7578) +++ trunk/themes/Crao/templates/navbar.tmpl 2010-06-26 18:15:25 UTC (rev 7579) @@ -2,8 +2,8 @@ // rcs_id('$Id$'); ?> <!-- The top navigation/search bar --> -<form action="<?= WikiURL(_("TitleSearch"))?>" target="_top" - method="get" accept-charset="<?=$charset?>" id="searchform" name="searchform"> +<form action="<?= WikiURL(_("TitleSearch"))?>" + method="get" accept-charset="<?=$charset?>" id="searchform"> <input type="hidden" name="auto_redirect" value="1" /> <?php if (! USE_PATH_INFO) { ?> <input type="hidden" name="pagename" value="<?=_("TitleSearch")?>" /> Modified: trunk/themes/MacOSX/themeinfo.php =================================================================== --- trunk/themes/MacOSX/themeinfo.php 2010-06-26 15:00:16 UTC (rev 7578) +++ trunk/themes/MacOSX/themeinfo.php 2010-06-26 18:15:25 UTC (rev 7579) @@ -87,8 +87,6 @@ $link->unshiftContent(HTML::u($this->maybeSplitWikiWord($default_text))); $link->setAttr('class', 'wikiunknown'); } - if ($request->getArg('frame')) - $link->setAttr('target', '_top'); return $link; } Modified: trunk/themes/MonoBook/templates/logo.tmpl =================================================================== --- trunk/themes/MonoBook/templates/logo.tmpl 2010-06-26 15:00:16 UTC (rev 7578) +++ trunk/themes/MonoBook/templates/logo.tmpl 2010-06-26 18:15:25 UTC (rev 7579) @@ -1,6 +1,6 @@ <?php // -*-php-*- // rcs_id('$Id$'); ?> -<div class="portlet" id="p-logo"><a class="wikilink" href="<?=WikiURL(HOME_PAGE)?>" target="_top"><img src="<?= $WikiTheme->getImageURL('logo') ?>" id="logo-img" border="0" alt="<?= +<div class="portlet" id="p-logo"><a class="wikilink" href="<?=WikiURL(HOME_PAGE)?>"><img src="<?= $WikiTheme->getImageURL('logo') ?>" id="logo-img" alt="<?= fmt(_("%s: %s"), WIKI_NAME, HOME_PAGE) ?>" /></a></div> <div id="img-logo-right" /> Modified: trunk/themes/Portland/templates/debug.tmpl =================================================================== --- trunk/themes/Portland/templates/debug.tmpl 2010-06-26 15:00:16 UTC (rev 7578) +++ trunk/themes/Portland/templates/debug.tmpl 2010-06-26 18:15:25 UTC (rev 7579) @@ -4,8 +4,8 @@ <?php global $RUNTIMER; ?> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td> -<div id="xhtml-validator"><a href="http://validator.w3.org/check/referer" target="_top">Valid XHTML 1.0</a> -<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_top">Valid CSS</a> +<div id="xhtml-validator"><a href="http://validator.w3.org/check/referer">Valid XHTML 1.0</a> +<a href="http://jigsaw.w3.org/css-validator/check/referer">Valid CSS</a> </div> </td><td> <span class="debug"><?=fmt("Page Execution took %s seconds", $RUNTIMER->getStats())?></span> Modified: trunk/themes/Portland/themeinfo.php =================================================================== --- trunk/themes/Portland/themeinfo.php 2010-06-26 15:00:16 UTC (rev 7578) +++ trunk/themes/Portland/themeinfo.php 2010-06-26 18:15:25 UTC (rev 7579) @@ -37,8 +37,6 @@ $link->unshiftContent(HTML::u($this->maybeSplitWikiWord($default_text))); $link->setAttr('class', 'wikiunknown'); } - if ($request->getArg('frame')) - $link->setAttr('target', '_top'); return $link; } Modified: trunk/themes/Sidebar/templates/debug.tmpl =================================================================== --- trunk/themes/Sidebar/templates/debug.tmpl 2010-06-26 15:00:16 UTC (rev 7578) +++ trunk/themes/Sidebar/templates/debug.tmpl 2010-06-26 18:15:25 UTC (rev 7579) @@ -5,12 +5,12 @@ <table width="%100" border="0" cellpadding="0" cellspacing="0"> <tr><td> <?php /* Note: The Portland theme's debug.tmpl overrides this file with it's own non-graphical variant. */ ?> -<div id="xhtml-validator"><a href="http://validator.w3.org/check/referer" target="_top"><img - id="xhtml" border="0" +<div id="xhtml-validator"><a href="http://validator.w3.org/check/referer"><img + id="xhtml" src="<?=$WikiTheme->_findData('buttons/valid-xhtml10.png')?>" alt="Valid XHTML 1.0!" height="31" width="88" /></a> -<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_top"><img - id="css" border="0" +<a href="http://jigsaw.w3.org/css-validator/check/referer"><img + id="css" src="<?=$WikiTheme->_findData('buttons/vcss.png')?>" alt="Valid CSS!" height="31" width="88" /></a> </div> Modified: trunk/themes/Sidebar/templates/logo.tmpl =================================================================== --- trunk/themes/Sidebar/templates/logo.tmpl 2010-06-26 15:00:16 UTC (rev 7578) +++ trunk/themes/Sidebar/templates/logo.tmpl 2010-06-26 18:15:25 UTC (rev 7579) @@ -1,5 +1,5 @@ <?php // -*-php-*- // rcs_id('$Id$'); ?> -<div class="portlet" id="p-logo"><a class="wikilink" href="<?=WikiURL(HOME_PAGE)?>" target="_top" title="Visit the Home Page [<?= $WikiTheme->tooltipAccessKeyPrefix() ?>-z]" accesskey="z"><span class="logo"><?= WIKI_NAME ?></span></a></div> -<img id="img-logo-right" src="<?= $WikiTheme->_findData('images/wiki_stamp.png')?>" alt="This is a WIKI! Edit every page" align="right" height="86" width="86" border="0" /> +<div class="portlet" id="p-logo"><a class="wikilink" href="<?=WikiURL(HOME_PAGE)?>" title="Visit the Home Page [<?= $WikiTheme->tooltipAccessKeyPrefix() ?>-z]" accesskey="z"><span class="logo"><?= WIKI_NAME ?></span></a></div> +<img id="img-logo-right" src="<?= $WikiTheme->_findData('images/wiki_stamp.png')?>" alt="This is a WIKI! Edit every page" align="right" height="86" width="86" /> Modified: trunk/themes/blog/templates/debug.tmpl =================================================================== --- trunk/themes/blog/templates/debug.tmpl 2010-06-26 15:00:16 UTC (rev 7578) +++ trunk/themes/blog/templates/debug.tmpl 2010-06-26 18:15:25 UTC (rev 7579) @@ -2,6 +2,6 @@ // rcs_id('$Id$'); ?> <?php global $RUNTIMER; ?> -<p align="center" id="xhtml-validator"><a href="http://validator.w3.org/check/referer" target="_top">Valid XHTML 1.0</a> <a href="http://jigsaw.w3.org/css-validator/check/referer" target="_top">Valid CSS!</a> +<p align="center" id="xhtml-validator"><a href="http://validator.w3.org/check/referer">Valid XHTML 1.0</a> <a href="http://jigsaw.w3.org/css-validator/check/referer">Valid CSS!</a> <span class="debug"><?=fmt("Page Execution took %s seconds", $RUNTIMER->getStats())?></span> </p> Modified: trunk/themes/blog/themeinfo.php =================================================================== --- trunk/themes/blog/themeinfo.php 2010-06-26 15:00:16 UTC (rev 7578) +++ trunk/themes/blog/themeinfo.php 2010-06-26 18:15:25 UTC (rev 7579) @@ -115,8 +115,6 @@ $link->pushContent($this->maybeSplitWikiWord($default_text)); $link->setAttr('class', 'wiki'); } - if ($request->getArg('frame')) - $link->setAttr('target', '_top'); return $link; } Modified: trunk/themes/shamino_com/templates/debug.tmpl =================================================================== --- trunk/themes/shamino_com/templates/debug.tmpl 2010-06-26 15:00:16 UTC (rev 7578) +++ trunk/themes/shamino_com/templates/debug.tmpl 2010-06-26 18:15:25 UTC (rev 7579) @@ -4,7 +4,7 @@ <!-- shamino.com debug --> <div class="debug"> <?php global $RUNTIMER; ?> -<span id="xhtml-validator"><a class="wikilink" href="http://validator.w3.org/check/referer" target="_top">Valid XHTML 1.0</a> <a class="wikilink" href="http://jigsaw.w3.org/css-validator/check/referer" target="_top">Valid CSS</a> +<span id="xhtml-validator"><a class="wikilink" href="http://validator.w3.org/check/referer">Valid XHTML 1.0</a> <a class="wikilink" href="http://jigsaw.w3.org/css-validator/check/referer">Valid CSS</a> </span> <span><?=fmt("Page Execution took %s seconds", $RUNTIMER->getStats()) ?> <?php $mem = @getMemoryUsage(); if ($mem) { ?> Modified: trunk/themes/shamino_com/templates/top.tmpl =================================================================== --- trunk/themes/shamino_com/templates/top.tmpl 2010-06-26 15:00:16 UTC (rev 7578) +++ trunk/themes/shamino_com/templates/top.tmpl 2010-06-26 18:15:25 UTC (rev 7579) @@ -3,13 +3,13 @@ ?> <!-- The logo --> <div id="logo"><a class="wikilink" - href="<?=WikiURL(HOME_PAGE)?>" target="_top" + href="<?=WikiURL(HOME_PAGE)?>" ><img src="<?=$WikiTheme->getImageURL('logo')?>" id="logo-img" border="0" alt="<?=fmt(_("%s: %s"), WIKI_NAME, HOME_PAGE) ?>" align="right" /></a></div> <!-- The top navigation/search bar --> <div class="wikinavbar"> -<a class="wikilink" href="<?=WikiURL(HOME_PAGE)?>" target="_top"> +<a class="wikilink" href="<?=WikiURL(HOME_PAGE)?>"> <?= WIKI_NAME ?></a> - <!-- Wiki description here --> <!-- Page title --> Modified: trunk/themes/wikilens/templates/top.tmpl =================================================================== --- trunk/themes/wikilens/templates/top.tmpl 2010-06-26 15:00:16 UTC (rev 7578) +++ trunk/themes/wikilens/templates/top.tmpl 2010-06-26 18:15:25 UTC (rev 7579) @@ -6,7 +6,7 @@ <div id="logo" style="height: 51px; background-image: url(<?=$WikiTheme->getImageURL('splice')?>); background-repeat: repeat-x;" ><a class="wikilink" - href="<?=WikiURL(HOME_PAGE)?>" target="_top" + href="<?=WikiURL(HOME_PAGE)?>" ><img src="<?=$WikiTheme->getImageURL('logo')?>" id="logo-img" border="0" alt="<?=fmt(_("%s: %s"), WIKI_NAME, HOME_PAGE) ?>" align="right" /></a> </div> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-06-26 18:20:07
|
Revision: 7580 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7580&view=rev Author: vargenau Date: 2010-06-26 18:20:01 +0000 (Sat, 26 Jun 2010) Log Message: ----------- No target _top Modified Paths: -------------- trunk/themes/Wordpress/themeinfo.php trunk/themes/default/templates/debug.tmpl trunk/themes/default/templates/top.tmpl Modified: trunk/themes/Wordpress/themeinfo.php =================================================================== --- trunk/themes/Wordpress/themeinfo.php 2010-06-26 18:15:25 UTC (rev 7579) +++ trunk/themes/Wordpress/themeinfo.php 2010-06-26 18:20:01 UTC (rev 7580) @@ -39,9 +39,7 @@ $link->unshiftContent(HTML::u($this->maybeSplitWikiWord($default_text))); $link->setAttr('class', 'wikiunknown'); } - if ($request->getArg('frame')) - $link->setAttr('target', '_top'); - + return $link; } function getRecentChangesFormatter ($format) { Modified: trunk/themes/default/templates/debug.tmpl =================================================================== --- trunk/themes/default/templates/debug.tmpl 2010-06-26 18:15:25 UTC (rev 7579) +++ trunk/themes/default/templates/debug.tmpl 2010-06-26 18:20:01 UTC (rev 7580) @@ -5,12 +5,12 @@ <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td> <?php /* Note: The Portland theme's debug.tmpl overrides this file with it's own non-graphical variant. */ ?> -<div id="xhtml-validator"><a href="http://validator.w3.org/check/referer" target="_top"><img - id="xhtml" border="0" +<div id="xhtml-validator"><a href="http://validator.w3.org/check/referer"><img + id="xhtml" src="<?=$WikiTheme->_findData('buttons/valid-xhtml10.png')?>" alt="Valid XHTML 1.0!" height="31" width="88" /></a> -<a href="http://jigsaw.w3.org/css-validator/check/referer" target="_top"><img - id="css" border="0" +<a href="http://jigsaw.w3.org/css-validator/check/referer"><img + id="css" src="<?=$WikiTheme->_findData('buttons/vcss.png')?>" alt="Valid CSS!" height="31" width="88" /></a> </div> Modified: trunk/themes/default/templates/top.tmpl =================================================================== --- trunk/themes/default/templates/top.tmpl 2010-06-26 18:15:25 UTC (rev 7579) +++ trunk/themes/default/templates/top.tmpl 2010-06-26 18:20:01 UTC (rev 7580) @@ -6,7 +6,7 @@ ?> <!-- The logo --> <div id="logo"><a class="wikilink" - href="<?=WikiURL(HOME_PAGE)?>" target="_top" + href="<?=WikiURL(HOME_PAGE)?>" ><img src="<?=$WikiTheme->getImageURL('logo')?>" id="logo-img" border="0" alt="<?=fmt(_("%s: %s"), WIKI_NAME, HOME_PAGE) ?>" align="right" /></a></div> <!-- The top navigation/search bar --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-07-16 06:59:22
|
Revision: 7618 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7618&view=rev Author: vargenau Date: 2010-07-16 06:59:16 +0000 (Fri, 16 Jul 2010) Log Message: ----------- Patch 3022476 by S?\195?\169bastien Le Callonnec: Broken HTML when uploading pages Modified Paths: -------------- trunk/themes/Crao/templates/head.tmpl trunk/themes/default/templates/head.tmpl trunk/themes/wikilens/templates/head.tmpl Modified: trunk/themes/Crao/templates/head.tmpl =================================================================== --- trunk/themes/Crao/templates/head.tmpl 2010-07-15 19:22:14 UTC (rev 7617) +++ trunk/themes/Crao/templates/head.tmpl 2010-07-16 06:59:16 UTC (rev 7618) @@ -110,7 +110,7 @@ $pagetitle = " - ". AsString($TITLE); ?> <title><?php echo WIKI_NAME.$pagetitle?></title> -<meta property="og:title" content="<?php echo $TITLE ?>"/> +<meta property="og:title" content="<?php echo strip_tags($TITLE) ?>"/> <meta property="og:site_name" content="<?php echo WIKI_NAME ?>"/> <?php echo $WikiTheme->getMoreHeaders() ?> </head> Modified: trunk/themes/default/templates/head.tmpl =================================================================== --- trunk/themes/default/templates/head.tmpl 2010-07-15 19:22:14 UTC (rev 7617) +++ trunk/themes/default/templates/head.tmpl 2010-07-16 06:59:16 UTC (rev 7618) @@ -117,7 +117,7 @@ $pagetitle = " - ". AsString($TITLE); ?> <title><?php echo WIKI_NAME.$pagetitle ?></title> -<meta property="og:title" content="<?php echo $TITLE ?>"/> +<meta property="og:title" content="<?php echo strip_tags($TITLE) ?>"/> <meta property="og:site_name" content="<?php echo WIKI_NAME ?>"/> <?php echo $WikiTheme->getMoreHeaders() ?> </head> Modified: trunk/themes/wikilens/templates/head.tmpl =================================================================== --- trunk/themes/wikilens/templates/head.tmpl 2010-07-15 19:22:14 UTC (rev 7617) +++ trunk/themes/wikilens/templates/head.tmpl 2010-07-16 06:59:16 UTC (rev 7618) @@ -110,7 +110,7 @@ $pagetitle = " - ". AsString($TITLE); ?> <title><?php echo WIKI_NAME.$pagetitle ?></title> -<meta property="og:title" content="<?php echo $TITLE ?>"/> +<meta property="og:title" content="<?php echo strip_tags($TITLE) ?>"/> <meta property="og:site_name" content="<?php echo WIKI_NAME ?>"/> <?php require_once("lib/plugin/RateIt.php"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-08-31 16:08:48
|
Revision: 7660 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7660&view=rev Author: vargenau Date: 2010-08-31 15:03:30 +0000 (Tue, 31 Aug 2010) Log Message: ----------- Rename gforge theme as fusionforge Added Paths: ----------- trunk/themes/fusionforge/ Removed Paths: ------------- trunk/themes/gforge/ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-09-03 08:45:52
|
Revision: 7672 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7672&view=rev Author: vargenau Date: 2010-09-03 08:45:45 +0000 (Fri, 03 Sep 2010) Log Message: ----------- A user can lock its own page Modified Paths: -------------- trunk/themes/MonoBook/templates/viewsource.tmpl trunk/themes/Portland/templates/viewsource.tmpl trunk/themes/Wordpress/templates/viewsource.tmpl trunk/themes/blog/templates/viewsource.tmpl trunk/themes/default/templates/viewsource.tmpl Modified: trunk/themes/MonoBook/templates/viewsource.tmpl =================================================================== --- trunk/themes/MonoBook/templates/viewsource.tmpl 2010-09-02 20:07:31 UTC (rev 7671) +++ trunk/themes/MonoBook/templates/viewsource.tmpl 2010-09-03 08:45:45 UTC (rev 7672) @@ -3,7 +3,7 @@ ?> <?php if ($page->get('locked') && !$user->isAdmin()) { ?> <p><strong><?php echo _("Note:")?></strong> - <?php echo _("This page has been locked by the administrator and cannot be edited.")?> + <?php echo _("This page has been locked and cannot be edited.")?> </p> <?php } ?> <?php if ($revision and !$revision->isCurrent()) { ?> Modified: trunk/themes/Portland/templates/viewsource.tmpl =================================================================== --- trunk/themes/Portland/templates/viewsource.tmpl 2010-09-02 20:07:31 UTC (rev 7671) +++ trunk/themes/Portland/templates/viewsource.tmpl 2010-09-03 08:45:45 UTC (rev 7672) @@ -4,7 +4,7 @@ <?php if ($page->get('locked') && !$user->isAdmin()) { ?> <p><strong><?php echo _("Note:")?></strong> - <?php echo _("This page has been locked by the administrator and cannot be edited.")?></p> + <?php echo _("This page has been locked and cannot be edited.")?></p> <?php } ?> <?php if ($revision and !$revision->isCurrent()) { ?> Modified: trunk/themes/Wordpress/templates/viewsource.tmpl =================================================================== --- trunk/themes/Wordpress/templates/viewsource.tmpl 2010-09-02 20:07:31 UTC (rev 7671) +++ trunk/themes/Wordpress/templates/viewsource.tmpl 2010-09-03 08:45:45 UTC (rev 7672) @@ -8,7 +8,7 @@ if (empty($revision)) $revision = $page->getCurrentRevision(false); if ($page->get('locked') && !$user->isAdmin()) { ?> <p><strong><?php echo _("Note:")?></strong> - <?php echo _("This page has been locked by the administrator and cannot be edited.")?></p> + <?php echo _("This page has been locked and cannot be edited.")?></p> <?php } ?> <?php if (! $revision->isCurrent()) { ?> Modified: trunk/themes/blog/templates/viewsource.tmpl =================================================================== --- trunk/themes/blog/templates/viewsource.tmpl 2010-09-02 20:07:31 UTC (rev 7671) +++ trunk/themes/blog/templates/viewsource.tmpl 2010-09-03 08:45:45 UTC (rev 7672) @@ -5,7 +5,7 @@ if (empty($revision)) $revision = $page->getCurrentRevision(false); if ($page->get('locked') && !$user->isAdmin()) { ?> <p><strong><?php echo _("Note:")?></strong> - <?php echo _("This page has been locked by the administrator and cannot be edited.")?> + <?php echo _("This page has been locked and cannot be edited.")?> </p> <?php } ?> <?php if (! $revision->isCurrent()) { ?> Modified: trunk/themes/default/templates/viewsource.tmpl =================================================================== --- trunk/themes/default/templates/viewsource.tmpl 2010-09-02 20:07:31 UTC (rev 7671) +++ trunk/themes/default/templates/viewsource.tmpl 2010-09-03 08:45:45 UTC (rev 7672) @@ -4,7 +4,7 @@ <?php if ($page->get('locked') && !$user->isAdmin()) { ?> <p><strong><?php echo _("Note:")?></strong> - <?php echo _("This page has been locked by the administrator and cannot be edited.")?> + <?php echo _("This page has been locked and cannot be edited.")?> </p> <?php } ?> <?php if ($revision and !$revision->isCurrent()) { ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-09-03 08:58:52
|
Revision: 7673 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7673&view=rev Author: vargenau Date: 2010-09-03 08:58:45 +0000 (Fri, 03 Sep 2010) Log Message: ----------- Remove NS4 stuff Modified Paths: -------------- trunk/themes/MonoBook/templates/viewsource.tmpl trunk/themes/Portland/templates/viewsource.tmpl trunk/themes/Wordpress/templates/viewsource.tmpl trunk/themes/blog/templates/viewsource.tmpl trunk/themes/default/templates/viewsource.tmpl Modified: trunk/themes/MonoBook/templates/viewsource.tmpl =================================================================== --- trunk/themes/MonoBook/templates/viewsource.tmpl 2010-09-03 08:45:45 UTC (rev 7672) +++ trunk/themes/MonoBook/templates/viewsource.tmpl 2010-09-03 08:58:45 UTC (rev 7673) @@ -11,14 +11,9 @@ <?php echo Button('edit', _("View the current version"), $page) ?>. </p> <?php } ?> -<!-- Dummy form else NS4 does not like the textarea --> -<form method="post" action="<?php echo $request->getPostURL()?>" accept-charset="<?php echo CHARSET?>"> -<?php /* To clear beyond a larger logo, such as in the Hawaiian theme */ ?> <br class="clear-floats" /> <textarea class="wikiedit" name="content" rows="<?php echo $request->getPref('editHeight')?>" cols="<?php echo $request->getPref('editWidth')?>" readonly="readonly"><?php echo $PAGE_SOURCE ?></textarea> -<?php echo $HIDDEN_INPUTS?> -</form> Modified: trunk/themes/Portland/templates/viewsource.tmpl =================================================================== --- trunk/themes/Portland/templates/viewsource.tmpl 2010-09-03 08:45:45 UTC (rev 7672) +++ trunk/themes/Portland/templates/viewsource.tmpl 2010-09-03 08:58:45 UTC (rev 7673) @@ -11,17 +11,12 @@ <p><?php echo _("You are viewing an old revision of this page.")?> <?php echo Button('viewsource', _("View the current version"), $page)?>.</p> <?php } ?> - -<!-- Dummy form else NS4 does not like the textarea --> -<form method="post" action="<?php echo $request->getPostURL()?>" accept-charset="<?php echo CHARSET?>"> <textarea class="wikiedit" name="content" rows="<?php echo $request->getPref('editHeight')?>" cols="<?php echo $request->getPref('editWidth')?>" readonly="readonly" ><?php echo $PAGE_SOURCE ?></textarea> -<?php echo HiddenInputs($request->getArgs()) ?> -</form> <hr /> <a href="<?php echo WikiURL($page,array('action'=>_("PageHistory")))?>" ><?php echo $WikiTheme->getLastModifiedMessage($revision) ?></a> Modified: trunk/themes/Wordpress/templates/viewsource.tmpl =================================================================== --- trunk/themes/Wordpress/templates/viewsource.tmpl 2010-09-03 08:45:45 UTC (rev 7672) +++ trunk/themes/Wordpress/templates/viewsource.tmpl 2010-09-03 08:58:45 UTC (rev 7673) @@ -16,16 +16,12 @@ <?php echo Button('viewsource', _("View the current version"), $page)?>.</p> <?php } ?> -<!-- Dummy form else NS4 does not like the textarea --> -<form method="post" action="<?php echo $request->getPostURL()?>" accept-charset="<?php echo CHARSET?>"> <textarea class="wikiedit" name="content" rows="<?php echo $request->getPref('editHeight')?>" cols="<?php echo $request->getPref('editWidth')?>" readonly="readonly" ><?php echo $PAGE_SOURCE ?></textarea> -<?php echo HiddenInputs($request->getArgs()) ?> -</form> <hr /> <a href="<?php echo WikiURL($page,array('action'=>_("PageHistory")))?>" ><?php echo $WikiTheme->getLastModifiedMessage($revision) ?></a> Modified: trunk/themes/blog/templates/viewsource.tmpl =================================================================== --- trunk/themes/blog/templates/viewsource.tmpl 2010-09-03 08:45:45 UTC (rev 7672) +++ trunk/themes/blog/templates/viewsource.tmpl 2010-09-03 08:58:45 UTC (rev 7673) @@ -13,9 +13,6 @@ <?php echo Button('edit', _("View the current version"), $page) ?>. </p> <?php } ?> -<!-- Dummy form else NS4 does not like the textarea --> -<form method="post" id="editcontent" - action="<?php echo $request->getPostURL()?>" accept-charset="<?php echo CHARSET?>"> <br class="clear-floats" /> <textarea class="wikiedit" name="content" @@ -23,5 +20,3 @@ cols="<?php echo $request->getPref('editWidth')?>" readonly="readonly" ><?php echo $PAGE_SOURCE ?></textarea> -<?php echo $HIDDEN_INPUTS?> -</form> Modified: trunk/themes/default/templates/viewsource.tmpl =================================================================== --- trunk/themes/default/templates/viewsource.tmpl 2010-09-03 08:45:45 UTC (rev 7672) +++ trunk/themes/default/templates/viewsource.tmpl 2010-09-03 08:58:45 UTC (rev 7673) @@ -12,9 +12,6 @@ <?php echo Button('edit', _("View the current version"), $page) ?>. </p> <?php } ?> -<!-- Dummy form else NS4 does not like the textarea --> -<form method="post" action="<?php echo $request->getPostURL()?>" accept-charset="<?php echo CHARSET?>"> -<?php /* To clear beyond a larger logo, such as in the Hawaiian theme */ ?> <br class="clear-floats" /> <textarea class="wikiedit" name="content" @@ -22,8 +19,6 @@ cols="<?php echo $request->getPref('editWidth')?>" readonly="readonly" ><?php echo $PAGE_SOURCE ?></textarea> -<?php echo $HIDDEN_INPUTS?> -</form> <div id="footer"><!-- for top & bottom toolbars stylesheet --> <?php echo Template('browse-footer')?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-09-03 13:08:09
|
Revision: 7675 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7675&view=rev Author: vargenau Date: 2010-09-03 13:08:03 +0000 (Fri, 03 Sep 2010) Log Message: ----------- Add class="warning_msg" Modified Paths: -------------- trunk/themes/Crao/templates/editpage.tmpl trunk/themes/MonoBook/templates/viewsource.tmpl trunk/themes/Portland/templates/editpage.tmpl trunk/themes/Portland/templates/viewsource.tmpl trunk/themes/Wordpress/templates/viewsource.tmpl trunk/themes/blog/templates/viewsource.tmpl trunk/themes/default/templates/editpage.tmpl trunk/themes/default/templates/viewsource.tmpl trunk/themes/fusionforge/templates/editpage.tmpl Modified: trunk/themes/Crao/templates/editpage.tmpl =================================================================== --- trunk/themes/Crao/templates/editpage.tmpl 2010-09-03 13:01:27 UTC (rev 7674) +++ trunk/themes/Crao/templates/editpage.tmpl 2010-09-03 13:08:03 UTC (rev 7675) @@ -16,7 +16,7 @@ <?php echo $PAGE_LOCKED_MESSAGE ?> <?php echo $CONCURRENT_UPDATE_MESSAGE ?> <?php if (! $IS_CURRENT) { ?> - <p><strong><?php echo _("Warning: You are editing an old revision.")?> + <p class="warning_msg"><strong><?php echo _("Warning: You are editing an old revision.")?> <?php echo _("Saving this page will overwrite the current version.")?></strong></p> <?php } ?> <?php /* Modified: trunk/themes/MonoBook/templates/viewsource.tmpl =================================================================== --- trunk/themes/MonoBook/templates/viewsource.tmpl 2010-09-03 13:01:27 UTC (rev 7674) +++ trunk/themes/MonoBook/templates/viewsource.tmpl 2010-09-03 13:08:03 UTC (rev 7675) @@ -2,18 +2,19 @@ // rcs_id('$Id$'); ?> <?php if ($page->get('locked') && !$user->isAdmin()) { ?> - <p><strong><?php echo _("Note:")?></strong> + <p class="warning_msg"><strong><?php echo _("Note:")?></strong> <?php echo _("This page has been locked and cannot be edited.")?> </p> - <?php } ?> +<?php } ?> <?php if ($revision and !$revision->isCurrent()) { ?> - <p><?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('edit', _("View the current version"), $page) ?>. + <p class="warning_msg"><?php echo _("You are viewing an old revision of this page.")?> + <?php echo Button('edit', _("View the current version."), $page) ?> </p> - <?php } ?> +<?php } ?> <br class="clear-floats" /> <textarea class="wikiedit" -name="content" -rows="<?php echo $request->getPref('editHeight')?>" -cols="<?php echo $request->getPref('editWidth')?>" -readonly="readonly"><?php echo $PAGE_SOURCE ?></textarea> + name="content" + rows="<?php echo $request->getPref('editHeight')?>" + cols="<?php echo $request->getPref('editWidth')?>" + readonly="readonly" +><?php echo $PAGE_SOURCE ?></textarea> Modified: trunk/themes/Portland/templates/editpage.tmpl =================================================================== --- trunk/themes/Portland/templates/editpage.tmpl 2010-09-03 13:01:27 UTC (rev 7674) +++ trunk/themes/Portland/templates/editpage.tmpl 2010-09-03 13:08:03 UTC (rev 7675) @@ -20,7 +20,7 @@ <?php echo $PAGE_LOCKED_MESSAGE ?> <?php echo $CONCURRENT_UPDATE_MESSAGE ?> <?php if (!$IS_CURRENT) { ?> - <p><strong><?php echo _("Warning: You are editing an old revision.")?> + <p class="warning_msg"><strong><?php echo _("Warning: You are editing an old revision.")?> <?php echo _("Saving this page will overwrite the current version.")?></strong></p> <?php } ?> </td> Modified: trunk/themes/Portland/templates/viewsource.tmpl =================================================================== --- trunk/themes/Portland/templates/viewsource.tmpl 2010-09-03 13:01:27 UTC (rev 7674) +++ trunk/themes/Portland/templates/viewsource.tmpl 2010-09-03 13:08:03 UTC (rev 7675) @@ -1,23 +1,21 @@ <?php // -*-php-*- // rcs_id('$Id$'); ?> - <?php if ($page->get('locked') && !$user->isAdmin()) { ?> - <p><strong><?php echo _("Note:")?></strong> + <p class="warning_msg"><strong><?php echo _("Note:")?></strong> <?php echo _("This page has been locked and cannot be edited.")?></p> <?php } ?> - <?php if ($revision and !$revision->isCurrent()) { ?> - <p><?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('viewsource', _("View the current version"), $page)?>.</p> + <p class="warning_msg"><?php echo _("You are viewing an old revision of this page.")?> + <?php echo Button('viewsource', _("View the current version."), $page)?></p> <?php } ?> <textarea class="wikiedit" name="content" rows="<?php echo $request->getPref('editHeight')?>" cols="<?php echo $request->getPref('editWidth')?>" - readonly="readonly" - ><?php echo $PAGE_SOURCE ?></textarea> + readonly="readonly" +><?php echo $PAGE_SOURCE ?></textarea> <hr /> -<a href="<?php echo WikiURL($page,array('action'=>_("PageHistory")))?>" - ><?php echo $WikiTheme->getLastModifiedMessage($revision) ?></a> +<a href="<?php echo WikiURL($page,array('action'=>_("PageHistory")))?>"> +<?php echo $WikiTheme->getLastModifiedMessage($revision) ?></a> <br /> Modified: trunk/themes/Wordpress/templates/viewsource.tmpl =================================================================== --- trunk/themes/Wordpress/templates/viewsource.tmpl 2010-09-03 13:01:27 UTC (rev 7674) +++ trunk/themes/Wordpress/templates/viewsource.tmpl 2010-09-03 13:08:03 UTC (rev 7675) @@ -7,21 +7,19 @@ <?php if (empty($revision)) $revision = $page->getCurrentRevision(false); if ($page->get('locked') && !$user->isAdmin()) { ?> - <p><strong><?php echo _("Note:")?></strong> + <p class="warning_msg"><strong><?php echo _("Note:")?></strong> <?php echo _("This page has been locked and cannot be edited.")?></p> <?php } ?> - <?php if (! $revision->isCurrent()) { ?> - <p><?php echo _("You are viewing an old revision of this page.")?> + <p class="warning_msg"><?php echo _("You are viewing an old revision of this page.")?> <?php echo Button('viewsource', _("View the current version"), $page)?>.</p> <?php } ?> - <textarea class="wikiedit" name="content" rows="<?php echo $request->getPref('editHeight')?>" cols="<?php echo $request->getPref('editWidth')?>" - readonly="readonly" - ><?php echo $PAGE_SOURCE ?></textarea> + readonly="readonly" +><?php echo $PAGE_SOURCE ?></textarea> <hr /> <a href="<?php echo WikiURL($page,array('action'=>_("PageHistory")))?>" ><?php echo $WikiTheme->getLastModifiedMessage($revision) ?></a> Modified: trunk/themes/blog/templates/viewsource.tmpl =================================================================== --- trunk/themes/blog/templates/viewsource.tmpl 2010-09-03 13:01:27 UTC (rev 7674) +++ trunk/themes/blog/templates/viewsource.tmpl 2010-09-03 13:08:03 UTC (rev 7675) @@ -4,19 +4,19 @@ <?php if (empty($revision)) $revision = $page->getCurrentRevision(false); if ($page->get('locked') && !$user->isAdmin()) { ?> - <p><strong><?php echo _("Note:")?></strong> + <p class="warning_msg"><strong><?php echo _("Note:")?></strong> <?php echo _("This page has been locked and cannot be edited.")?> </p> - <?php } ?> +<?php } ?> <?php if (! $revision->isCurrent()) { ?> - <p><?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('edit', _("View the current version"), $page) ?>. + <p class="warning_msg"><?php echo _("You are viewing an old revision of this page.")?> + <?php echo Button('edit', _("View the current version."), $page) ?> </p> - <?php } ?> +<?php } ?> <br class="clear-floats" /> <textarea class="wikiedit" -name="content" -rows="<?php echo $request->getPref('editHeight')?>" -cols="<?php echo $request->getPref('editWidth')?>" -readonly="readonly" + name="content" + rows="<?php echo $request->getPref('editHeight')?>" + cols="<?php echo $request->getPref('editWidth')?>" + readonly="readonly" ><?php echo $PAGE_SOURCE ?></textarea> Modified: trunk/themes/default/templates/editpage.tmpl =================================================================== --- trunk/themes/default/templates/editpage.tmpl 2010-09-03 13:01:27 UTC (rev 7674) +++ trunk/themes/default/templates/editpage.tmpl 2010-09-03 13:08:03 UTC (rev 7675) @@ -18,7 +18,7 @@ <?php echo $CONCURRENT_UPDATE_MESSAGE ?> <?php if (! $IS_CURRENT) { ?> - <p><strong><?php echo _("Warning: You are editing an old revision.")?> + <p class="warning_msg"><strong><?php echo _("Warning: You are editing an old revision.")?> <?php echo _("Saving this page will overwrite the current version.")?></strong></p> <?php } ?> <?php /* Modified: trunk/themes/default/templates/viewsource.tmpl =================================================================== --- trunk/themes/default/templates/viewsource.tmpl 2010-09-03 13:01:27 UTC (rev 7674) +++ trunk/themes/default/templates/viewsource.tmpl 2010-09-03 13:08:03 UTC (rev 7675) @@ -3,21 +3,21 @@ ?> <?php if ($page->get('locked') && !$user->isAdmin()) { ?> - <p><strong><?php echo _("Note:")?></strong> + <p class="warning_msg"><strong><?php echo _("Note:")?></strong> <?php echo _("This page has been locked and cannot be edited.")?> </p> - <?php } ?> +<?php } ?> <?php if ($revision and !$revision->isCurrent()) { ?> - <p><?php echo _("You are viewing an old revision of this page.")?> - <?php echo Button('edit', _("View the current version"), $page) ?>. + <p class="warning_msg"><?php echo _("You are viewing an old revision of this page.")?> + <?php echo Button('edit', _("View the current version."), $page) ?> </p> - <?php } ?> +<?php } ?> <br class="clear-floats" /> <textarea class="wikiedit" -name="content" -rows="<?php echo $request->getPref('editHeight')?>" -cols="<?php echo $request->getPref('editWidth')?>" -readonly="readonly" + name="content" + rows="<?php echo $request->getPref('editHeight')?>" + cols="<?php echo $request->getPref('editWidth')?>" + readonly="readonly" ><?php echo $PAGE_SOURCE ?></textarea> <div id="footer"><!-- for top & bottom toolbars stylesheet --> Modified: trunk/themes/fusionforge/templates/editpage.tmpl =================================================================== --- trunk/themes/fusionforge/templates/editpage.tmpl 2010-09-03 13:01:27 UTC (rev 7674) +++ trunk/themes/fusionforge/templates/editpage.tmpl 2010-09-03 13:08:03 UTC (rev 7675) @@ -13,7 +13,7 @@ <?php echo $CONCURRENT_UPDATE_MESSAGE ?> <?php if (! $IS_CURRENT) { ?> - <p><strong><?php echo _("Warning: You are editing an old revision.")?> + <p class="warning_msg"><strong><?php echo _("Warning: You are editing an old revision.")?> <?php echo _("Saving this page will overwrite the current version.")?></strong></p> <?php } ?> <?php /* This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-12-20 13:18:15
|
Revision: 7789 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7789&view=rev Author: vargenau Date: 2010-12-20 13:18:08 +0000 (Mon, 20 Dec 2010) Log Message: ----------- No h4 for errors Modified Paths: -------------- trunk/themes/Crao/crao.css trunk/themes/Hawaiian/Hawaiian.css trunk/themes/MacOSX/MacOSX.css trunk/themes/MonoBook/main.css trunk/themes/Sidebar/sidebar.css trunk/themes/SpaceWiki/SpaceWiki.css trunk/themes/Wordpress/Wordpress.css trunk/themes/default/phpwiki-modern.css trunk/themes/default/phpwiki-printer.css trunk/themes/default/phpwiki.css Modified: trunk/themes/Crao/crao.css =================================================================== --- trunk/themes/Crao/crao.css 2010-12-20 12:47:06 UTC (rev 7788) +++ trunk/themes/Crao/crao.css 2010-12-20 13:18:08 UTC (rev 7789) @@ -1091,7 +1091,7 @@ border: medium solid red; clear: both; } -.errors h4 { +.errors { color: red; margin: 0; padding: 0; Modified: trunk/themes/Hawaiian/Hawaiian.css =================================================================== --- trunk/themes/Hawaiian/Hawaiian.css 2010-12-20 12:47:06 UTC (rev 7788) +++ trunk/themes/Hawaiian/Hawaiian.css 2010-12-20 13:18:08 UTC (rev 7789) @@ -396,7 +396,7 @@ font-size: smaller; clear: both; } -.errors h4 { +.errors { color: #87785c; margin: 0; padding: 0; Modified: trunk/themes/MacOSX/MacOSX.css =================================================================== --- trunk/themes/MacOSX/MacOSX.css 2010-12-20 12:47:06 UTC (rev 7788) +++ trunk/themes/MacOSX/MacOSX.css 2010-12-20 13:18:08 UTC (rev 7789) @@ -137,7 +137,7 @@ font-size: smaller; } -.errors h4 { +.errors { color: black; text-decoration: underline; font-family: "Lucida Grande", Helvetica, Arial, sans-serif; Modified: trunk/themes/MonoBook/main.css =================================================================== --- trunk/themes/MonoBook/main.css 2010-12-20 12:47:06 UTC (rev 7788) +++ trunk/themes/MonoBook/main.css 2010-12-20 13:18:08 UTC (rev 7789) @@ -1667,7 +1667,7 @@ border: medium solid red; clear: both; } -h4.errors { +.errors { color: red; margin: 0; padding: 0; Modified: trunk/themes/Sidebar/sidebar.css =================================================================== --- trunk/themes/Sidebar/sidebar.css 2010-12-20 12:47:06 UTC (rev 7788) +++ trunk/themes/Sidebar/sidebar.css 2010-12-20 13:18:08 UTC (rev 7789) @@ -1734,7 +1734,7 @@ border: medium solid red; clear: both; } -h4.errors { +.errors { color: red; margin: 0; padding: 0; Modified: trunk/themes/SpaceWiki/SpaceWiki.css =================================================================== --- trunk/themes/SpaceWiki/SpaceWiki.css 2010-12-20 12:47:06 UTC (rev 7788) +++ trunk/themes/SpaceWiki/SpaceWiki.css 2010-12-20 13:18:08 UTC (rev 7789) @@ -551,7 +551,7 @@ border: medium solid red; clear: both; } -.errors h4 { +.errors { color: black; background: red; text-decoration: underline; @@ -813,7 +813,7 @@ margin-bottom: 2ex; padding: 0.5ex 0.25em; } -.errors h4 { +.errors { margin: 0; padding: 0.5ex 0.25em; } Modified: trunk/themes/Wordpress/Wordpress.css =================================================================== --- trunk/themes/Wordpress/Wordpress.css 2010-12-20 12:47:06 UTC (rev 7788) +++ trunk/themes/Wordpress/Wordpress.css 2010-12-20 13:18:08 UTC (rev 7789) @@ -577,7 +577,7 @@ border: medium solid red; clear: both; } -h4.errors { +.errors { color: red; margin: 0; padding: 0; Modified: trunk/themes/default/phpwiki-modern.css =================================================================== --- trunk/themes/default/phpwiki-modern.css 2010-12-20 12:47:06 UTC (rev 7788) +++ trunk/themes/default/phpwiki-modern.css 2010-12-20 13:18:08 UTC (rev 7789) @@ -430,7 +430,7 @@ font-size: smaller; border: thin dashed red; } -.errors h4 { +.errors { color: red; background: inherit; margin: 0; Modified: trunk/themes/default/phpwiki-printer.css =================================================================== --- trunk/themes/default/phpwiki-printer.css 2010-12-20 12:47:06 UTC (rev 7788) +++ trunk/themes/default/phpwiki-printer.css 2010-12-20 13:18:08 UTC (rev 7789) @@ -268,7 +268,7 @@ display: none; */ } -.errors h4 { +.errors { margin: 0; padding: 0; text-decoration: underline; Modified: trunk/themes/default/phpwiki.css =================================================================== --- trunk/themes/default/phpwiki.css 2010-12-20 12:47:06 UTC (rev 7788) +++ trunk/themes/default/phpwiki.css 2010-12-20 13:18:08 UTC (rev 7789) @@ -598,7 +598,7 @@ border: medium solid red; clear: both; } -h4.errors { +.errors { color: red; margin: 0; padding: 0; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2010-12-20 13:25:50
|
Revision: 7790 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7790&view=rev Author: vargenau Date: 2010-12-20 13:25:42 +0000 (Mon, 20 Dec 2010) Log Message: ----------- Compress CSS Modified Paths: -------------- trunk/themes/Crao/crao-min.css trunk/themes/Hawaiian/Hawaiian-min.css trunk/themes/MacOSX/MacOSX-min.css trunk/themes/MonoBook/main-min.css trunk/themes/Sidebar/sidebar-min.css trunk/themes/SpaceWiki/SpaceWiki-min.css trunk/themes/Wordpress/Wordpress-min.css trunk/themes/default/phpwiki-min.css trunk/themes/default/phpwiki-modern-min.css trunk/themes/default/phpwiki-printer-min.css Modified: trunk/themes/Crao/crao-min.css =================================================================== --- trunk/themes/Crao/crao-min.css 2010-12-20 13:18:08 UTC (rev 7789) +++ trunk/themes/Crao/crao-min.css 2010-12-20 13:25:42 UTC (rev 7790) @@ -1 +1 @@ -body{background-color:#ccc;font-family:Helvetica,Verdana,Arial,sans-serif;font-size:12px;line-height:14px;margin:0;padding:0;border:0 none;color:#000;text-align:left;}img{border:0;vertical-align:middle;}table{border-spacing:0;empty-cells:show;}a:link,a{color:#33c;text-decoration:underline;background-color:transparent;}a:visited{color:#33c;text-decoration:underline;background-color:transparent;}a:hover{color:#03f;text-decoration:underline;background-color:transparent;}hr{background-color:#ccc;height:1px;border:1px solid #ccc;}div.wikitext pre{font-family:monospace;}p{font-size:1em;margin:0;margin-bottom:1em;}ul{position:relative;padding:0;margin:0;font-family:Helvetica,Verdana,Arial,sans-serif;font-size:100%;line-height:120%;list-style:inside;background-color:transparent;}ul ul{position:relative;font-family:Helvetica,Verdana,Arial,sans-serif;font-size:100%;margin-left:2em;}li.rc-major{list-style:none;display:block;background-color:#fff;margin:6px 0;border:1px #666 dashed;padding:.5ex;}li.evenrow{border:0;padding:1ex;}li.oddrow{border:0;padding:1ex;}li strong{font-weight:normal;background-color:transparent;}strong.wiki-summary{display:block;padding:5px 0;background-color:transparent;}li a.wiki-rc-action{display:inline;}li a.wiki-rc-action{border:0;}li.rc-major a.wiki{font-size:1.2em;font-weight:bold;}li>p{display:inline;}p.wiki-rc-action{text-align:center;vertical-align:middle;padding:5px 5px 5px 5px;border:1px #000 solid;background-color:transparent;}p a.wiki-rc-action{display:inline;padding:0 10px;font-weight:bold;background-color:transparent;}#header{background-color:#333;}#logo{color:#ccc;display:inline;margin-top:0;margin-left:0;height:50px;width:auto;background-color:transparent;font:bolder 67px/50px Verdana,Arial,Helvetica,sans-serif;letter-spacing:-0.1em;}#logo img{border:0;}#logo a{color:#ccc;font:bolder 67px/50px Arial,Verdana,Helvetica,sans-serif;text-decoration:none;}div.ie-actionbuttons{position:relative;height:22px;right:0;bottom:0;margin:0;background:transparent url(images/BG.png) no-repeat top right;text-align:right;vertical-align:bottom;padding-left:2em;padding-right:1em;padding-top:.5ex;padding-bottom:.5ex;border:0 none;}#actionbuttons{position:fixed;max-width:30%;height:22px;right:0;bottom:0;margin:0;background:transparent url(images/BG.png) top left;vertical-align:bottom;padding-left:2em;padding-right:1em;padding-top:.5ex;padding-bottom:.5ex;border:0 none;}#actionbuttons a,#actionbuttons a:link{position:relative;display:inline;text-align:right;width:100%;margin-bottom:.5em;margin-top:auto;background-color:transparent;border:0;}#content{margin-top:0;margin-left:7%;margin-right:7%;margin-bottom:7%;background-color:#f2f2f2;border:1px #999 solid;padding-left:2em;padding-right:15px;padding-top:15px;padding-bottom:.5ex;}div.wikitext{font-size:1em;line-height:130%;text-align:left;}blockquote.mail-style-quote{border-left:#F93;margin:0;margin-bottom:1em;border:1px solid #F93;padding:.5em;}.mail-style-quote blockquote.mail-style-quote{margin-left:.3em;margin-bottom:0;background:transparent;border-style:none;border-left:2px solid #F93;padding:0;padding-left:.5em;}blockquote p{margin-top:.5ex;margin-bottom:.5ex;}.toolbar,input.button,#signin{font-family:Verdana,Arial,Helvetica,sans-serif;}div.toolbar{display:block;background-color:#f2f2f2;border:1px #666 solid;margin:2% 7%;}.toolbar{padding:0;margin:0;}.edit-toolbar{padding:0;margin:0;}.edit-toolbar img,.edit-toolbar input{background-color:#fff;border:1px solid ButtonFace;}#navbuttons{display:inline;}#navbuttons img{margin:5px 0 5px 10px;}#navbuttons a:link,#navbuttons a{font-weight:bold;padding-left:1ex;padding-right:1ex;color:#333;}#signin{width:auto;text-align:right;padding-right:10px;background-color:transparent;color:#ccc;font-size:12px;}#signin form{text-align:center;padding:1px;margin:0;display:inline;}#signin input{padding:0;padding-left:3px;margin:0;font-family:Verdana,Arial,Helvetica,sans-serif;color:#333;font-size:12px;}#signin input.wikisignin{padding:0;margin:0;border:0 none;}#signin a.wiki{color:#FFF;background-color:transparent;}#search{font-size:12px;margin:5px 10px 5px 10px;float:right;}#search form{text-align:center;padding:1px;margin:0;display:inline;}#search input{padding:0;padding-left:3px;margin:0;font-family:Verdana,Arial,Helvetica,sans-serif;color:#333;font-size:12px;}#search input.wikiaction{padding:0;margin:0;border:0 none;}.search-context{background:white;font-style:oblique;}.search-term{background:yellow;font-weight:normal;}#livesearch{height:13px;width:100px;}#LSResult{position:absolute;text-align:left;display:none;z-index:100;background-color:white;border:1px solid #d0d0d0;font-size:9px;overflow:hidden;}#LSHighlight{background-color:#f08000;}#LSResult .evenrow{background-color:#f0f0f0;}.LSEnd{text-align:right;}.LSRow:hover{background-color:white;}.LSRow{padding:1px;}ul.LSRes{margin:0;padding:0;}li.LSRow{margin:0;list-style-image:none;}body.sidebar{font-size:smaller;margin:.5em;}body.sidebar div.wikitext{padding:.5em;}body.sidebar{padding-left:1em;}body.sidebar h2{margin-top:0;}form.wikiadmin div{color:#000;background-color:#f2f2f2;}a.wikiaction,a.wikiadmin{line-height:2.6ex;}div.wikiaction input[type=text],div.wikiadmin input[type=text],form.wikiadmin input[type=file]{margin-right:.5em;}img.linkicon{vertical-align:middle;}img.rssicon{vertical-align:baseline;}a.wikiaction,a.wikiadmin,a.wiki-rc-action,a.wikiunsafe{text-decoration:none;font-family:Verdana,Arial,Helvetica,sans-serif;}.wikiunsafe{color:#000;background-color:#f2f2f2;}input.wikiadmin{color:#000;background-color:#fff;}.wikiunknown,.named-wikiunknown{font-weight:normal;font-size:100%;background-color:transparent;}.wikiunknown a,.named-wikiunknown a{color:#FFF;background-color:#000;text-decoration:none;font-weight:normal;font-size:1em;padding:1px;padding-top:0;padding-bottom:0;border-top:1px solid #000;border-bottom:1px solid #000;margin-right:2px;}.backlinks{text-decoration:underline;background-color:transparent;color:#006;}.wikipage{font-weight:bold;}.interwiki{text-decoration:none;}.interwiki,i.interwiki .wikipage,em .interwiki .wikipage{font-style:oblique;}.interwiki .wikipage,i .interwiki,em .interwiki{font-style:normal;}h1,h2,h3,h4,h5,h6{font-family:Arial,Helvetica,sans-serif;}h1{margin-top:10px;background-color:transparent;color:#555;}h1 a.backlinks{color:#777;text-decoration:none;}h1 a.wiki{color:#777;text-decoration:none;}h1 a.pagetitle{color:#555;text-decoration:none;}h1 a:hover{color:#888;text-decoration:underline;}h4,h5,h6{margin-bottom:0;background-color:transparent;color:#111;}div.rss{background-color:#fff;color:#000;border:2px solid #ddd;}div.feed{font-size:1.4em;padding:.5em;}.chandesc{font-size:.9em;}div.rssitem{display:block;background-color:#fff;color:#000;border-top:1px solid #ddd;padding:0 .5em;}div.itemname{display:block;border:0;margin-top:.5em;}div.itemdesc{font-size:1em;margin-bottom:.5em;}table,td{font-family:Verdana,Arial,Helvetica,sans-serif;}caption{font-family:Verdana,Arial,Helvetica,sans-serif;width:auto;}.pagelist{background-color:white;border:1px #333 dashed;}.pagelist tr.evenrow{background-color:white;}.pagelist tr.oddrow{background-color:white;}.pagelist td{padding:3px;}th.gridbutton{background-color:ThreeDLightShadow;color:black;font-size:small;font-weight:normal;font-family:Tahoma,Arial,Helvetica,sans-serif;height:18px;margin:5px 0;float:none;white-space:nowrap;max-height:24px;padding:5px 0 5px 0;border-width:1px;border-style:solid;border-color:ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight;}input.gridbutton,a.gridbutton,a:hover.gridbutton,a:visited.gridbutton{text-decoration:none;font-size:small;font-weight:normal;font-family:Tahoma,Arial,Helvetica,sans-serif;background-color:ThreeDLightShadow;color:black;}.wikilink{display:block;}#revision{font-size:10px;text-align:right;background-color:#f2f2f2;padding-left:2em;padding-right:1em;padding-top:.5ex;padding-bottom:.5ex;clear:both;}.editdate{font-family:Arial,Helvetica,sans-serif;margin:0;padding:0;padding-top:.25ex;}#xhtml-validator{font-size:small;text-align:center;margin-top:1em;}form{margin:0;}input,textarea{margin:.1em;background-color:#FFF;vertical-align:middle;font-size:1em;}input.wikisignin{border:0 none;background-color:#FFF;}input.wikiaction{border:1px solid black;background-color:#D7FA8C;}input.numeric{text-align:center;}textarea.wikiedit{width:90%;margin:.5ex;padding:2px;font-family:Verdana,Arial,Helvetica,sans-serif;}#editarea-size{margin-top:1ex;margin-bottom:-1ex;text-align:right;font-size:smaller;border:1px none;}#editarea-size legend{text-align:right;font-size:smaller;border:1px solid #CCC;background-color:#ccc;}.editarea legend{font-family:Verdana,Helvetica,Arial,sans-serif;font-size:1em;line-height:1em;padding:.2em;border:1px solid #333;background-color:#eee;}fieldset.editarea{margin:1ex;margin-top:1em;text-align:center;padding:10px;border:1px solid #333;background-color:#E8E8E5;}fieldset.toolbar{margin:1ex;margin-top:0;text-align:center;padding:3px;border:1px solid #FFF;background-color:#FFF;}.transclusion-title{text-align:right;font-style:oblique;font-size:smaller;text-decoration:underline;margin-bottom:.25ex;margin-right:.25em;}.transclusion,.wiki-edithelp{font-size:smaller;}.transclusion{border:1px solid gray;padding-left:.8em;padding-right:.8em;padding-top:0;padding-bottom:0;margin-left:.25em;margin-right:.25em;margin-bottom:.1ex;}.wiki-edithelp{background-color:white;border:medium solid #fff8dc;padding-left:.5em;padding-right:.5em;padding-top:.75ex;padding-bottom:.75ex;margin-left:0;margin-right:0;margin-top:1ex;margin-bottom:1ex;}.wiki-edithelp p{font-family:Verdana,Helvetica,Arial,sans-serif;padding-left:.5em;padding-right:.5em;padding-top:.5ex;padding-bottom:.5ex;margin:0;}table.cal{float:right;font-size:10px;border:1px solid #333;background-color:#ccc;margin:10px;padding:1px;empty-cells:hide;}table.cal td{text-align:right;}table.cal-header{font-size:larger;background-color:#333;color:#f2f2f2;}table.cal-header tr,table.cal-header td{text-align:center;}.cal-arrow{font-weight:bold;text-decoration:none;color:#fff;}a.cal-arrow{color:#fff;}.cal-dayname td{text-align:center;font-size:smaller;text-decoration:none;background-color:#f2f2f2;}a.cal-hide{font-size:9px;text-decoration:none;}table.cal td.cal-today{margin:1px;border:1px solid #333;color:#000;background-color:#f2f2f2;}table.cal td.cal-day a.cal-day{font-size:9px;text-decoration:underline;}.diff .block div{position:relative;padding-left:1.5em;}.diff .prefix{position:absolute;left:.5em;top:0;}.diff{color:#000;background-color:transparent;border:1px solid black;}.diff .block{color:#000;background-color:#ccc;padding-left:1em;}.diff .context{color:#000;background-color:transparent;border:none;}.diff .block tt{font-weight:normal;font-family:monospace;color:black;background-color:transparent;margin-left:0;border:none;}.diff del,.diff ins{font-weight:bold;text-decoration:none;}.diff .original,.diff .deleted,.diff .final,.diff .added{color:#000;background-color:white;}.diff .original,.diff .deleted{color:#000;background-color:#fcc;border:none;}.diff .final,.diff .added{color:#000;background-color:#cfc;border:none;}.diff del{color:#000;background-color:#f99;}.diff ins{color:#000;background-color:#9f9;}td.pageinfo{font-weight:bold;}.pageinfo-minoredit,.pageinfo-authorid{font-size:smaller;font-style:oblique;}.hint{color:black;background-color:#eee;font-size:smaller;margin-left:5em;border:thin solid #aaa;}#clear{clear:both;margin:0;margin-top:-7px;padding:2px;text-align:center;color:#000;background-color:#FFF;border:solid 0;}#clear{margin-top:0;}img.inlineimage{border:0;vertical-align:middle;margin:0 5px 0 5px;}em>img.inlineimage{float:left;border:0;vertical-align:middle;margin:5px 15px 15px 0;}strong>img.inlineimage{float:right;border:0;vertical-align:middle;margin:5px 0 15px 15px;}h2.wikiblog-heading{font-size:2em;padding-bottom:.5em;border-bottom:2px solid gray;}.interwiki-map thead td{text-decoration:underline;}.printer{display:none;}div.errors{color:black;background-color:#eee;margin-top:1em;margin-bottom:1em;padding-left:.8em;padding-right:.8em;padding-top:.8ex;padding-bottom:0;border:medium solid red;clear:both;}.errors h4{color:red;margin:0;padding:0;text-decoration:underline;background-color:transparent;}.error{font-family:monospace;}.error ul{font-family:monospace;}.debug{color:black;background-color:transparent;font-family:monospace;font-size:smaller;margin:1ex 0;padding:.5ex .5em;}div.br{display:none;}table.boxed,table.bordered,table.bordered th,table.bordered td{border-width:1px;border-style:solid;border-collapse:collapse;vertical-align:top;}table.boxed td,table.bordered td,table.boxed th,table.bordered th{padding-left:5px;padding-right:5px;padding-top:0;padding-bottom:0;}table.boxed caption,table.bordered caption{text-align:center;font-weight:bold;caption-side:bottom;padding-top:.8em;}table.boxed th,table.bordered th{font-weight:bold;background-color:#d8d8d8;} \ No newline at end of file +body{background-color:#ccc;font-family:Helvetica,Verdana,Arial,sans-serif;font-size:12px;line-height:14px;margin:0;padding:0;border:0 none;color:#000;text-align:left;}img{border:0;vertical-align:middle;}table{border-spacing:0;empty-cells:show;}a:link,a{color:#33c;text-decoration:underline;background-color:transparent;}a:visited{color:#33c;text-decoration:underline;background-color:transparent;}a:hover{color:#03f;text-decoration:underline;background-color:transparent;}hr{background-color:#ccc;height:1px;border:1px solid #ccc;}div.wikitext pre{font-family:monospace;}p{font-size:1em;margin:0;margin-bottom:1em;}ul{position:relative;padding:0;margin:0;font-family:Helvetica,Verdana,Arial,sans-serif;font-size:100%;line-height:120%;list-style:inside;background-color:transparent;}ul ul{position:relative;font-family:Helvetica,Verdana,Arial,sans-serif;font-size:100%;margin-left:2em;}li.rc-major{list-style:none;display:block;background-color:#fff;margin:6px 0;border:1px #666 dashed;padding:.5ex;}li.evenrow{border:0;padding:1ex;}li.oddrow{border:0;padding:1ex;}li strong{font-weight:normal;background-color:transparent;}strong.wiki-summary{display:block;padding:5px 0;background-color:transparent;}li a.wiki-rc-action{display:inline;}li a.wiki-rc-action{border:0;}li.rc-major a.wiki{font-size:1.2em;font-weight:bold;}li>p{display:inline;}p.wiki-rc-action{text-align:center;vertical-align:middle;padding:5px 5px 5px 5px;border:1px #000 solid;background-color:transparent;}p a.wiki-rc-action{display:inline;padding:0 10px;font-weight:bold;background-color:transparent;}#header{background-color:#333;}#logo{color:#ccc;display:inline;margin-top:0;margin-left:0;height:50px;width:auto;background-color:transparent;font:bolder 67px/50px Verdana,Arial,Helvetica,sans-serif;letter-spacing:-0.1em;}#logo img{border:0;}#logo a{color:#ccc;font:bolder 67px/50px Arial,Verdana,Helvetica,sans-serif;text-decoration:none;}div.ie-actionbuttons{position:relative;height:22px;right:0;bottom:0;margin:0;background:transparent url(images/BG.png) no-repeat top right;text-align:right;vertical-align:bottom;padding-left:2em;padding-right:1em;padding-top:.5ex;padding-bottom:.5ex;border:0 none;}#actionbuttons{position:fixed;max-width:30%;height:22px;right:0;bottom:0;margin:0;background:transparent url(images/BG.png) top left;vertical-align:bottom;padding-left:2em;padding-right:1em;padding-top:.5ex;padding-bottom:.5ex;border:0 none;}#actionbuttons a,#actionbuttons a:link{position:relative;display:inline;text-align:right;width:100%;margin-bottom:.5em;margin-top:auto;background-color:transparent;border:0;}#content{margin-top:0;margin-left:7%;margin-right:7%;margin-bottom:7%;background-color:#f2f2f2;border:1px #999 solid;padding-left:2em;padding-right:15px;padding-top:15px;padding-bottom:.5ex;}div.wikitext{font-size:1em;line-height:130%;text-align:left;}blockquote.mail-style-quote{border-left:#F93;margin:0;margin-bottom:1em;border:1px solid #F93;padding:.5em;}.mail-style-quote blockquote.mail-style-quote{margin-left:.3em;margin-bottom:0;background:transparent;border-style:none;border-left:2px solid #F93;padding:0;padding-left:.5em;}blockquote p{margin-top:.5ex;margin-bottom:.5ex;}.toolbar,input.button,#signin{font-family:Verdana,Arial,Helvetica,sans-serif;}div.toolbar{display:block;background-color:#f2f2f2;border:1px #666 solid;margin:2% 7%;}.toolbar{padding:0;margin:0;}.edit-toolbar{padding:0;margin:0;}.edit-toolbar img,.edit-toolbar input{background-color:#fff;border:1px solid ButtonFace;}#navbuttons{display:inline;}#navbuttons img{margin:5px 0 5px 10px;}#navbuttons a:link,#navbuttons a{font-weight:bold;padding-left:1ex;padding-right:1ex;color:#333;}#signin{width:auto;text-align:right;padding-right:10px;background-color:transparent;color:#ccc;font-size:12px;}#signin form{text-align:center;padding:1px;margin:0;display:inline;}#signin input{padding:0;padding-left:3px;margin:0;font-family:Verdana,Arial,Helvetica,sans-serif;color:#333;font-size:12px;}#signin input.wikisignin{padding:0;margin:0;border:0 none;}#signin a.wiki{color:#FFF;background-color:transparent;}#search{font-size:12px;margin:5px 10px 5px 10px;float:right;}#search form{text-align:center;padding:1px;margin:0;display:inline;}#search input{padding:0;padding-left:3px;margin:0;font-family:Verdana,Arial,Helvetica,sans-serif;color:#333;font-size:12px;}#search input.wikiaction{padding:0;margin:0;border:0 none;}.search-context{background:white;font-style:oblique;}.search-term{background:yellow;font-weight:normal;}#livesearch{height:13px;width:100px;}#LSResult{position:absolute;text-align:left;display:none;z-index:100;background-color:white;border:1px solid #d0d0d0;font-size:9px;overflow:hidden;}#LSHighlight{background-color:#f08000;}#LSResult .evenrow{background-color:#f0f0f0;}.LSEnd{text-align:right;}.LSRow:hover{background-color:white;}.LSRow{padding:1px;}ul.LSRes{margin:0;padding:0;}li.LSRow{margin:0;list-style-image:none;}body.sidebar{font-size:smaller;margin:.5em;}body.sidebar div.wikitext{padding:.5em;}body.sidebar{padding-left:1em;}body.sidebar h2{margin-top:0;}form.wikiadmin div{color:#000;background-color:#f2f2f2;}a.wikiaction,a.wikiadmin{line-height:2.6ex;}div.wikiaction input[type=text],div.wikiadmin input[type=text],form.wikiadmin input[type=file]{margin-right:.5em;}img.linkicon{vertical-align:middle;}img.rssicon{vertical-align:baseline;}a.wikiaction,a.wikiadmin,a.wiki-rc-action,a.wikiunsafe{text-decoration:none;font-family:Verdana,Arial,Helvetica,sans-serif;}.wikiunsafe{color:#000;background-color:#f2f2f2;}input.wikiadmin{color:#000;background-color:#fff;}.wikiunknown,.named-wikiunknown{font-weight:normal;font-size:100%;background-color:transparent;}.wikiunknown a,.named-wikiunknown a{color:#FFF;background-color:#000;text-decoration:none;font-weight:normal;font-size:1em;padding:1px;padding-top:0;padding-bottom:0;border-top:1px solid #000;border-bottom:1px solid #000;margin-right:2px;}.backlinks{text-decoration:underline;background-color:transparent;color:#006;}.wikipage{font-weight:bold;}.interwiki{text-decoration:none;}.interwiki,i.interwiki .wikipage,em .interwiki .wikipage{font-style:oblique;}.interwiki .wikipage,i .interwiki,em .interwiki{font-style:normal;}h1,h2,h3,h4,h5,h6{font-family:Arial,Helvetica,sans-serif;}h1{margin-top:10px;background-color:transparent;color:#555;}h1 a.backlinks{color:#777;text-decoration:none;}h1 a.wiki{color:#777;text-decoration:none;}h1 a.pagetitle{color:#555;text-decoration:none;}h1 a:hover{color:#888;text-decoration:underline;}h4,h5,h6{margin-bottom:0;background-color:transparent;color:#111;}div.rss{background-color:#fff;color:#000;border:2px solid #ddd;}div.feed{font-size:1.4em;padding:.5em;}.chandesc{font-size:.9em;}div.rssitem{display:block;background-color:#fff;color:#000;border-top:1px solid #ddd;padding:0 .5em;}div.itemname{display:block;border:0;margin-top:.5em;}div.itemdesc{font-size:1em;margin-bottom:.5em;}table,td{font-family:Verdana,Arial,Helvetica,sans-serif;}caption{font-family:Verdana,Arial,Helvetica,sans-serif;width:auto;}.pagelist{background-color:white;border:1px #333 dashed;}.pagelist tr.evenrow{background-color:white;}.pagelist tr.oddrow{background-color:white;}.pagelist td{padding:3px;}th.gridbutton{background-color:ThreeDLightShadow;color:black;font-size:small;font-weight:normal;font-family:Tahoma,Arial,Helvetica,sans-serif;height:18px;margin:5px 0;float:none;white-space:nowrap;max-height:24px;padding:5px 0 5px 0;border-width:1px;border-style:solid;border-color:ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight;}input.gridbutton,a.gridbutton,a:hover.gridbutton,a:visited.gridbutton{text-decoration:none;font-size:small;font-weight:normal;font-family:Tahoma,Arial,Helvetica,sans-serif;background-color:ThreeDLightShadow;color:black;}.wikilink{display:block;}#revision{font-size:10px;text-align:right;background-color:#f2f2f2;padding-left:2em;padding-right:1em;padding-top:.5ex;padding-bottom:.5ex;clear:both;}.editdate{font-family:Arial,Helvetica,sans-serif;margin:0;padding:0;padding-top:.25ex;}#xhtml-validator{font-size:small;text-align:center;margin-top:1em;}form{margin:0;}input,textarea{margin:.1em;background-color:#FFF;vertical-align:middle;font-size:1em;}input.wikisignin{border:0 none;background-color:#FFF;}input.wikiaction{border:1px solid black;background-color:#D7FA8C;}input.numeric{text-align:center;}textarea.wikiedit{width:90%;margin:.5ex;padding:2px;font-family:Verdana,Arial,Helvetica,sans-serif;}#editarea-size{margin-top:1ex;margin-bottom:-1ex;text-align:right;font-size:smaller;border:1px none;}#editarea-size legend{text-align:right;font-size:smaller;border:1px solid #CCC;background-color:#ccc;}.editarea legend{font-family:Verdana,Helvetica,Arial,sans-serif;font-size:1em;line-height:1em;padding:.2em;border:1px solid #333;background-color:#eee;}fieldset.editarea{margin:1ex;margin-top:1em;text-align:center;padding:10px;border:1px solid #333;background-color:#E8E8E5;}fieldset.toolbar{margin:1ex;margin-top:0;text-align:center;padding:3px;border:1px solid #FFF;background-color:#FFF;}.transclusion-title{text-align:right;font-style:oblique;font-size:smaller;text-decoration:underline;margin-bottom:.25ex;margin-right:.25em;}.transclusion,.wiki-edithelp{font-size:smaller;}.transclusion{border:1px solid gray;padding-left:.8em;padding-right:.8em;padding-top:0;padding-bottom:0;margin-left:.25em;margin-right:.25em;margin-bottom:.1ex;}.wiki-edithelp{background-color:white;border:medium solid #fff8dc;padding-left:.5em;padding-right:.5em;padding-top:.75ex;padding-bottom:.75ex;margin-left:0;margin-right:0;margin-top:1ex;margin-bottom:1ex;}.wiki-edithelp p{font-family:Verdana,Helvetica,Arial,sans-serif;padding-left:.5em;padding-right:.5em;padding-top:.5ex;padding-bottom:.5ex;margin:0;}table.cal{float:right;font-size:10px;border:1px solid #333;background-color:#ccc;margin:10px;padding:1px;empty-cells:hide;}table.cal td{text-align:right;}table.cal-header{font-size:larger;background-color:#333;color:#f2f2f2;}table.cal-header tr,table.cal-header td{text-align:center;}.cal-arrow{font-weight:bold;text-decoration:none;color:#fff;}a.cal-arrow{color:#fff;}.cal-dayname td{text-align:center;font-size:smaller;text-decoration:none;background-color:#f2f2f2;}a.cal-hide{font-size:9px;text-decoration:none;}table.cal td.cal-today{margin:1px;border:1px solid #333;color:#000;background-color:#f2f2f2;}table.cal td.cal-day a.cal-day{font-size:9px;text-decoration:underline;}.diff .block div{position:relative;padding-left:1.5em;}.diff .prefix{position:absolute;left:.5em;top:0;}.diff{color:#000;background-color:transparent;border:1px solid black;}.diff .block{color:#000;background-color:#ccc;padding-left:1em;}.diff .context{color:#000;background-color:transparent;border:none;}.diff .block tt{font-weight:normal;font-family:monospace;color:black;background-color:transparent;margin-left:0;border:none;}.diff del,.diff ins{font-weight:bold;text-decoration:none;}.diff .original,.diff .deleted,.diff .final,.diff .added{color:#000;background-color:white;}.diff .original,.diff .deleted{color:#000;background-color:#fcc;border:none;}.diff .final,.diff .added{color:#000;background-color:#cfc;border:none;}.diff del{color:#000;background-color:#f99;}.diff ins{color:#000;background-color:#9f9;}td.pageinfo{font-weight:bold;}.pageinfo-minoredit,.pageinfo-authorid{font-size:smaller;font-style:oblique;}.hint{color:black;background-color:#eee;font-size:smaller;margin-left:5em;border:thin solid #aaa;}#clear{clear:both;margin:0;margin-top:-7px;padding:2px;text-align:center;color:#000;background-color:#FFF;border:solid 0;}#clear{margin-top:0;}img.inlineimage{border:0;vertical-align:middle;margin:0 5px 0 5px;}em>img.inlineimage{float:left;border:0;vertical-align:middle;margin:5px 15px 15px 0;}strong>img.inlineimage{float:right;border:0;vertical-align:middle;margin:5px 0 15px 15px;}h2.wikiblog-heading{font-size:2em;padding-bottom:.5em;border-bottom:2px solid gray;}.interwiki-map thead td{text-decoration:underline;}.printer{display:none;}div.errors{color:black;background-color:#eee;margin-top:1em;margin-bottom:1em;padding-left:.8em;padding-right:.8em;padding-top:.8ex;padding-bottom:0;border:medium solid red;clear:both;}.errors{color:red;margin:0;padding:0;text-decoration:underline;background-color:transparent;}.error{font-family:monospace;}.error ul{font-family:monospace;}.debug{color:black;background-color:transparent;font-family:monospace;font-size:smaller;margin:1ex 0;padding:.5ex .5em;}div.br{display:none;}table.boxed,table.bordered,table.bordered th,table.bordered td{border-width:1px;border-style:solid;border-collapse:collapse;vertical-align:top;}table.boxed td,table.bordered td,table.boxed th,table.bordered th{padding-left:5px;padding-right:5px;padding-top:0;padding-bottom:0;}table.boxed caption,table.bordered caption{text-align:center;font-weight:bold;caption-side:bottom;padding-top:.8em;}table.boxed th,table.bordered th{font-weight:bold;background-color:#d8d8d8;} \ No newline at end of file Modified: trunk/themes/Hawaiian/Hawaiian-min.css =================================================================== --- trunk/themes/Hawaiian/Hawaiian-min.css 2010-12-20 13:18:08 UTC (rev 7789) +++ trunk/themes/Hawaiian/Hawaiian-min.css 2010-12-20 13:25:42 UTC (rev 7790) @@ -1 +1 @@ -img{border:0;vertical-align:baseline;}form{margin:0;}input{margin:.1em;}input.numeric{text-align:right;}table{border-spacing:1px;empty-cells:show;}caption{caption-side:top;text-align:left;margin-bottom:.5ex;width:100%;}body{color:black;background:white url("images/uhhbackground.jpg") repeat;font-family:Arial,Helvetica,sans-serif;margin:1ex .5em;}body p{margin-left:1em;}#logo img{border:1px outset gray;margin-left:1em;margin-bottom:1ex;}img#signature{background:white;border:1px outset gray;padding-left:8px;padding-right:8px;padding-top:8px;padding-bottom:14px;}div.wikitext{margin-top:1ex;margin-bottom:.5ex;padding-left:.8em;padding-right:.8em;padding-top:.5ex;padding-bottom:.5ex;clear:both;}div.wikitext hr{height:1px;}div.wikitext pre{font-family:monospace;}body.sidebar{font-size:smaller;margin:.5em;}body.sidebar div.wikitext{padding:.5em;}body.sidebar div.wikitext ul{padding-left:1em;}body.sidebar h2{margin-top:0;}.wiki,.named-wiki{font-weight:bold;color:#87785c;}.wiki{text-decoration:none;}.named-wiki{text-decoration:underline;}.wikiaction,.wikiadmin,.wiki-rc-action,.backlinks{text-decoration:none;}.wikiaction,.wikiadmin{font-weight:bold;}.wikiaction,.wikiaction table,span.wikiaction{color:#4d5a6b;}.wikiadmin,.wikiadmin table{color:#ff7e00;}.backlinks{color:#1d4fc0;}h1 .backlinks{text-decoration:underline;}.wikiunknown a,.named-wikiunknown a,.wikiunknown u{color:#a6977a;}.wikipage{font-weight:bold;}.interwiki{text-decoration:none;}.interwiki,i.interwiki .wikipage,em .interwiki .wikipage{font-style:oblique;}.interwiki .wikipage,i .interwiki,em .interwiki{font-style:normal;}h1,h2,h3,h4,h5,h6{font-family:Arial,Helvetica,sans-serif;}h1{margin:0;}caption{font-family:Arial,Helvetica,sans-serif;}.pagelist tr.evenrow{background:#eee;}.pagelist tr.oddrow{background:white;}th.gridbutton{background-color:ThreeDLightShadow;color:black;font-family:Tahoma,Arial,Helvetica,sans-serif;font-size:small;font-weight:normal;margin:5px 0;white-space:nowrap;max-height:24px;padding:5px 0 5px 0;border-width:1px;border-style:solid;border-color:ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight;}input.gridbutton,a.gridbutton,a:hover.gridbutton,a:visited.gridbutton{text-decoration:none;font-size:small;font-weight:normal;font-family:Tahoma,Arial,Helvetica,sans-serif;background-color:ThreeDLightShadow;color:black;}.toolbar,input.button{font-family:Arial,Helvetica,sans-serif;}.toolbar{padding:0;margin:0;}#navbar,#actionbar{line-height:140%;}.editdate{font-family:Arial,Helvetica,sans-serif;margin:0;padding:0;padding-top:.25ex;}.wikiedit{width:100%;margin-bottom:.5ex;margin-top:.5ex;padding:2px;}input.button{font-family:Arial,Helvetica,sans-serif;}#editarea-size{margin-top:1ex;text-align:right;font-size:smaller;}.transclusion-title{text-align:right;font-style:oblique;font-size:smaller;text-decoration:underline;margin-bottom:.25ex;margin-right:.25em;}.transclusion,.wiki-edithelp{font-size:smaller;}.transclusion{background:inherit;border:1px dotted #a6977a;padding-left:.8em;padding-right:.8em;padding-top:0;padding-bottom:0;margin-left:.25em;margin-right:.25em;margin-bottom:.1ex;}.wiki-edithelp{border:medium solid #d8caae;padding-left:.5em;padding-right:.5em;padding-top:.75ex;padding-bottom:.75ex;margin-left:0;margin-right:0;margin-top:1ex;margin-bottom:1ex;}.wiki-edithelp .wiki{color:#87785c;}.wiki-edithelp p{font-family:Arial,Helvetica,sans-serif;padding-left:.5em;padding-right:.5em;padding-top:.5ex;padding-bottom:.5ex;margin:0;}table.cal{border:1px outset gray;margin:.5ex .5em;padding:1px;empty-cells:hide;}table.cal table.cal-header td{padding-top:110px;}table.cal thead tr:first-child{background:url("images/pictures/SteamVolcanoDusk.jpg") no-repeat;background-position:center;font-size:larger;}table.cal table.cal-header td{text-align:center;color:white;background:transparent;border:0;}.cal-arrow{text-decoration:none;color:white;font-weight:bold;}table.cal tr .cal-dayname{background:inherit;}.cal-dayname td{text-align:center;font-size:smaller;text-decoration:none;color:black;padding-bottom:.5ex;}table.cal tbody td{border:.5pt solid #ddd;background:white;text-align:right;}a.cal-hide{text-decoration:none;color:black;font-weight:normal;}table.cal td.cal-today{margin:1px;background:white;border:.5pt solid black;}table.cal td.cal-today a{color:blue;}table.cal td.cal-day{margin:1px;background:white;border:.5pt solid black;}table.cal td.cal-day a{color:red;text-decoration:none;}.diff .block{background:#ccc;padding:.5ex .5em;margin:.5ex 0;}.diff .context{background:white;}.diff .block tt{font-weight:bold;font-family:monospace;margin-left:-.6em;color:black;}.diff del,.diff ins{font-weight:bold;text-decoration:none;}.diff .original,.diff .deleted{background:#fcc;}.diff .final,.diff .added{background:#cfc;}.diff del{background:#f99;}.diff ins{background:#9f9;}.printer{display:none;}div.errors{color:black;border:medium solid #d8caae;margin-top:1em;margin-bottom:1em;padding-left:.8em;padding-right:.8em;padding-top:.8ex;padding-bottom:0;font-size:smaller;clear:both;}.errors h4{color:#87785c;margin:0;padding:0;text-decoration:none;font-weight:bold;}.error{font-family:monospace;}.error ul{font-family:monospace;}.debug{color:black;font-family:monospace;margin:1ex 0;padding:.5ex .5em;border:medium solid #d8caae;}.clear-floats{clear:both;}.search-context{background:white;font-style:oblique;}.search-term{background:yellow;font-weight:normal;}#LSResult{position:absolute;text-align:left;display:none;z-index:100;background-color:white;border:1px solid #d0d0d0;font-size:9px;overflow:hidden;}#LSHighlight{background-color:#f08000;}#LSResult .evenrow{background-color:#f0f0f0;}.LSEnd{text-align:right;}.LSRow:hover{background-color:white;}.LSRow{padding:1px;}ul.LSRes{margin:0;padding:0;}li.LSRow{margin:0;list-style-image:none;}.toolbar,div.toolbar{margin:.5ex 0;}img.linkicon{vertical-align:middle;}div.wikitext{width:auto;background:url("images/tchecker-white.png") repeat;}.wiki-edithelp{background:url("images/tchecker-sand.png") repeat;}.wiki-edithelp p{background:url("images/tchecker-white.png") repeat;}.diff .block div{position:relative;padding-left:1.5em;}.diff .prefix{position:absolute;left:.5em;top:0;}div.errors{background:url("images/tchecker-sand.png") repeat;}.debug{background:url("images/tchecker-sand.png") repeat;}table.boxed,table.bordered,table.bordered th,table.bordered td{border-width:1px;border-style:solid;border-collapse:collapse;vertical-align:top;}table.boxed td,table.bordered td,table.boxed th,table.bordered th{padding-left:5px;padding-right:5px;padding-top:0;padding-bottom:0;}table.boxed caption,table.bordered caption{text-align:center;font-weight:bold;caption-side:bottom;padding-top:.8em;}table.boxed th,table.bordered th{font-weight:bold;background-color:#d8d8d8;} \ No newline at end of file +img{border:0;vertical-align:baseline;}form{margin:0;}input{margin:.1em;}input.numeric{text-align:right;}table{border-spacing:1px;empty-cells:show;}caption{caption-side:top;text-align:left;margin-bottom:.5ex;width:100%;}body{color:black;background:white url("images/uhhbackground.jpg") repeat;font-family:Arial,Helvetica,sans-serif;margin:1ex .5em;}body p{margin-left:1em;}#logo img{border:1px outset gray;margin-left:1em;margin-bottom:1ex;}img#signature{background:white;border:1px outset gray;padding-left:8px;padding-right:8px;padding-top:8px;padding-bottom:14px;}div.wikitext{margin-top:1ex;margin-bottom:.5ex;padding-left:.8em;padding-right:.8em;padding-top:.5ex;padding-bottom:.5ex;clear:both;}div.wikitext hr{height:1px;}div.wikitext pre{font-family:monospace;}body.sidebar{font-size:smaller;margin:.5em;}body.sidebar div.wikitext{padding:.5em;}body.sidebar div.wikitext ul{padding-left:1em;}body.sidebar h2{margin-top:0;}.wiki,.named-wiki{font-weight:bold;color:#87785c;}.wiki{text-decoration:none;}.named-wiki{text-decoration:underline;}.wikiaction,.wikiadmin,.wiki-rc-action,.backlinks{text-decoration:none;}.wikiaction,.wikiadmin{font-weight:bold;}.wikiaction,.wikiaction table,span.wikiaction{color:#4d5a6b;}.wikiadmin,.wikiadmin table{color:#ff7e00;}.backlinks{color:#1d4fc0;}h1 .backlinks{text-decoration:underline;}.wikiunknown a,.named-wikiunknown a,.wikiunknown u{color:#a6977a;}.wikipage{font-weight:bold;}.interwiki{text-decoration:none;}.interwiki,i.interwiki .wikipage,em .interwiki .wikipage{font-style:oblique;}.interwiki .wikipage,i .interwiki,em .interwiki{font-style:normal;}h1,h2,h3,h4,h5,h6{font-family:Arial,Helvetica,sans-serif;}h1{margin:0;}caption{font-family:Arial,Helvetica,sans-serif;}.pagelist tr.evenrow{background:#eee;}.pagelist tr.oddrow{background:white;}th.gridbutton{background-color:ThreeDLightShadow;color:black;font-family:Tahoma,Arial,Helvetica,sans-serif;font-size:small;font-weight:normal;margin:5px 0;white-space:nowrap;max-height:24px;padding:5px 0 5px 0;border-width:1px;border-style:solid;border-color:ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight;}input.gridbutton,a.gridbutton,a:hover.gridbutton,a:visited.gridbutton{text-decoration:none;font-size:small;font-weight:normal;font-family:Tahoma,Arial,Helvetica,sans-serif;background-color:ThreeDLightShadow;color:black;}.toolbar,input.button{font-family:Arial,Helvetica,sans-serif;}.toolbar{padding:0;margin:0;}#navbar,#actionbar{line-height:140%;}.editdate{font-family:Arial,Helvetica,sans-serif;margin:0;padding:0;padding-top:.25ex;}.wikiedit{width:100%;margin-bottom:.5ex;margin-top:.5ex;padding:2px;}input.button{font-family:Arial,Helvetica,sans-serif;}#editarea-size{margin-top:1ex;text-align:right;font-size:smaller;}.transclusion-title{text-align:right;font-style:oblique;font-size:smaller;text-decoration:underline;margin-bottom:.25ex;margin-right:.25em;}.transclusion,.wiki-edithelp{font-size:smaller;}.transclusion{background:inherit;border:1px dotted #a6977a;padding-left:.8em;padding-right:.8em;padding-top:0;padding-bottom:0;margin-left:.25em;margin-right:.25em;margin-bottom:.1ex;}.wiki-edithelp{border:medium solid #d8caae;padding-left:.5em;padding-right:.5em;padding-top:.75ex;padding-bottom:.75ex;margin-left:0;margin-right:0;margin-top:1ex;margin-bottom:1ex;}.wiki-edithelp .wiki{color:#87785c;}.wiki-edithelp p{font-family:Arial,Helvetica,sans-serif;padding-left:.5em;padding-right:.5em;padding-top:.5ex;padding-bottom:.5ex;margin:0;}table.cal{border:1px outset gray;margin:.5ex .5em;padding:1px;empty-cells:hide;}table.cal table.cal-header td{padding-top:110px;}table.cal thead tr:first-child{background:url("images/pictures/SteamVolcanoDusk.jpg") no-repeat;background-position:center;font-size:larger;}table.cal table.cal-header td{text-align:center;color:white;background:transparent;border:0;}.cal-arrow{text-decoration:none;color:white;font-weight:bold;}table.cal tr .cal-dayname{background:inherit;}.cal-dayname td{text-align:center;font-size:smaller;text-decoration:none;color:black;padding-bottom:.5ex;}table.cal tbody td{border:.5pt solid #ddd;background:white;text-align:right;}a.cal-hide{text-decoration:none;color:black;font-weight:normal;}table.cal td.cal-today{margin:1px;background:white;border:.5pt solid black;}table.cal td.cal-today a{color:blue;}table.cal td.cal-day{margin:1px;background:white;border:.5pt solid black;}table.cal td.cal-day a{color:red;text-decoration:none;}.diff .block{background:#ccc;padding:.5ex .5em;margin:.5ex 0;}.diff .context{background:white;}.diff .block tt{font-weight:bold;font-family:monospace;margin-left:-.6em;color:black;}.diff del,.diff ins{font-weight:bold;text-decoration:none;}.diff .original,.diff .deleted{background:#fcc;}.diff .final,.diff .added{background:#cfc;}.diff del{background:#f99;}.diff ins{background:#9f9;}.printer{display:none;}div.errors{color:black;border:medium solid #d8caae;margin-top:1em;margin-bottom:1em;padding-left:.8em;padding-right:.8em;padding-top:.8ex;padding-bottom:0;font-size:smaller;clear:both;}.errors{color:#87785c;margin:0;padding:0;text-decoration:none;font-weight:bold;}.error{font-family:monospace;}.error ul{font-family:monospace;}.debug{color:black;font-family:monospace;margin:1ex 0;padding:.5ex .5em;border:medium solid #d8caae;}.clear-floats{clear:both;}.search-context{background:white;font-style:oblique;}.search-term{background:yellow;font-weight:normal;}#LSResult{position:absolute;text-align:left;display:none;z-index:100;background-color:white;border:1px solid #d0d0d0;font-size:9px;overflow:hidden;}#LSHighlight{background-color:#f08000;}#LSResult .evenrow{background-color:#f0f0f0;}.LSEnd{text-align:right;}.LSRow:hover{background-color:white;}.LSRow{padding:1px;}ul.LSRes{margin:0;padding:0;}li.LSRow{margin:0;list-style-image:none;}.toolbar,div.toolbar{margin:.5ex 0;}img.linkicon{vertical-align:middle;}div.wikitext{width:auto;background:url("images/tchecker-white.png") repeat;}.wiki-edithelp{background:url("images/tchecker-sand.png") repeat;}.wiki-edithelp p{background:url("images/tchecker-white.png") repeat;}.diff .block div{position:relative;padding-left:1.5em;}.diff .prefix{position:absolute;left:.5em;top:0;}div.errors{background:url("images/tchecker-sand.png") repeat;}.debug{background:url("images/tchecker-sand.png") repeat;}table.boxed,table.bordered,table.bordered th,table.bordered td{border-width:1px;border-style:solid;border-collapse:collapse;vertical-align:top;}table.boxed td,table.bordered td,table.boxed th,table.bordered th{padding-left:5px;padding-right:5px;padding-top:0;padding-bottom:0;}table.boxed caption,table.bordered caption{text-align:center;font-weight:bold;caption-side:bottom;padding-top:.8em;}table.boxed th,table.bordered th{font-weight:bold;background-color:#d8d8d8;} \ No newline at end of file Modified: trunk/themes/MacOSX/MacOSX-min.css =================================================================== --- trunk/themes/MacOSX/MacOSX-min.css 2010-12-20 13:18:08 UTC (rev 7789) +++ trunk/themes/MacOSX/MacOSX-min.css 2010-12-20 13:25:42 UTC (rev 7790) @@ -1 +1 @@ -body{background:#fafafa url("images/bgpaper8.png");}body.edit{background:#fafafa url("images/bggranular.png");}input[type=submit],input[type=cancel],input[type=image]{vertical-align:middle;}h1,h2,h3,.toolbar,td{font-family:"Lucida Grande",Helvetica,Arial,sans-serif;}input.button{font-family:"Lucida Grande",Helvetica,Arial,sans-serif;}input.numeric{text-align:right;}.wikitext pre{font-family:Monaco,monospace;}input[type=text]{border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;}div.wikiaction input[type=text],div.wikiadmin input[type=text],form.wikiadmin input[type=file]{margin-right:.5em;}div.wikitext{background:white;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;padding-left:.8em;padding-right:.8em;padding-top:.5em;padding-bottom:.5em;margin:.5ex 0;clear:both;}input.wikitext{margin:0;}input[type=text]{height:2.7ex;padding:.4ex .3ex;}div.toolbar{margin:1ex 0;}.interwiki-map thead td{background:#e8e8e8;font-weight:bold;font-size:smaller;}.interwiki-map thead td:first-child{text-decoration:underline;}.interwiki-moniker{background:#eee;}.interwiki-url{background:#f8f8f8;}body.sidebar{font-size:smaller;margin:.5em;}body.sidebar div.wikitext{padding:.5em;}body.sidebar div.wikitext ul{padding-left:1em;}body.sidebar h2{margin-top:0;}div.errors{background:#eee;border:1px solid gray;padding-left:.8em;padding-right:.8em;padding-top:.8ex;padding-bottom:0;margin-top:1em;clear:both;font-size:smaller;}.errors h4{color:black;text-decoration:underline;font-family:"Lucida Grande",Helvetica,Arial,sans-serif;margin-top:0;margin-bottom:.5ex;}.error{font-family:Monaco,monospace;margin:0;font-size:smaller;}.error ul{font-size:smaller;font-family:Monaco,monospace;}.debug{color:black;background:white;font-family:monospace;font-size:smaller;margin:1ex 0;padding:.5ex .5em;border:1px solid #eee;}a.wiki{text-decoration:none;}.wiki,.named-wiki{font-weight:bold;color:#1d42be;}.wikiunknown a,.named-wikiunknown a,.wikiunknown U{text-decoration:none;}.wikiunknown,.named-wikiunknown{color:#555;}a.interwiki{text-decoration:none;}.wikipage{font-weight:bold;}.interwiki,i .interwiki .wikipage,em .interwiki .wikipage{font-style:oblique;}.interwiki .wikipage,i .interwiki,em .interwiki{font-style:normal;}a.wikiaction,a.wikiadmin{text-decoration:none;}img.linkicon,img.rssicon{border:0;}img.rssicon{vertical-align:middle;}img.wiki-button{vertical-align:middle;}a.wikiaction{border:0;}a.backlinks{color:#006;}textarea.wikiedit{width:100%;margin-top:1ex;}p.editdate{font-size:smaller;margin-bottom:0;font-family:"Lucida Grande",Helvetica,Arial,sans-serif;}a.cal-hide,a.cal-arrow{text-decoration:none;}.cal-arrow{font-weight:bold;}.cal-dayname{font-size:smaller;text-decoration:none;}table.cal td{background:white;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;}table.cal-header td{font-size:larger;background:white;border:0;}table.cal td.cal-dayname{background:#e8e8e8;}table.cal td.cal-today{background:#f4f4f4;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;}.transclusion-title{font-family:"Lucida Grande",Helvetica,Arial,sans-serif;font-size:smaller;text-decoration:underline;text-align:right;}div.transclusion{background:#fdfdfd;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;padding-left:.8em;padding-right:.8em;padding-top:0;padding-bottom:0;margin:.5ex;}div.wiki-edithelp .transclusion{font-size:smaller;background:inherit;padding:.5ex .5em;margin:.2ex 5%;}div.wiki-edithelp .transclusion p{margin:0;}div.wiki-edithelp{background:white;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;font-size:smaller;padding:6pt;}div.wiki-message{background:#fff url("images/bggranular.png");border:solid 1px #d8d8d8;padding:6pt;}.printer{display:none;}.diff{background:white;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;}.diff .block{background:#d8d8d8;}.diff .context{background:white;border:none;}.diff .block tt.prefix{font-weight:normal;font-family:monospace;margin-left:-1.6em;color:black;border:none;}.diff ins{font-weight:bolder;}.diff ins{text-decoration:none;}.diff .original,.diff .deleted,.diff .final,.diff .added{background:white;}.diff .original:first-child,.diff .deleted:first-child{border-top:2px solid #f99;}.diff .original,.diff .deleted{background:white;border-left:2px solid #f99;border-right:2px solid #f99;}.diff .original:last-child,.diff .deleted:last-child{border-bottom:2px solid #f99;}.diff .final:first-child,.diff .added:first-child{border-top:2px solid #9f9;}.diff .final,.diff .added{background:white;border-left:2px solid #9f9;border-right:2px solid #9f9;}.diff .final:last-child,.diff .added:last-child{border-bottom:2px solid #9f9;}.diff del{background:#fcc;}.diff ins{background:#cfc;}.pagelist{font-size:smaller;}.pagelist tr.evenrow{background:#f8f8f8;}.pagelist tr.oddrow{background:#eee;}.pagelist thead td{background:#e8e8e8;text-decoration:none;font-weight:bold;}.pagelist thead td u{text-decoration:none;}.pagelist tbody tr:hover>td{border:solid #ff9 2px;}.pagelist tbody tr>td{border:solid transparent 2px;}th.gridbutton{background-color:ThreeDLightShadow;color:black;font-family:Tahoma,Arial,Helvetica,sans-serif;font-size:small;font-weight:normal;height:18px;white-space:nowrap;max-height:24px;padding:5px 0 5px 0;margin:5px 0;float:none;border-width:1px;border-style:solid;border-color:ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight;}input.gridbutton,a.gridbutton,a:hover.gridbutton,a:visited.gridbutton{text-decoration:none;font-size:small;font-weight:normal;font-family:Tahoma,Arial,Helvetica,sans-serif;background-color:ThreeDLightShadow;color:black;}#searchholder{display:inline;}.search-context{background:white;font-style:oblique;}.search-term{background:#9bdaff;font-weight:normal;}#LSResult{position:absolute;text-align:left;display:none;z-index:100;background-color:white;border:1px solid #d0d0d0;font-size:9px;overflow:hidden;}#LSHighlight{background-color:#f08000;}#LSResult .evenrow{background-color:#f0f0f0;}.LSEnd{text-align:right;}.LSRow:hover{background-color:white;}.LSRow{padding:1px;}ul.LSRes{margin:0;padding:0;}li.LSRow{margin:0;list-style-image:none;}.clear-floats{clear:both;}dl{display:table;}dt{display:table;font-weight:bold;vertical-align:baseline;margin-top:1.25ex;margin-bottom:.25ex;padding-left:.25ex;padding-right:.25ex;border-bottom-style:dotted;border-bottom-width:2pt;border-bottom-color:#99c;}dt a.wiki,dt a.named-wiki{text-decoration:none;}dl>dt:first-child{margin-top:0;}dd{position:relative;margin-left:3.5em;margin-bottom:.5ex;padding-left:.125em;padding-bottom:.5ex;padding-right:.125em;border-bottom-style:solid;border-bottom-width:thin;border-bottom-color:#99c;}pre,div.plugin code{color:black;display:block;background-color:#fcfcfc;font-size:90%;line-height:1.25em;margin-top:.25em;margin-left:0;margin-bottom:2ex;margin-right:0;padding-top:.25em;padding-left:.5em;padding-bottom:.25em;padding-right:.5em;border-style:solid;border-width:1px;border-color:#ccc;}pre{background:#fafafa url("images/bgpaper8.png");}ul li.rc-major,ul li.rc-minor{margin-left:0;padding-left:3em;text-indent:-3em;}.transclusion-title{text-align:right;font-style:oblique;font-size:smaller;text-decoration:underline;margin-bottom:.25ex;margin-right:.25em;}.transclusion,.wiki-edithelp{font-size:smaller;}.transclusion{border:1px solid gray;padding-left:.8em;padding-right:.8em;padding-top:0;padding-bottom:0;margin-left:.25em;margin-right:.25em;margin-bottom:.1ex;}.wiki-edithelp{background:white;border:medium solid #fff8dc;padding-left:.5em;padding-right:.5em;padding-top:.75ex;padding-bottom:.75ex;margin-left:0;margin-right:0;margin-top:1ex;margin-bottom:1ex;}.wiki-edithelp p{font-family:Arial,Helvetica,sans-serif;padding-left:.5em;padding-right:.5em;padding-top:.5ex;padding-bottom:.5ex;margin:0;}td.pageinfo{font-weight:bold;}.pageinfo-minoredit,.pageinfo-authorid{font-size:smaller;font-style:oblique;}.printer,.no-css{display:none;}.disabled-plugin{clear:both;margin:1ex 0;padding:0;}.disabled-plugin .title{color:#400;background-color:inherit;font-size:x-small;text-align:right;padding:0 .5em;}.disabled-plugin pre{color:black;background:#ddd;margin:0;padding:.3ex .5em;}span.redirectfrom{font-size:small;font-style:oblique;font-weight:normal;padding-left:1em;}blockquote.mail-style-quote{border-left:medium #284 solid;padding-left:1em;margin-left:0;margin-right:0;}.mail-style-quote blockquote.mail-style-quote{margin-left:-0.6em;}.floatleft{float:left;}.floatright{float:right;}div.wikiblog{margin:1ex 2em;padding:0;}div.wikiblog>div{margin:0;padding:.5ex .5em;}div.wikiblog>div.wikiblog-footer{padding:.2ex .5em;}h3.wikiblog-summary{font-size:medium;font-weight:bold;margin:0 0 1ex 0;}table.wikiblog-form{width:auto;border-collapse:collapse;margin:.25em 0;}.wikiblog-form caption{caption-side:top;font-weight:bold;text-align:left;padding:.5ex .5em;}.wikiblog-form th{vertical-align:top;text-align:right;padding:0 0 .3em .5em;}.wikiblog-form td{padding:.25em .5em;}.wikiblog-form td.submit-button{padding:0;}.wikiblog-form input[type=text],.wikiblog-form textarea{margin:0;width:100%;}div.wikicomment div.wikicomment-footer{padding:.2ex .5em;}div.wikicomment div.wikicomment-footer named-wiki{font-size:small;}table.interwiki-map{margin:1em 2em;}.interwiki-map th{text-decoration:underline;text-align:left;padding-left:1em;}.interwiki-map td.interwiki-url{padding-left:2em;}.interwiki-map th.interwiki-url{padding-left:3em;}.dialog{background-color:#cdf;color:black;margin:2em auto 2em auto;border:thin black solid;width:50%;}.dialog h1,.dialog p,.dialog div{text-align:center;}.dialog h1{font-size:large;margin:.5em 0 1em 0;}.dialog div.message{background-color:white;color:black;color:black;margin:0 1em;padding:.5em .5em;}.dialog p.buttons{margin:1em 0 .5em 0;}.gensmall{font-size:10px;}.genmed{font-size:11px;}td.cat{font-weight:bold;letter-spacing:1px;color:#000;background:url(./images/cellpic1.png);height:27px;}td.row1{background:#eaedf4;color:#000;}td.row2{background:#d9e2ec;color:#000;}td.row3{background:#cad9ea;color:#000;}td.spacerow{background:#cad9ea;color:#000;}.forumline{background:#fff;color:#000;border:1px solid #069;}.box{background:#fff;border:1px solid silver;}.box-title{font-family:Tahoma,sans-serif;font-weight:normal;background-color:#ccc;color:black;text-align:center;border:none;padding:2px 0 2px 0;}.box-data{width:160px;font-size:9pt;font-weight:normal;border:none;}.box-data .wiki{font-weight:normal;}td.sidebar{border-spacing:0;margin:0;}div.boxright{background-color:#e9fbff;width:200px;right:10px;padding:.5em;float:right;border:thin solid #888;padding:.5em;}div.rss{margin:1em;padding:1em;font-size:.9em;background-color:#eee;border:thin dashed #aaa;}div.feed{color:#333;margin:-0.5em;margin-bottom:0;padding:.3em;font-weight:bold;background-color:#f2f2f2;font-size:1.2em;}div.itemdesc{padding-left:1em;}div.rssitem{border-top:thin dashed #aaa;}table.sqlresult{border:1px outset gray;background:white;margin:.5ex .5em;padding:1px;}.sqlresult tr.evenrow{background:#eee;}.sqlresult tr.oddrow{background:white;}table.sqlresult td{margin:1px;border:1px solid gray;}img.tex{border:0;vertical-align:middle;}.boldsmall{font-weight:bold;font-size:11px;}.wikiwyg_toolbar{background:#D3D3D3;border:1px outset;letter-spacing:0;padding:2px;}span.wikiwyg_control_link a{padding-right:8px;}.wikiwyg_button{background:#D3D3D3;border:1px solid #D3D3D3;cursor:pointer;width:20px;height:20px;vertical-align:bottom;}.wikiwyg_button:hover{border:1px outset;}.wikiwyg_button:active{border:1px inset;}.wikiwyg_separator{background:#D3D3D3;border:1px solid #D3D3D3;width:9px;height:20px;vertical-align:bottom;}.wikiwyg_selector{width:70px;}.wikiwyg_wysiwyg table{border-collapse:collapse;margin-bottom:.2em;}.wikiwyg_wysiwyg table td{border:1px;border-style:solid;padding:.2em;vertical-align:top;}textarea.wikiedit,input.wikitext,textarea.summary{background:white;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;padding-left:.8em;padding-right:.8em;padding-top:.5em;padding-bottom:.5em;margin:.5ex 0;clear:both;}.toolbar,div.toolbar{margin:.5ex 0;}div.wikitext{width:auto;}img.linkicon{vertical-align:middle;}.interwiki-map thead td,.interwiki-moniker,.interwiki-url{padding-left:1em;padding-right:1em;}.diff{margin:.5ex 0;padding:1px;}.diff .block{padding:.5ex .5em;}.diff .original,.diff .deleted,.diff .final,.diff .added{padding:1px;}.diff .block div{position:relative;padding-left:1.5em;}.diff .prefix{position:absolute;left:0;top:0;}.diff del,.diff ins{padding-left:.5ex;padding-right:.5ex;}table.boxed,table.bordered,table.bordered th,table.bordered td{border-width:1px;border-style:solid;border-collapse:collapse;vertical-align:top;}table.boxed td,table.bordered td,table.boxed th,table.bordered th{padding-left:5px;padding-right:5px;padding-top:0;padding-bottom:0;}table.boxed caption,table.bordered caption{text-align:center;font-weight:bold;caption-side:bottom;padding-top:.8em;}table.boxed th,table.bordered th{font-weight:bold;background-color:#d8d8d8;} \ No newline at end of file +body{background:#fafafa url("images/bgpaper8.png");}body.edit{background:#fafafa url("images/bggranular.png");}input[type=submit],input[type=cancel],input[type=image]{vertical-align:middle;}h1,h2,h3,.toolbar,td{font-family:"Lucida Grande",Helvetica,Arial,sans-serif;}input.button{font-family:"Lucida Grande",Helvetica,Arial,sans-serif;}input.numeric{text-align:right;}.wikitext pre{font-family:Monaco,monospace;}input[type=text]{border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;}div.wikiaction input[type=text],div.wikiadmin input[type=text],form.wikiadmin input[type=file]{margin-right:.5em;}div.wikitext{background:white;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;padding-left:.8em;padding-right:.8em;padding-top:.5em;padding-bottom:.5em;margin:.5ex 0;clear:both;}input.wikitext{margin:0;}input[type=text]{height:2.7ex;padding:.4ex .3ex;}div.toolbar{margin:1ex 0;}.interwiki-map thead td{background:#e8e8e8;font-weight:bold;font-size:smaller;}.interwiki-map thead td:first-child{text-decoration:underline;}.interwiki-moniker{background:#eee;}.interwiki-url{background:#f8f8f8;}body.sidebar{font-size:smaller;margin:.5em;}body.sidebar div.wikitext{padding:.5em;}body.sidebar div.wikitext ul{padding-left:1em;}body.sidebar h2{margin-top:0;}div.errors{background:#eee;border:1px solid gray;padding-left:.8em;padding-right:.8em;padding-top:.8ex;padding-bottom:0;margin-top:1em;clear:both;font-size:smaller;}.errors{color:black;text-decoration:underline;font-family:"Lucida Grande",Helvetica,Arial,sans-serif;margin-top:0;margin-bottom:.5ex;}.error{font-family:Monaco,monospace;margin:0;font-size:smaller;}.error ul{font-size:smaller;font-family:Monaco,monospace;}.debug{color:black;background:white;font-family:monospace;font-size:smaller;margin:1ex 0;padding:.5ex .5em;border:1px solid #eee;}a.wiki{text-decoration:none;}.wiki,.named-wiki{font-weight:bold;color:#1d42be;}.wikiunknown a,.named-wikiunknown a,.wikiunknown U{text-decoration:none;}.wikiunknown,.named-wikiunknown{color:#555;}a.interwiki{text-decoration:none;}.wikipage{font-weight:bold;}.interwiki,i .interwiki .wikipage,em .interwiki .wikipage{font-style:oblique;}.interwiki .wikipage,i .interwiki,em .interwiki{font-style:normal;}a.wikiaction,a.wikiadmin{text-decoration:none;}img.linkicon,img.rssicon{border:0;}img.rssicon{vertical-align:middle;}img.wiki-button{vertical-align:middle;}a.wikiaction{border:0;}a.backlinks{color:#006;}textarea.wikiedit{width:100%;margin-top:1ex;}p.editdate{font-size:smaller;margin-bottom:0;font-family:"Lucida Grande",Helvetica,Arial,sans-serif;}a.cal-hide,a.cal-arrow{text-decoration:none;}.cal-arrow{font-weight:bold;}.cal-dayname{font-size:smaller;text-decoration:none;}table.cal td{background:white;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;}table.cal-header td{font-size:larger;background:white;border:0;}table.cal td.cal-dayname{background:#e8e8e8;}table.cal td.cal-today{background:#f4f4f4;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;}.transclusion-title{font-family:"Lucida Grande",Helvetica,Arial,sans-serif;font-size:smaller;text-decoration:underline;text-align:right;}div.transclusion{background:#fdfdfd;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;padding-left:.8em;padding-right:.8em;padding-top:0;padding-bottom:0;margin:.5ex;}div.wiki-edithelp .transclusion{font-size:smaller;background:inherit;padding:.5ex .5em;margin:.2ex 5%;}div.wiki-edithelp .transclusion p{margin:0;}div.wiki-edithelp{background:white;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;font-size:smaller;padding:6pt;}div.wiki-message{background:#fff url("images/bggranular.png");border:solid 1px #d8d8d8;padding:6pt;}.printer{display:none;}.diff{background:white;border:1px solid black;border-top:1px solid #7c7c7c;border-left:1px solid #c3c3c3;border-bottom:1px solid #ddd;border-right:1px solid #c3c3c3;}.diff .block{background:#d8d8d8;}.diff .context{background:white;border:none;}.diff .block tt.prefix{font-weight:normal;font-family:monospace;margin-left:-1.6em;color:black;border:none;}.diff ins{font-weight:bolder;}.diff ins{text-decoration:none;}.diff .original,.diff .deleted,.diff .final,.diff .added{background:white;}.diff .original:first-child,.diff .deleted:first-child{border-top:2px solid #f99;}.diff .original,.diff .deleted{background:white;border-left:2px solid #f99;border-right:2px solid #f99;}.diff .original:last-child,.diff .deleted:last-child{border-bottom:2px solid #f99;}.diff .final:first-child,.diff .added:first-child{border-top:2px solid #9f9;}.diff .final,.diff .added{background:white;border-left:2px solid #9f9;border-right:2px solid #9f9;}.diff .final:last-child,.diff .added:last-child{border-bottom:2px solid #9f9;}.diff del{background:#fcc;}.diff ins{background:#cfc;}.pagelist{font-size:smaller;}.pagelist tr.evenrow{background:#f8f8f8;}.pagelist tr.oddrow{background:#eee;}.pagelist thead td{background:#e8e8e8;text-decoration:none;font-weight:bold;}.pagelist thead td u{text-decoration:none;}.pagelist tbody tr:hover>td{border:solid #ff9 2px;}.pagelist tbody tr>td{border:solid transparent 2px;}th.gridbutton{background-color:ThreeDLightShadow;color:black;font-family:Tahoma,Arial,Helvetica,sans-serif;font-size:small;font-weight:normal;height:18px;white-space:nowrap;max-height:24px;padding:5px 0 5px 0;margin:5px 0;float:none;border-width:1px;border-style:solid;border-color:ThreeDHighlight ThreeDDarkShadow ThreeDDarkShadow ThreeDHighlight;}input.gridbutton,a.gridbutton,a:hover.gridbutton,a:visited.gridbutton{text-decoration:none;font-size:small;font-weight:normal;font-family:Tahoma,Arial,Helvetica,sans-serif;back... [truncated message content] |
From: <var...@us...> - 2011-01-04 14:21:38
|
Revision: 7804 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7804&view=rev Author: vargenau Date: 2011-01-04 14:21:32 +0000 (Tue, 04 Jan 2011) Log Message: ----------- Use SUBPAGE_SEPARATOR Modified Paths: -------------- trunk/themes/MonoBook/templates/actionbar.tmpl trunk/themes/default/templates/navbar.tmpl trunk/themes/fusionforge/templates/actionbar.tmpl trunk/themes/wikilens/templates/navbar.tmpl Modified: trunk/themes/MonoBook/templates/actionbar.tmpl =================================================================== --- trunk/themes/MonoBook/templates/actionbar.tmpl 2011-01-04 13:10:27 UTC (rev 7803) +++ trunk/themes/MonoBook/templates/actionbar.tmpl 2011-01-04 14:21:32 UTC (rev 7804) @@ -12,7 +12,7 @@ <div class="portlet" id="p-cactions"> <h5><?php echo _("Views") ?></h5> <ul> - <?php if (!string_ends_with($pagename, _("/Discussion"))) { ?> + <?php if (!string_ends_with($pagename, SUBPAGE_SEPARATOR._("Discussion"))) { ?> <?php $talk = new WikiPageName('Talk:'.$pagename); ?> <?php echo ActionButton(array(), $isActionPage ? _("ActionPage") : _("Article"), Modified: trunk/themes/default/templates/navbar.tmpl =================================================================== --- trunk/themes/default/templates/navbar.tmpl 2011-01-04 13:10:27 UTC (rev 7803) +++ trunk/themes/default/templates/navbar.tmpl 2011-01-04 14:21:32 UTC (rev 7804) @@ -5,7 +5,7 @@ <div id="navbuttons"> <?php if (ENABLE_DISCUSSION_LINK) { ?> <?php // This requires Talk: map to end in "/Discussion" - if (!string_ends_with($page->getName(), _("Discussion"))) { ?> + if (!string_ends_with($page->getName(), SUBPAGE_SEPARATOR._("Discussion"))) { ?> <?php echo $SEP?><?php echo WikiLink(new WikiPagename('Talk:'.$page->getName(), $page->getName()), 'button', _("Discussion")) ?> <?php } else { ?> Modified: trunk/themes/fusionforge/templates/actionbar.tmpl =================================================================== --- trunk/themes/fusionforge/templates/actionbar.tmpl 2011-01-04 13:10:27 UTC (rev 7803) +++ trunk/themes/fusionforge/templates/actionbar.tmpl 2011-01-04 14:21:32 UTC (rev 7804) @@ -13,7 +13,7 @@ <table cellpadding="0" cellspacing="0"> <tr> - <?php if (!string_ends_with($pagename, _("/Discussion"))) { ?> + <?php if (!string_ends_with($pagename, SUBPAGE_SEPARATOR._("Discussion"))) { ?> <?php $talk = new WikiPageName('Talk:'.$pagename); ?> <td class="bold"> <?php echo Button(array(), Modified: trunk/themes/wikilens/templates/navbar.tmpl =================================================================== --- trunk/themes/wikilens/templates/navbar.tmpl 2011-01-04 13:10:27 UTC (rev 7803) +++ trunk/themes/wikilens/templates/navbar.tmpl 2011-01-04 14:21:32 UTC (rev 7804) @@ -6,7 +6,7 @@ <div id="navbuttons"> <?php if (ENABLE_DISCUSSION_LINK) { ?> <?php // This requires Talk: map to end in "/Discussion" - if (!string_ends_with($page->getName(), _("Discussion"))) { ?> + if (!string_ends_with($page->getName(), SUBPAGE_SEPARATOR._("Discussion"))) { ?> <?php echo $NSEP?><?php echo WikiLink(new WikiPagename('Talk:'.$page->getName(), $page->getName()), 'button', _("Discussion")) ?> <?php } else { ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <var...@us...> - 2011-01-05 14:28:49
|
Revision: 7810 http://phpwiki.svn.sourceforge.net/phpwiki/?rev=7810&view=rev Author: vargenau Date: 2011-01-05 14:28:43 +0000 (Wed, 05 Jan 2011) Log Message: ----------- Harmonize comment banner Modified Paths: -------------- trunk/themes/Crao/crao.css trunk/themes/Hawaiian/Hawaiian.css trunk/themes/Sidebar/sidebar.css trunk/themes/SpaceWiki/SpaceWiki.css trunk/themes/Wordpress/Wordpress.css trunk/themes/default/phpwiki-modern.css trunk/themes/default/phpwiki-printer.css trunk/themes/default/phpwiki.css Modified: trunk/themes/Crao/crao.css =================================================================== --- trunk/themes/Crao/crao.css 2011-01-05 14:25:55 UTC (rev 7809) +++ trunk/themes/Crao/crao.css 2011-01-05 14:28:43 UTC (rev 7810) @@ -779,13 +779,8 @@ background-color: #FFF; } -/* - ****************************** - *****INCLUDE-PAGE - ****************************** - */ +/* IncludePage plugin ================================================= */ -/* IncludePage plugin */ .transclusion-title { text-align: right; font-style: oblique; Modified: trunk/themes/Hawaiian/Hawaiian.css =================================================================== --- trunk/themes/Hawaiian/Hawaiian.css 2011-01-05 14:25:55 UTC (rev 7809) +++ trunk/themes/Hawaiian/Hawaiian.css 2011-01-05 14:28:43 UTC (rev 7810) @@ -211,7 +211,8 @@ font-size: smaller; } -/* IncludePage plugin */ +/* IncludePage plugin ================================================= */ + .transclusion-title { text-align: right; font-style: oblique; Modified: trunk/themes/Sidebar/sidebar.css =================================================================== --- trunk/themes/Sidebar/sidebar.css 2011-01-05 14:25:55 UTC (rev 7809) +++ trunk/themes/Sidebar/sidebar.css 2011-01-05 14:28:43 UTC (rev 7810) @@ -1941,9 +1941,9 @@ background-color: #ffce7b; } -/* IncludePage plugin */ +/* IncludePage plugin ================================================= */ + .transclusion-title { - /*font-style: oblique;*/ font-weight: bold; text-decoration: underline; margin-bottom: 0.25ex; Modified: trunk/themes/SpaceWiki/SpaceWiki.css =================================================================== --- trunk/themes/SpaceWiki/SpaceWiki.css 2011-01-05 14:25:55 UTC (rev 7809) +++ trunk/themes/SpaceWiki/SpaceWiki.css 2011-01-05 14:28:43 UTC (rev 7810) @@ -367,12 +367,11 @@ } -/** - * IncludePage plugin - */ +/* IncludePage plugin ================================================= */ + .transclusion-title { font-style: oblique; - font-size: smaller; /* 0.75em; */ + font-size: smaller; text-decoration: none; text-align: right; } Modified: trunk/themes/Wordpress/Wordpress.css =================================================================== --- trunk/themes/Wordpress/Wordpress.css 2011-01-05 14:25:55 UTC (rev 7809) +++ trunk/themes/Wordpress/Wordpress.css 2011-01-05 14:28:43 UTC (rev 7810) @@ -342,7 +342,8 @@ list-style-image: none; } -/* IncludePage plugin */ +/* IncludePage plugin ================================================= */ + .transclusion-title { text-align: right; font-style: oblique; Modified: trunk/themes/default/phpwiki-modern.css =================================================================== --- trunk/themes/default/phpwiki-modern.css 2011-01-05 14:25:55 UTC (rev 7809) +++ trunk/themes/default/phpwiki-modern.css 2011-01-05 14:28:43 UTC (rev 7810) @@ -264,7 +264,8 @@ font-size: smaller; } -/* IncludePage plugin */ +/* IncludePage plugin ================================================= */ + .transclusion-title { text-align: right; margin-right: 0.25em; Modified: trunk/themes/default/phpwiki-printer.css =================================================================== --- trunk/themes/default/phpwiki-printer.css 2011-01-05 14:25:55 UTC (rev 7809) +++ trunk/themes/default/phpwiki-printer.css 2011-01-05 14:28:43 UTC (rev 7810) @@ -159,7 +159,8 @@ display: none; } -/* IncludePage plugin */ +/* IncludePage plugin ================================================= */ + .transclusion-title { text-align: right; font-style: oblique; Modified: trunk/themes/default/phpwiki.css =================================================================== --- trunk/themes/default/phpwiki.css 2011-01-05 14:25:55 UTC (rev 7809) +++ trunk/themes/default/phpwiki.css 2011-01-05 14:28:43 UTC (rev 7810) @@ -363,7 +363,8 @@ list-style-image: none; } -/* IncludePage plugin */ +/* IncludePage plugin ================================================= */ + .transclusion-title { text-align: right; font-style: oblique; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |