wkpark      2006/02/07 16:36:22

  Log:
  init
  
  Status:
  
  Vendor Tag:	VENDOR
  Release Tags:	INIT
  
  N moniwiki-theme/blue/footer.php
  N moniwiki-theme/blue/header.php
  N moniwiki-theme/blue/theme.php
  N moniwiki-theme/blue/css/default.css
  N moniwiki-theme/blue/imgs/bg.png
  N moniwiki-theme/blue/imgs/css.png
  N moniwiki-theme/blue/imgs/kldpwikilogo.png
  N moniwiki-theme/blue/imgs/moniwiki-powered-thin.png
  N moniwiki-theme/blue/imgs/nbl.png
  N moniwiki-theme/blue/imgs/nbr.png
  N moniwiki-theme/blue/imgs/nl.png
  N moniwiki-theme/blue/imgs/nr.png
  N moniwiki-theme/blue/imgs/ntl.png
  N moniwiki-theme/blue/imgs/ntr.png
  N moniwiki-theme/blue/imgs/sl.png
  N moniwiki-theme/blue/imgs/sr.png
  N moniwiki-theme/blue/imgs/xhtml.png
  N moniwiki-theme/blue/imgs.beige/bg.png
  N moniwiki-theme/blue/imgs.beige/nbl.png
  N moniwiki-theme/blue/imgs.beige/nbr.png
  N moniwiki-theme/blue/imgs.beige/nl.png
  N moniwiki-theme/blue/imgs.beige/nr.png
  N moniwiki-theme/blue/imgs.beige/ntl.png
  N moniwiki-theme/blue/imgs.beige/ntr.png
  N moniwiki-theme/blue/imgs.beige/sl.png
  N moniwiki-theme/blue/imgs.beige/sr.png
  
  No conflicts created by this import


wkpark      2006/07/16 03:58:31

  Modified:    blue     footer.php header.php theme.php
  Log:
  enhanced with IE css hack etc
  
  Revision  Changes    Path
  1.2       +12 -10    moniwiki-theme/blue/footer.php
  
  Index: footer.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/footer.php,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- footer.php	7 Feb 2006 07:36:22 -0000	1.1
  +++ footer.php	15 Jul 2006 18:58:31 -0000	1.2
  @@ -1,27 +1,29 @@
   </td>
   <?php
   # enable/disable sidebar
  -$_theme['sidebar']=1;
  -
  -if ($_theme['sidebar']==1) :
  +if ($this->_sidebar==1) :
   ?>
   <td bgcolor='#fafafa'>
   <div id='wikiSideMenu'>
   <?php
   print macro_login($this);
  -print '<div style="font-size:11px;font-family:verdana,sans-serif">';
  +print '<div class="calendar">';
   if ($options['id']=='Anonymous')
     print macro_calendar($this,"'Blog',blog,noweek,archive",'Blog');
   else
  -  print macro_calendar($this,"'$options[id]',blog,noweek,archive",$options['id']);
  +  print macro_calendar($this,"'$options[id]',center,blog,noweek,archive",$options['id']);
   print '</div>';
  -print '<font style="font-size:12px;"><b>';
  +print '<div class="randomQuote">';
   print macro_RandomQuote($this);
  -print '</b></font>';
  -print "<br /><br />\n";
  -print '<font style="font-size:11px">';
  +print '</div>';
  +print '<div class="randomPage">';
   print macro_RandomPage($this,"4,simple");
  -print '</font>';
  +print '</div>';
  +if ($DBInfo->use_tagging) {
  +  print "<div>";
  +  print macro_Keywords($this,"all,tour,limit=15");
  +  print "</div>";
  +}
   ?>
   </div>
   </td>
  
  
  
  1.2       +7 -1      moniwiki-theme/blue/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/header.php,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- header.php	7 Feb 2006 07:36:22 -0000	1.1
  +++ header.php	15 Jul 2006 18:58:31 -0000	1.2
  @@ -1,10 +1,13 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.1 2006/02/07 07:36:22 wkpark Exp $
  +# $Id: header.php,v 1.2 2006/07/15 18:58:31 wkpark Exp $
   #
   include_once("plugin/login.php");
   include_once("plugin/RandomBanner.php");
   include_once("plugin/Calendar.php");
  +if ($DBInfo->use_tagging) {
  +  include_once("plugin/Keywords.php");
  +}
   $login=macro_login($this);
   # theme options
   #$_theme['sidebar']=1;
  @@ -37,11 +40,14 @@
   <div id='wikiPage'>
   <?php echo $title?>
   <div id='wikiHeader'>
  +<div id='pMenuRight'><div id='pMenuLeft'>
   <div id='wikiMenuBar'>
   <div id='wikiIcon'><?php echo $upper_icon.$icons.$rss_icon.$home?></div>
   <?php echo $menu?>
   </div>
   </div>
  +</div></div>
  +<div class='clear'></div>
   <?php echo $msg?>
   <table border='0' width='100%' cellpadding='0' cellspacing='0'><tr valign='top'>
   <td width='100%'>
  
  
  
  1.2       +1 -0      moniwiki-theme/blue/theme.php
  
  Index: theme.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/theme.php,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- theme.php	7 Feb 2006 07:36:22 -0000	1.1
  +++ theme.php	15 Jul 2006 18:58:31 -0000	1.2
  @@ -1,3 +1,4 @@
   <?php
   $css_friendly=1;
  +$_sidebar=1;
   ?>
  
  
  


wkpark      2006/07/16 03:58:31

  Modified:    blue/css default.css
  Log:
  enhanced with IE css hack etc
  
  Revision  Changes    Path
  1.2       +64 -19    moniwiki-theme/blue/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/css/default.css,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- default.css	7 Feb 2006 07:36:22 -0000	1.1
  +++ default.css	15 Jul 2006 18:58:31 -0000	1.2
  @@ -34,6 +34,11 @@
     text-decoration:none;
   }
   
  +form {
  +  margin-bottom:0px; /* IE hack */
  +}
  +
  +
   #sForm {
     position:absolute;
     right:106px;
  @@ -46,6 +51,10 @@
     margin:0px;
   }
   
  +* html #sForm {
  +  padding-right:4px;
  +}
  +
   #sFormB {
     position:absolute;
     right:263px !important; right:263px;
  @@ -105,6 +114,8 @@
     padding-top:10px;
     padding-bottom:10px;
     min-height:400px;
  +  height:auto !important;
  +  height:500px; /* IE min-height hack */
   }
   
   #wikiBanner {
  @@ -118,9 +129,10 @@
   /* a:hover {background-color:#999966;color:white} /* */
   .wikiTitle {
     color:#0471aa;
  -  font-family:Tahoma,Lucida,sans-serif;
  +  font-family:Trebuchet MS,Tahoma,Lucida,sans-serif;
     font-size:22px;
     font-weight:bold;
  +  padding-left:10px;
     text-decoration: none;
   }
   tt.wiki {font-family:Monotype,Lucida Console,lucida,monospace;font-size:12px;}
  @@ -250,14 +262,10 @@
   }
   
   div.message {
  -  margin-top: 6pt;
  -  background-color: #E8E8E8;
  -  border-style:solid;
  -  border-width:1pt;
  -  border-color:#990000;
  -  color:#440000;
  -  padding:0px;
  -  width:98%;
  +  border:2px solid #FF0000;
  +  color:black;
  +  padding:5px 15px 5px 15px;
  +  margin:5px 6px 5px 7px;
   }
   
   .highlight {
  @@ -302,6 +310,7 @@
   }
   
   #wikiTrailer {
  +  font-family:Trebuchet MS,Tahoma,Lucida,sans-serif;
     background-color:#fafafa; 
     padding-left: 20px;
   }
  @@ -334,36 +343,51 @@
   }
   
   #wikiMenu {
  -  padding: 4px 0px;
  -  background-color: #1690c0;
  +  padding: 2px 0px;
  +  /* background-color: #1690c0; /* */
     color: #1690c0;
  -  border-bottom:1px solid #0778A7; 
  +  /* border-bottom:1px solid #0778A7; /* */
   }
   
   #wikiMenu ul {
     margin:0;
     padding:0;
     list-style:none;
  -  }
  +}
   
   #wikiMenu li {
     display:inline;
     margin:0;
     padding: 4px 10px;
     padding-top:5px;
  -  height:16px;
  +  height:21px; /* */
     border-right: 1px solid #3eacce;
   }
   
   #wikiMenuBar {
     padding:6px;
  -  height:43px;
  +  height:30px;
  +}
  +
  +#pMenuLeft {
  +  background: url("../imgs/ml.png") no-repeat left top;
  +  z-index:2;
  +}
  +#pMenuRight {
  +  background: url("../imgs/mr.png") no-repeat right top;
  +  z-index:2;
   }
   
  -#wikiMenu li a:hover, #wikiMenu li:hover {
  -  background-color: #037bb6;
  -  color: #ffffff;
  +#wikiMenu li:hover {
  +  background-color: #8ED5E6; /* default */
     text-decoration: none;
  +  background: url("../imgs/mh.png") repeat right bottom;
  +}
  +
  +#wikiMenu li.current {
  +  background-color: #49ABCF; /* default */
  +  text-decoration: none;
  +  background: url("../imgs/mc.png") repeat right bottom;
   }
   
   #wikiMenu a {
  @@ -372,7 +396,6 @@
   }
   
   #wikiMenu li a:active {
  -  background-color: #ABC7E1;
     color: #b0b0b0;
     text-decoration: none;
   }
  @@ -395,6 +418,7 @@
     width:140px;
     height:100%;
     border-left:1px dotted #e0e0e0;
  +  overflow:hidden;
   }
   
   #wikiBody {
  @@ -554,3 +578,24 @@
   math, math[mode="inline"] {
     font-family: CMSY10, CMEX10, Symbol, Times;
   }
  +
  +.randomQuote {
  +  font-family: Tahoma,sans-serif;
  +  font-weight:bold;
  +  margin-bottom: 10px;
  +  border-bottom: 1px solid #e0e0e0;
  +  border-top: 1px solid #e0e0e0;
  +  padding: 10px 0px 10px 0px;
  +}
  +
  +.randomPage {
  +  font-family: Trebuchet MS,sans-serif;
  +  border-bottom: 1px solid #e0e0e0;
  +  padding: 10px 0px 10px 0px;
  +}
  +
  +.calendar {
  +  font-size:11px;
  +  font-family: Trebuchet MS,sans-serif;
  +}
  +
  
  
  


wkpark      2006/07/16 03:58:32

  Modified:    blue/imgs nbl.png nbr.png nl.png nr.png ntl.png ntr.png
  Log:
  enhanced with IE css hack etc
  
  Revision  Changes    Path
  1.2       +2 -1      moniwiki-theme/blue/imgs/nbl.png
  
  	<<Binary file>>
  
  
  1.2       +4 -8      moniwiki-theme/blue/imgs/nbr.png
  
  	<<Binary file>>
  
  
  1.2       +2 -1      moniwiki-theme/blue/imgs/nl.png
  
  	<<Binary file>>
  
  
  1.2       +2 -1      moniwiki-theme/blue/imgs/nr.png
  
  	<<Binary file>>
  
  
  1.2       +9 -9      moniwiki-theme/blue/imgs/ntl.png
  
  	<<Binary file>>
  
  
  1.2       +16 -49    moniwiki-theme/blue/imgs/ntr.png
  
  	<<Binary file>>
  
  


wkpark      2006/07/16 23:49:51

  Added:       blue/imgs ml.png mr.png
  Log:
  add new menubar icons
  
  Revision  Changes    Path
  1.1                  moniwiki-theme/blue/imgs/ml.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/blue/imgs/mr.png
  
  	<<Binary file>>
  
  


wkpark      2006/07/17 19:55:43

  Added:       blue/imgs error.png mc.png mh.png warn.png
  Log:
  add new imgs
  
  Revision  Changes    Path
  1.1                  moniwiki-theme/blue/imgs/error.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/blue/imgs/mc.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/blue/imgs/mh.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/blue/imgs/warn.png
  
  	<<Binary file>>
  
  


wkpark      2006/07/17 19:56:19

  Modified:    blue/css default.css
  Log:
  fixed message, errlog css classes
  
  Revision  Changes    Path
  1.3       +26 -5     moniwiki-theme/blue/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/css/default.css,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- default.css	15 Jul 2006 18:58:31 -0000	1.2
  +++ default.css	17 Jul 2006 10:56:19 -0000	1.3
  @@ -262,10 +262,30 @@
   }
   
   div.message {
  -  border:2px solid #FF0000;
  +  border:0px;
  +  border-top:2px solid #FFCC00;
     color:black;
  -  padding:5px 15px 5px 15px;
  +  padding:5px 15px 5px 55px;
     margin:5px 6px 5px 7px;
  +  background: #FFF6BF url(../imgs/warn.png) 10px 10px no-repeat;
  +  min-height: 40px;
  +  height: auto !important;
  +  height:40px;
  +}
  +
  +div.message h3 {
  +  border:0px;
  +  font-family:Trebuchet MS,sans-serif;
  +}
  +
  +pre.errlog {
  +  border:0px;
  +  border-top:2px solid #FF0000;
  +  padding-left:55px;
  +  background: #FFF6BF url(../imgs/error.png) 10px 10px no-repeat;
  +  min-height: 40px;
  +  height: auto !important;
  +  height:40px;
   }
   
   .highlight {
  @@ -467,10 +487,11 @@
   /*  background-color:yellow; */
   }
   
  -#wikiHint {
  -  font-family:Georgia,Verdana,Lucida,sans-serif;
  +.wikiHints {
  +  font-family:Trebuchet MS,Verdana,Lucida,sans-serif;
     font-size:10px;
  -  background-color:#E2DAE2;
  +  padding:10px;
  +  background-color:#E6EAFF;
   }
   
   #wikiSister {
  
  
  


wkpark      2006/07/18 21:14:23

  Modified:    blue/imgs moniwiki-powered-thin.png
  Added:       blue/imgs commentarea.png
  Log:
  update images
  
  Revision  Changes    Path
  1.2       +2 -4      moniwiki-theme/blue/imgs/moniwiki-powered-thin.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/blue/imgs/commentarea.png
  
  	<<Binary file>>
  
  


wkpark      2006/07/18 21:14:46

  Modified:    blue/css default.css
  Log:
  update css: IE css hacks etc.
  
  Revision  Changes    Path
  1.4       +20 -10    moniwiki-theme/blue/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/css/default.css,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- default.css	17 Jul 2006 10:56:19 -0000	1.3
  +++ default.css	18 Jul 2006 12:14:46 -0000	1.4
  @@ -243,13 +243,6 @@
     color:black;
   }
   
  -div.diff-sep {
  -  font-family:georgia,Verdana,Lucida Sans TypeWriter,Lucida Console,monospace;
  -  font-size:12px;
  -  background-color:#000000;
  -  color:#FFD700; /* gold */
  -}
  -
   span.diff-added, ins.diff-added {
     color:black;
     background-color: #60FF60;
  @@ -459,6 +452,7 @@
   /*  border: 0px outset #E2ECE5; */
   /*  font-size:16px; 
     border-collapse:collapse; */
  +  margin-top: 3px;
   }
   
   #wikiBody a:link {
  @@ -475,7 +469,8 @@
   }
   
   #wikiContent {
  -  padding: 10px 10px 10px 10px; 
  +  padding: 3px 10px 10px 10px;
  +  margin: 0;
   }
   
   #wikiExtra {
  @@ -572,6 +567,21 @@
     font-family:Verdana,sans-serif;
   }
   
  +.commentForm textarea.wiki {
  +  align:right;
  +  width:443px; height:140px;
  +  background:url(../imgs/commentarea.png) no-repeat left top;
  +  border:none;
  +  padding:4px 8px;
  +}
  +
  +* html .commentForm textarea.wiki { /* IE fix */
  +  background:url(../imgs/commentarea.png) no-repeat left top fixed;
  +  padding-right:20px;
  +}
  +
  +.commentForm textarea.wiki:hover { background-position:left bottom;}
  +
   /* enscript syntax */
   div.wikiPre i,div.wikiPre b{
     font-weight: normal;
  @@ -601,7 +611,7 @@
   }
   
   .randomQuote {
  -  font-family: Tahoma,sans-serif;
  +  font-family: Verdana,Tahoma,sans-serif;
     font-weight:bold;
     margin-bottom: 10px;
     border-bottom: 1px solid #e0e0e0;
  @@ -612,7 +622,7 @@
   .randomPage {
     font-family: Trebuchet MS,sans-serif;
     border-bottom: 1px solid #e0e0e0;
  -  padding: 10px 0px 10px 0px;
  +  padding: 0px 0px 10px 0px;
   }
   
   .calendar {
  
  
  


wkpark      2006/07/18 21:37:20

  Modified:    blue     footer.php header.php
  Log:
  update
  
  Revision  Changes    Path
  1.3       +1 -1      moniwiki-theme/blue/footer.php
  
  Index: footer.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/footer.php,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- footer.php	15 Jul 2006 18:58:31 -0000	1.2
  +++ footer.php	18 Jul 2006 12:37:20 -0000	1.3
  @@ -9,7 +9,7 @@
   print macro_login($this);
   print '<div class="calendar">';
   if ($options['id']=='Anonymous')
  -  print macro_calendar($this,"'Blog',blog,noweek,archive",'Blog');
  +  print macro_calendar($this,"'Blog',blog,noweek,archive,center",'Blog');
   else
     print macro_calendar($this,"'$options[id]',center,blog,noweek,archive",$options['id']);
   print '</div>';
  
  
  
  1.3       +6 -4      moniwiki-theme/blue/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/header.php,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- header.php	15 Jul 2006 18:58:31 -0000	1.2
  +++ header.php	18 Jul 2006 12:37:20 -0000	1.3
  @@ -1,10 +1,12 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.2 2006/07/15 18:58:31 wkpark Exp $
  +# $Id: header.php,v 1.3 2006/07/18 12:37:20 wkpark Exp $
   #
  -include_once("plugin/login.php");
  -include_once("plugin/RandomBanner.php");
  -include_once("plugin/Calendar.php");
  +if ($this->_sidebar) {
  +  include_once("plugin/login.php");
  +  include_once("plugin/RandomBanner.php");
  +  include_once("plugin/Calendar.php");
  +}
   if ($DBInfo->use_tagging) {
     include_once("plugin/Keywords.php");
   }
  
  
  


wkpark      2006/07/18 21:37:20

  Modified:    blue/css default.css
  Log:
  update
  
  Revision  Changes    Path
  1.5       +1 -1      moniwiki-theme/blue/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/css/default.css,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- default.css	18 Jul 2006 12:14:46 -0000	1.4
  +++ default.css	18 Jul 2006 12:37:20 -0000	1.5
  @@ -621,7 +621,7 @@
   
   .randomPage {
     font-family: Trebuchet MS,sans-serif;
  -  border-bottom: 1px solid #e0e0e0;
  +/*  border-bottom: 1px solid #e0e0e0; /* */
     padding: 0px 0px 10px 0px;
   }
   
  
  
  


wkpark      2006/07/18 21:50:19

  Modified:    blue     header.php
  Log:
  fix last changes
  
  Revision  Changes    Path
  1.4       +2 -2      moniwiki-theme/blue/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/header.php,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- header.php	18 Jul 2006 12:37:20 -0000	1.3
  +++ header.php	18 Jul 2006 12:50:19 -0000	1.4
  @@ -1,16 +1,16 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.3 2006/07/18 12:37:20 wkpark Exp $
  +# $Id: header.php,v 1.4 2006/07/18 12:50:19 wkpark Exp $
   #
   if ($this->_sidebar) {
     include_once("plugin/login.php");
     include_once("plugin/RandomBanner.php");
     include_once("plugin/Calendar.php");
  +  $login=macro_login($this);
   }
   if ($DBInfo->use_tagging) {
     include_once("plugin/Keywords.php");
   }
  -$login=macro_login($this);
   # theme options
   #$_theme['sidebar']=1;
   
  
  
  


wkpark      2006/07/19 19:04:43

  Removed:     blue/imgs.beige bg.png nbl.png nbr.png nl.png nr.png ntl.png
                        ntr.png sl.png sr.png
  Log:
  remove


wkpark      2006/07/22 20:16:59

  Modified:    blue/css default.css
  Log:
  update
  
  Revision  Changes    Path
  1.6       +4 -1      moniwiki-theme/blue/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/css/default.css,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- default.css	18 Jul 2006 12:37:20 -0000	1.5
  +++ default.css	22 Jul 2006 11:16:58 -0000	1.6
  @@ -51,6 +51,10 @@
     margin:0px;
   }
   
  +#sForm input.goto {
  +  font-family: "Trebuchet MS",Georgia,sans-serif;
  +}
  +
   * html #sForm {
     padding-right:4px;
   }
  @@ -629,4 +633,3 @@
     font-size:11px;
     font-family: Trebuchet MS,sans-serif;
   }
  -
  
  
  


wkpark      2006/12/22 18:11:24

  Modified:    blue     footer.php header.php
  Log:
  support popup
  
  Revision  Changes    Path
  1.4       +1 -1      moniwiki-theme/blue/footer.php
  
  Index: footer.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/footer.php,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- footer.php	18 Jul 2006 12:37:20 -0000	1.3
  +++ footer.php	22 Dec 2006 09:11:24 -0000	1.4
  @@ -1,7 +1,7 @@
   </td>
   <?php
   # enable/disable sidebar
  -if ($this->_sidebar==1) :
  +if ($this->_sidebar==1 and !$this->popup) :
   ?>
   <td bgcolor='#fafafa'>
   <div id='wikiSideMenu'>
  
  
  
  1.5       +5 -1      moniwiki-theme/blue/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/header.php,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- header.php	18 Jul 2006 12:50:19 -0000	1.4
  +++ header.php	22 Dec 2006 09:11:24 -0000	1.5
  @@ -1,6 +1,6 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.4 2006/07/18 12:50:19 wkpark Exp $
  +# $Id: header.php,v 1.5 2006/12/22 09:11:24 wkpark Exp $
   #
   if ($this->_sidebar) {
     include_once("plugin/login.php");
  @@ -24,12 +24,14 @@
   -->
   </div>
   <div id='mainBody'>
  +<?php if (!$this->popup): ?>
   <div id='sFormB'></div><div id='sForm'>
   <form name='go' id='go' action='' method='get' onsubmit="return moin_submit();">
   <input type='text' name='value' size='20' accesskey='s' class='goto' style='width:120px' />
   <input type='hidden' name='action' value='goto' />
   <input type='submit' name='status' value='Go' class='goto' style='width:23px;' />
   </form></div>
  +<?php endif;?>
   <div id='topBanner'>
   <!--
   <img src="<?php echo $this->themeurl?>/imgs/kldpwikilogo.png"/>
  @@ -40,6 +42,7 @@
   <div id='pTopRight'><div id='pTopLeft'>
   
   <div id='wikiPage'>
  +<?php if  (!$this->popup): ?>
   <?php echo $title?>
   <div id='wikiHeader'>
   <div id='pMenuRight'><div id='pMenuLeft'>
  @@ -49,6 +52,7 @@
   </div>
   </div>
   </div></div>
  +<?php endif;?>
   <div class='clear'></div>
   <?php echo $msg?>
   <table border='0' width='100%' cellpadding='0' cellspacing='0'><tr valign='top'>
  
  
  


wkpark      2006/12/23 15:08:00

  Modified:    blue     header.php
  Log:
  update
  
  Revision  Changes    Path
  1.6       +2 -2      moniwiki-theme/blue/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/header.php,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- header.php	22 Dec 2006 09:11:24 -0000	1.5
  +++ header.php	23 Dec 2006 06:08:00 -0000	1.6
  @@ -1,6 +1,6 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.5 2006/12/22 09:11:24 wkpark Exp $
  +# $Id: header.php,v 1.6 2006/12/23 06:08:00 wkpark Exp $
   #
   if ($this->_sidebar) {
     include_once("plugin/login.php");
  @@ -47,7 +47,7 @@
   <div id='wikiHeader'>
   <div id='pMenuRight'><div id='pMenuLeft'>
   <div id='wikiMenuBar'>
  -<div id='wikiIcon'><?php echo $upper_icon.$icons.$rss_icon.$home?></div>
  +<div id='wikiIcon'><?php echo $upper_icon.$icons.$rss_icon?></div>
   <?php echo $menu?>
   </div>
   </div>
  
  
  


wkpark      2006/12/23 15:08:00

  Modified:    blue/css default.css
  Log:
  update
  
  Revision  Changes    Path
  1.7       +30 -0     moniwiki-theme/blue/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/css/default.css,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- default.css	22 Jul 2006 11:16:58 -0000	1.6
  +++ default.css	23 Dec 2006 06:08:00 -0000	1.7
  @@ -369,7 +369,10 @@
   #wikiMenu ul {
     margin:0;
     padding:0;
  +  padding-bottom:3px !important; /* for FF */
  +  padding-bottom:2px;
     list-style:none;
  +  height:1.7em;
   }
   
   #wikiMenu li {
  @@ -379,6 +382,13 @@
     padding-top:5px;
     height:21px; /* */
     border-right: 1px solid #3eacce;
  +
  +  list-style: none;
  +/* background-color:whitesmoke; */
  +/* the next 4 lines are magic for IE */
  +  float: left;
  +  position: relative;
  +  vertical-align:top;
   }
   
   #wikiMenuBar {
  @@ -430,6 +440,26 @@
     text-decoration:none;
   }
   
  +#wikiAction ul {
  +  list-style:none;
  +  padding:0;
  +  margin:0;
  +  white-space:nowrap;
  +}
  +
  +#wikiAction li {
  +  display:inline;
  +  padding-left:5px;
  +  padding-right:5px;
  +  border-right:1px solid #e0e0e0;
  +  float:left;
  +}
  +
  +#wikiAction a {
  +  font-size:12px;
  +}
  +
  +
   #wikiSideMenu {
     padding:5px 5px 5px 5px;
     width:140px;
  
  
  


wkpark      2007/01/08 15:35:39

  Modified:    blue     header.php
  Log:
  update
  
  Revision  Changes    Path
  1.7       +5 -3      moniwiki-theme/blue/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/header.php,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- header.php	23 Dec 2006 06:08:00 -0000	1.6
  +++ header.php	8 Jan 2007 06:35:39 -0000	1.7
  @@ -1,6 +1,6 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.6 2006/12/23 06:08:00 wkpark Exp $
  +# $Id: header.php,v 1.7 2007/01/08 06:35:39 wkpark Exp $
   #
   if ($this->_sidebar) {
     include_once("plugin/login.php");
  @@ -25,12 +25,14 @@
   </div>
   <div id='mainBody'>
   <?php if (!$this->popup): ?>
  -<div id='sFormB'></div><div id='sForm'>
  +<div id='goContainer'>
  +<div id='goFormLeft'><div id='goFormRight'>
  +<div id='goForm'>
   <form name='go' id='go' action='' method='get' onsubmit="return moin_submit();">
   <input type='text' name='value' size='20' accesskey='s' class='goto' style='width:120px' />
   <input type='hidden' name='action' value='goto' />
   <input type='submit' name='status' value='Go' class='goto' style='width:23px;' />
  -</form></div>
  +</form></div></div></div></div>
   <?php endif;?>
   <div id='topBanner'>
   <!--
  
  
  


wkpark      2007/01/08 15:35:40

  Modified:    blue/css default.css
  Log:
  update
  
  Revision  Changes    Path
  1.8       +48 -31    moniwiki-theme/blue/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/blue/css/default.css,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- default.css	23 Dec 2006 06:08:00 -0000	1.7
  +++ default.css	8 Jan 2007 06:35:40 -0000	1.8
  @@ -10,13 +10,18 @@
     margin-right:0px;
     margin-top:0px;
     margin-bottom:0px;
  +  background: url("../imgs/bg.png") repeat-x;
   }
   
   #mainBody {
     /* top:15px; /* */
  -  padding-left:100px;
  -  padding-right:100px;
  -  background: url("../imgs/bg.png") repeat-x;
  +  min-width:750px;
  +  margin: 0px auto 0px auto;
  +  width: 80%;
  +  min-height:400px;
  +  height: auto !important; /* IE min-height hack */
  +  height:400px;
  +  /*\*/ min-width: 750px; /* IE fix */
   }
   
   #topHeader {
  @@ -36,37 +41,42 @@
   
   form {
     margin-bottom:0px; /* IE hack */
  +  vertical-align:middle;
   }
   
  +#goContainer {
  +  width:180px;
  +  float:right;
  +  /*\*/ padding-right: 10px; /* IE fix */
  +}
   
  -#sForm {
  -  position:absolute;
  -  right:106px;
  -  top:11px;
  -  height:36px;
  +#goFormRight {
  +  /* position:absolute; /* */
     background: url("../imgs/sr.png") no-repeat right top;
  -  padding-right:10px;
  -  padding-top:8px !important;
  -  padding-top:5px;
     margin:0px;
  +  margin-left:10px;
   }
   
  -#sForm input.goto {
  +#goForm input.goto {
     font-family: "Trebuchet MS",Georgia,sans-serif;
   }
   
  -* html #sForm {
  +#goForm {
  +  padding:6px !important;
  +  padding:5px;
  +  height:36px;
  +  /*\*/ padding-right: 30px; /* IE fix */
  +  padding-right: 30px;
  +}
  +
  +* html #goForm {
     padding-right:4px;
   }
   
  -#sFormB {
  -  position:absolute;
  -  right:263px !important; right:263px;
  -  top:11px;
  +#goFormLeft {
  +  /* position:absolute; /* */
  +  background: url("../imgs/sl.png") no-repeat left top;
     height:36px;
  -  background: url("../imgs/sl.png") no-repeat top;
  -  width:15px;
  -  margin-top:0px;
   }
   
   #topBanner {
  @@ -139,6 +149,11 @@
     padding-left:10px;
     text-decoration: none;
   }
  +
  +.wikiTitle a,.wikiTitle a:active,.wikiTitle a:visited {
  +  color: #0279b5;
  +}
  +
   tt.wiki {font-family:Monotype,Lucida Console,lucida,monospace;font-size:12px;}
   tt.foot {
     font-family:Tahoma,lucida,monospace;
  @@ -354,13 +369,15 @@
   
   #wikiIcon {
     float:right;
  -  padding: 3px 10px;
  +  padding: 8px 10px;
     text-align: right;
     vertical-align: middle;
   }
   
   #wikiMenu {
  -  padding: 2px 0px;
  +  padding:0;
  +  margin:0;
  +  margin-left:10px;
     /* background-color: #1690c0; /* */
     color: #1690c0;
     /* border-bottom:1px solid #0778A7; /* */
  @@ -372,16 +389,15 @@
     padding-bottom:3px !important; /* for FF */
     padding-bottom:2px;
     list-style:none;
  -  height:1.7em;
  +  height:44px;
   }
   
   #wikiMenu li {
     display:inline;
     margin:0;
  -  padding: 4px 10px;
  -  padding-top:5px;
  -  height:21px; /* */
  -  border-right: 1px solid #3eacce;
  +  padding: 10px 10px;
  +  padding-bottom: 8px !important;
  +  padding-bottom: 9px; /* IE */
   
     list-style: none;
   /* background-color:whitesmoke; */
  @@ -389,11 +405,12 @@
     float: left;
     position: relative;
     vertical-align:top;
  +  background: url("../imgs/mi.png") repeat-x right bottom;
   }
   
   #wikiMenuBar {
  -  padding:6px;
  -  height:30px;
  +  padding:3px !important;
  +  height:40px;
   }
   
   #pMenuLeft {
  @@ -408,13 +425,13 @@
   #wikiMenu li:hover {
     background-color: #8ED5E6; /* default */
     text-decoration: none;
  -  background: url("../imgs/mh.png") repeat right bottom;
  +  background: url("../imgs/mih.png") repeat-x right bottom;
   }
   
   #wikiMenu li.current {
     background-color: #49ABCF; /* default */
     text-decoration: none;
  -  background: url("../imgs/mc.png") repeat right bottom;
  +  background: url("../imgs/mic.png") repeat right bottom;
   }
   
   #wikiMenu a {
  
  
  


wkpark      2007/01/08 15:35:40

  Added:       blue/imgs mi.png mic.png mih.png
  Log:
  update
  
  Revision  Changes    Path
  1.1                  moniwiki-theme/blue/imgs/mi.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/blue/imgs/mic.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/blue/imgs/mih.png
  
  	<<Binary file>>
  
  


wkpark      2008/12/26 22:11:15

  moniwiki-theme/azblue2 - New directory

wkpark      2008/12/26 22:12:04

  moniwiki-theme/azblue2/css - New directory

wkpark      2008/12/26 22:12:35

  moniwiki-theme/azblue2/imgs - New directory

wkpark      2008/12/26 22:13:09

  Added:       azblue2/css default.css
  Log:
  new default theme added for the moniwiki-1.1.3
  
  Revision  Changes    Path
  1.1                  moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  @import url("../../../css/_base.css");
  @import url("../../../css/_extra.css");
  @import url("../../../css/_calendar.css");
  
  body {
    font-family:Georgia,Verdana,Lucida,sans-serif;font-size:12px;
    color:#000;
    margin-left:0px;
    margin-right:0px;
    margin-top:0px;
    margin-bottom:0px;
  }
  
  #mainBody {
  /* top:15px; /* */
  /* padding-left:100px;
    padding-right:100px; */
    min-width:750px;
    margin: 0px auto 0px auto;
    width: 80%;
    min-height:400px;
    height: auto !important; /* IE min-height hack */
    height:400px;
    /*\*/ min-width: 750px; /* IE fix */
  }
  
  div {
  /* border:1px solid red; /* */
  }
  
  #topHeader {
    padding-left:15px;
    padding-top:2px;
    color:white;
    font-family:Tahoma,Verdana,sans-serif;
    font-size:11px;
    font-weight:bold;
  }
  
  #topHeader a{
    color:white;
    text-decoration:none;
  }
  
  #topBanner {
    height:48px;
    font-size:40px;
    font-family:Tahoma,sans-serif;
    color:white;
    padding-left:8px;
    padding-top:10px;
    padding-bottom:0px;
    margin:0px;
    overflow-y:hidden;
    /* overflow:hidden; does not work correctly in the mozilla */
  }
  
  #pTopLeft {
    background: url("../imgs/ntl.png") no-repeat;
    z-index:4;
  }
  
  #pTopRight {
    background: url("../imgs/ntr.png") no-repeat right top;
    z-index:4;
  }
  
  #pBanSpace {
    height:3px;
  }
  
  #pBanner {
    height:50px;
    padding:0px;
    font-size:36px;
    text-align:center;
    font-family:Trebuchet MS,Tahoma,Lucida,sans-serif;
    margin:0;
    line-height:20%;
  }
  
  #pBanner p {
    padding:0;
    margin:0;
    font-size:12px;
  }
  
  #pBanner img {
    vertical-align:middle;
  }
  
  #pBanLeft {
    padding:0;
    margin:0;
  }
  
  #pBanRight {
    padding:0;
    margin:0;
  }
  
  #pTitle {
    padding:0px;
  }
  
  #pTitle img {
    vertical-align:middle;
  }
  
  #pBottomMargin {
    height:20px;
  }
  
  #pBottomLeft {
    background: url("../imgs/nbl.png") no-repeat left bottom;
    z-index:1;
    padding:0;
  }
  #pBottomRight {
    background: url("../imgs/nbr.png") no-repeat right bottom;
    z-index:1;
    padding:0;
  }
  
  .pBodyLeft {
    background: url("../imgs/nl.png") repeat-y left;
    z-index:-5;
  }
  .pBodyRight {
    background: url("../imgs/nr.png") repeat-y right;
    z-index:-5;
  }
  
  #wikiSplash {
    height:150px;
    background: url("../imgs/img2.jpg") repeat-x;
    padding:0;
    margin:0;
    margin-left:20px;
    margin-right:22px;
  }
  
  #goForm {
    float:right;
    padding: 3px 6px;
  }
  
  form {
    margin-bottom:0px; /* IE hack */
  }
  
  #wikiPage, #wikiHeadPage {
    margin-left:13px;
    margin-right:15px;
  }
  
  #wikiHeadPage {
    padding-top:10px;
  }
  
  #wikiPage {
    padding-top:5px;
    min-height:400px;
    height: auto !important; /* IE min-height hack */
    height:400px;
    padding-bottom:10px;
  }
  
  #wikiBanner {
    padding-top:5px;
    text-align:center;
    font-family: "Trebuchet MS",Georgia,sans-serif;
  }
  
  a:link { color: #0686db;}
  a:visited { color: #000000;}
  /* a:hover {background-color:#999966;color:white} /* */
  .wikiTitle {
    padding-left:10px;
    font-family:Trebuchet MS,Tahoma,Lucida,sans-serif;
    font-size:22px;
    font-weight:bold;
    text-decoration: none;
    display:inline;
  }
  
  .wikiTitle a,.wikiTitle a:active,.wikiTitle a:visited {
    color: #0686db;
  }
  
  tt.wiki {font-family:Monotype,Lucida Console,lucida,monospace;font-size:12px;}
  tt.foot {
    font-family:Tahoma,lucida,monospace;
    font-size:11px;
    vertical-align: super;
  }
  
  tt.sister {
    font-family:Tahoma,lucida,monospace;
    font-size:11px;
    vertical-align: super;
    text-decoration: none;
  }
  
  pre {
    white-space:pre-wrap;
    white-space: -moz-pre-wrap;
    overflow: auto;
  }
  
  pre.wiki {
    padding-left:6px;
    padding-top:6px; 
    font-family:"Bitstream Vera Sans Mono", Courier, GulimChe, monospace !important;
    background-color:#000000;
    color:#c0c0c0;
    border:1px solid #ececec;
    border-left:10px solid #ececec;
    padding:10px;
    white-space:pre;
    white-space: -moz-pre-wrap;
    overflow-x: auto;
  }
  
  pre.console {
    background-color: #000000;
    color: #E0E0E0;
    padding: .25em ;
    border: 2px inset #808080;
  }
  
  pre.quote {
    padding-left:6px;
    padding-top:6px;
    white-space:pre-wrap;
    white-space: -moz-pre-wrap; 
    font-family:Georgia,monotype,lucida,monospace;font-size:14px;
    background-color: #E9ECEF;
  }
  
  .wikiSyntax {
    border:1px solid #ECECEC;
    border-left:10px solid #ECECEC;
    padding: 10px 0;
  }
  
  .line.alt {
    background-color:#272727;
  }
  
  .line {
    padding-left:10px;
  }
  
  table.wiki {
    border-collapse: collapse;
    margin:2px;
  /* background-color:#E2ECE5;
    background-color: #F8F7F0;
    border: 0px outset #ddddb0; */
  }
  
  table.wiki tr {
    background-color: #F8F8F8; 
  /* border-collapse: collapse; */
  /* border: 0px inset #EAF2F4; */
  }
  
  table.wiki td {
    border: 1px solid #969696;
  }
  
  textarea.wiki { width:98%; }
  
  td.info, th.info {
    background:#E2E2E2 url("../imgs/infotrbg.png") repeat-x;
  }
  
  #wikiContent h1, #wikiContent h2, #wikiContent h3 {
    font-family:Tahoma,sans-serif;
    padding-left:2px;
    border-bottom:1px solid #C0c0c0;
  }
  
  h1 a, h2 a, h3 a, h4 a, h5 a {
    text-decoration:none;
  }
  
  ul {
    list-style-image: url(../imgs/li1.png);
  }
  
  ul>li ul>li {
    list-style-image: url(../imgs/li2.png);
  }
  
  ol {
    list-style-image: none;
  }
  
  h2,h1 {
    padding-top:10px;
  }
  
  * html a.perma:visited { /* IE hack */
    color:#000;
  }
  
  div.message {
    margin-top: 3pt;
    padding:0px 5px;
    /* background: #FFF1B9 url(../imgs/warn.png) 10px 10px no-repeat; */
    background: #E0E0E0 url(../imgs/msgbg.png) repeat-x; /* */
    min-height: 60px;
    height: auto !important;
    height:60px;
    /* border-color:#FF9853; /* */
    /* border-width:2px 0 0px 0; /* */
    border-width:0;
    margin:0px 15px;
  }
  
  div.message h3 {
    margin:0px;
    border:0px;
    font-family:Trebuchet MS,sans-serif;
    font-size:20px;
    line-height:300%;
  }
  
  pre.errlog {
    padding-left:55px;
    background: #FFE784 url(../imgs/error.png) 10px 10px no-repeat;
    min-height: 40px;
    height: auto !important;
    border-width:2px 0 2px 0;
    height:40px;
  }
  
  .highlight {
    background-color:#FFFF40;
  }
  
  #wikiGoto {
    font-family:Tahoma,Lucida,sans-serif;
    font-size:11px;
  }
  
  #wikiGoto input[type="text"] {
    font-family:Tahoma,Lucida,sans-serif;
    font-size:11px;
    width:100px;
  }
  
  input[value="Go"] {
    font-family:Tahoma,Lucida,sans-serif;
    font-size:10px;
    width:26px;
  }
  
  input[value="OK"] {
    font-family:Tahoma,Lucida,sans-serif;
    font-size:10px;
    width:26px;
  }
  
  .searchResult input[value="Go"] {
    font-size:2em;
    width:auto;
  }
  
  .searchResult { text-align:center; }
  
  .searchResult input {
    font-size: 2em;
    font-weight:bold;
    font-family: Trebuchet MS, "Times New Roman", Times, serif;
  }
  
  table.closure, td.closure{
    background-color: #E9ECEF;
  }
  
  /*  */
  .wikiHr {
    border:0px solid;
    padding: 0px 0px; /* */
    margin-top:0px;
    height:1px;  
  /* background: #000 url(hr1.gif) no-repeat scroll center; */
  }
  
  #wikiTrailer {
    padding:0;
    padding-left: 20px;
    font-family: "Trebuchet MS",Georgia,sans-serif;
  }
  
  .wikiNavigation {
    background-color:#E0E0E0; 
    padding-top: 5px;
    padding-bottom: 5px;
  }
  
  #wikiOrigin {
    background-color:#fafafa; 
    padding-left: 20px;
    padding-top:3px;
    padding-bottom:3px;
  }
  
  #wikiHeader {
  /*  border-left: 0.8em solid #7B9AC5; /* */
  /*  border: 1px solid #7B9AC5; /* */
    clear:both;
    color: #000000;
    padding: 0;
    margin-left:5px;
  }
  
  #wikiHeader a:link {color:#000000;}
  #wikiHeader a:visited {color:#000000;}
  
  #wikiMenuBar {
    padding:2px;
    padding-top:3px;
    height:41px; /* important !!! for IE */
    padding-bottom:0;
    margin:0;
    margin-left:5px;
  }
  
  #pMenuLeft {
    background: url("../imgs/ml.png") no-repeat left top;
    z-index:2;
  }
  #pMenuRight {
    background: url("../imgs/mr.png") no-repeat right top;
    z-index:2;
  }
  
  #wikiIcon {
    visibility:hidden;
    float:right;
    padding: 7px 15px;
    text-align: right;
    vertical-align: middle;
  }
  
  #wikiMenu {
  /*
    background-color: #1690c0;
    color: #1690c0;
  */
    margin:0;
    padding:0;
  }
  
  #wikiMenu ul {
    margin:0;
    padding:0;
    list-style:none;
    margin-left:0;
    padding-bottom:3px !important; /* for FF */
    padding-bottom:2px;
    height:43px !important;
    height:44px;
  }
  
  #wikiMenu li.first {
    margin-left:5px;
  }
  
  #wikiMenu li {
    display:inline;
    margin:0px;
    padding: 10px 10px;
    padding-bottom: 8px !important; /* for FF */
    padding-bottom: 9px;
    float: left;
    position: relative;
    vertical-align:top;
    background: transparent url("../imgs/mi.png") no-repeat right top;
  }
  
  #wikiMenu li:hover, #wikiMenu li.current:hover {
    background-color: #98D3FC; /* default */
    /* background-color: #355F88; /* dark blue */
    /* background-color: #F2B568; /* orange */
    text-decoration: none;
    background: transparent url("../imgs/mih.png") no-repeat right top;
  }
  
  #wikiMenu li.current {
    text-decoration: none;
    background: transparent url("../imgs/mic.png") no-repeat right top;
  }
  
  #wikiMenu li:hover a{
  /* color: #1999ee; /* */
    color: #ffffff; /* */
  }
  
  #wikiMenu li a:active {
    text-decoration: none;
  }
  
  #wikiMenu a, #wikiMenu a:visited, #wikiMenu a:link {
    margin: 0;
    text-decoration: none;
    color:white;
  }
  
  #wikiMenu a{
    color:white;
    font-size:11px;
    font-weight:bold;
    font-family: Tahoma,Verdana,sans-serif;
    text-decoration:none;
  }
  
  #wikiAction ul {
    list-style:none;
    padding:0;
    margin:0;
    white-space:nowrap;
  }
  
  #wikiAction li {
    display:inline;
    padding-left:5px;
    padding-right:5px;
    border-right:1px solid #e0e0e0;
    float:left;
  }
  
  #wikiAction a {
    font-size:12px;
  }
  
  #wikiBody {
    color: black;
  /*  background-color: #fff; /* */
    overflow: hidden; /* magic XXX */
  /*  border: 1px dotted #c0c0c0; /* */
  /*  border-left: 0.8em solid #E2ECE2;
    border-right: 0.8em solid #E2ECE2; */
  /*  border-left: 0.8em dotted; /*solid #6A2525; */
  /*  border-right: 0.8em solid #6A2525; */
  /*  text-transform: lowercase; /* */
  /*  margin: 10px 10px 0px 10px; */
  /*  padding: 5px 1em 5px 1em; */
  /*  margin-left: 20px; */
  /*  padding-left: 1em; /* */
  /*  text-indent: 10px; */
  /*  border: 0px outset #E2ECE5; */
  /*  font-size:16px; 
    border-collapse:collapse; */
  }
  
  #wikiBody a:link {
    text-decoration:none;
    color: #125Fab;
  }
  
  #wikiBody a:visited {
    /* border-bottom: 1px dotted #bbb; */
    color: #125fab;
  }
  
  #wikiBody a:hover {
    color: #2285E8;
    text-decoration:none;
  }
  
  #wikiContent {
  }
  
  #wikiExtra {
  /*  padding-top: 1em; /* */
  }
  
  #wikiFooter {
    clear:both;
    padding: 0.5em 2em;
  /*  background-color:yellow; */
  }
  
  .wikiHints {
    font-family:Georgia,Verdana,Lucida,sans-serif;
    font-size:10px;
    background-color:#C0D3D2;
    padding:5px;
  }
  
  #wikiSister {
  /*  background-color:lightgreen; /* */
  }
  
  #wikiPreview {
    border: 2px solid #a0a0a0;
    margin: 5px 5px 5px 5px;
    padding: 5px 1em 5px 1em;
  }
  
  
  div.indent {
    margin-top: 3px;
    padding-left: 22px;
  }
  
  div.quote {
    background: transparent url("../imgs/quote-open.png") no-repeat;
    padding-top: 3px;
    background-color: #f8f8f8; /* */
  }
  
  div.diff-removed {
    background-color:#EEBfbb;
  }
  
  del.diff-removed {
    color: #999999;
    background-color:white !important; /* */
    /* background-color:#f0f0f0; /* */
    border-right:2px solid #f0f0f0;
    border-left:2px solid #f0f0f0;
    text-decoration:line-through;
  }
  
  ins.diff-added {
    background-color:#ccffcc;
  }
  
  span.diff-added {
    background: url("../../../imgs/misc/diffbg.png") repeat-x;
  }
  
  span.diff-removed {
    background: url("../../../imgs/misc/diffbg.png") repeat-x;
    background-position:left -25px;
  }
  
  table.info td {
    font-family:courial new,sans-serif;
  }
  
  th.rev {
    font-family:courial new,sans-serif;
  }
  
  div.hint { font-size: 10px; background-color: #369; color:white;}
  a.purple { font-size: 10px; text-decoration:none;}
  
  /* Blog CSS */
  a.purple { font-size: 10px; text-decoration:none;}
  div.blog { width:90%; padding: 0em 1em 0em 1em; }
  span.blog-user { font-size:10px; }
  div.blog-title { font-size:16px; font-weight:bold; }
  div.blog-comments { }
  div.blog-comment { padding:1em 1em 1em 2em; margin-bottom:5px;border-left: 4px solid #E4F1F4; background-color:#F0F6F8;}
  div.blog-comments .separator { display:none;}
  div.blog-action { text-align:right; font-size:9px; }
  
  div.blog-date { font-size:18px; font-weight:bold; padding-bottom:5px;}
  span.blog-user { font-size:10px; }
  
  div.blog-summary { margin-bottom:10px;}
  
  div.trackback-hint { font-size: 10px; padding: 1em 1em 1em 1em;background-color: #eee;}
  /* Calendar */
  td.day { background: #e0e0e0; text-align: center;}
  td.today { background:#ffffff; text-align: center;}
  span.blogged {
    text-decoration:none;
    font-weight:bold; color:#000000; text-align: center;
  }
  
  .Calendar a{text-decoration:none;color:black;}
  
  caption.month {
    font-weight:bold;
    white-space:nowrap;
  }
  
  /* HierarchicalWiki */
  .wikiGroup {
    font-weight:bold;
    padding-left:10px;
    font-family:Tahoma,Lucida,sans-serif;
    font-size:x-small;
    color: #0686db;
  }
  
  /* login */
  #wikiLogin {
    font-family:Tahoma,sans-serif;
    font-size:x-small;
    font-weight:bold;
  }
  
  #wikiLogin input {
    font-family:Verdana,sans-serif;
    /* border:1px solid #848284; /* */
    font-size:x-small;
    font-weight:normal;
  }
  
  #commentForm {
    padding:5px;
    background-color:#eeeeee;
  }
  
  #commentForm input {
    /* border:1px solid #848284; /* */
    font-size:x-small;
    font-family:Verdana,sans-serif;
  }
  
  /* enscript syntax */
  div.wikiPre i,div.wikiPre b{
    font-weight: normal;
    font-style: normal;
  }
  
  img.imgLeft {
    margin-right : 15px;
    margin-bottom : 5px;
  }
  
  img.imgRight {
    margin-left : 10px;
    margin-bottom : 5px;
  }
  
  span.externalLink {
    display: none;
  }
  
  span.lineNumber {
    color:#c0c0c0;
    /* color:#ffff00; /* */
  }
  
  math, math[mode="inline"] {
    font-family: CMSY10, CMEX10, Symbol, Times;
  }
  
  .sectionEdit a:link {
    color:#3D9CB4;
  }
  
  .commentForm textarea.wiki {
    align:right;
    width:412px; height:136px;
    background:url(../imgs/commentarea.png) no-repeat left top;
    border:none;
    padding:4px 8px;
  }
  
  * html .commentForm textarea.wiki { /* IE fix */
    background:url(../imgs/commentarea.png) no-repeat left top fixed;
    padding-right:20px;
  }
  
  .commentForm textarea.wiki:hover { background-position:left bottom;}
  
  #goForm input.goto {
    width:174px !important; 
    height:25px;
    background:url(../imgs/goinput2.png) no-repeat left top;
    border:none;
    padding:6px 7px;
    font-family: "Trebuchet MS",Georgia,sans-serif;
    font-size:16px;
    line-height:130%;
  }
  
  * html #goForm input.goto { /* IE fix */
    background:url(../imgs/goinput2.png) no-repeat left top fixed;
  }
  
  #goForm input.goto:hover {
    background-position:left bottom;
  }
  
  #goForm input.submitBtn {
  width:40px !important;
  height:35px;
  color:#FFF;
  font-weight:bold;
  margin-top:0px;
  padding:5px 5px;
  font-size:11px;
  background:url(../imgs/gobutton2.png) no-repeat left top;
  cursor:pointer;
  border:none;}
  
  #goForm input.submitBtn:hover {
    background-position:left bottom;
  }
  
  #container {
    margin: 0 auto;
  }
  
  #mycontent { /* theme specific */
  /*  margin-right:140px; /* */
    padding-right:5px;
  }
  
  #wikiSideMenu {
    float:right;
    display:inline;
    padding:5px;
    width:140px;
    border-left:1px dotted #e0e0e0;
    height:100%;
  }
  
  .randomQuote {
    font-family: Verdana,Tahoma,sans-serif;
    font-weight:bold;
    margin-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
    padding: 10px 0px 10px 0px;
  }
  
  .randomPage {
    font-family: Trebuchet MS,sans-serif;
  /*  border-bottom: 1px solid #e0e0e0; /* */
    padding: 0px 0px 10px 0px;
  }
  
  .calendar {
    font-size:11px;
    font-family: Trebuchet MS,sans-serif;
  }
  
  #topIcon {
    text-align:right;
    padding-right:20px;
  }
  
  .resizable-textarea .grippie {
    height: 14px !important;
    height: 16px;
    background: #F0F0F0 url(../imgs/grippie.png) no-repeat 100% 100%;
    border: 1px solid #E7E7E7;
    border-top-width: 0;
    cursor: s-resize;
  }
  
  #toTop {
    float:right;
  }
  
  #subMain ul {
    list-style:none;
    padding-left:5px;
  }
  
  #subMenu ul {
    padding-left:15px;
  }
  
  
  


wkpark      2008/12/26 22:13:12

  Added:       azblue2/imgs add.png bgl.png bgr.png commentarea.png css.png
                        error.png favorite.png feed.gif feed.png
                        gobutton.png gobutton2.png goinput.png goinput2.png
                        grippie.png img2.jpg infotrbg.png li1.png li2.png
                        mi.png mic.png mih.png ml.png
                        moniwiki-powered-thin.png mr.png msgbg.png nbl.png
                        nbr.png new.png nl.png nr.png ntl.png ntr.png
                        quote-open.png record.png rt.png top.gif warn.png
                        xhtml.png
  Log:
  new default theme added for the moniwiki-1.1.3
  
  Revision  Changes    Path
  1.1                  moniwiki-theme/azblue2/imgs/add.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/bgl.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/bgr.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/commentarea.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/css.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/error.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/favorite.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/feed.gif
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/feed.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/gobutton.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/gobutton2.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/goinput.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/goinput2.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/grippie.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/img2.jpg
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/infotrbg.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/li1.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/li2.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/mi.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/mic.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/mih.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/ml.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/moniwiki-powered-thin.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/mr.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/msgbg.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/nbl.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/nbr.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/new.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/nl.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/nr.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/ntl.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/ntr.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/quote-open.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/record.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/rt.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/top.gif
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/warn.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/xhtml.png
  
  	<<Binary file>>
  
  


wkpark      2008/12/26 22:30:47

  Added:       azblue2  footer.php header.php theme.php
  Log:
  the new azblue2 theme for the moniwiki-1.1.3
  
  Revision  Changes    Path
  1.1                  moniwiki-theme/azblue2/footer.php
  
  Index: footer.php
  ===================================================================
  </div>
  </div>
  <div id='wikiFooter'>
  <?php
  
  $validator_xhtml=$DBInfo->validator_xhtml ? $DBInfo->validator_xhtml:'http://validator.w3.org/check/referer';
  $validator_css=$DBInfo->validator_css ? $DBInfo->validator_xhtml:'http://jigsaw.w3.org/css-validator';
  
  $banner= <<<FOOT
   <a href="$validator_xhtml"><img
    src="$this->themeurl/imgs/xhtml.png"
    style='border:0;vertical-align:middle' width="80" height="15"
    alt="Valid XHTML 1.0!" /></a>
  
   <a href="$validator_css"><img
    src="$this->themeurl/imgs/css.png"
    style='border:0;vertical-align:middle' width="80" height="15"
    alt="Valid CSS!" /></a>
  
   <a href="http://moniwiki.sourceforge.net/"><img
    src="$this->themeurl/imgs/moniwiki-powered-thin.png"
    style='border:0;vertical-align:middle' width="80" height="15"
    alt="powered by MoniWiki" /></a>
  FOOT;
  
    print $menu;
    print "<div id='toTop'><a href='#top' id='bottom'><img style='border:0' src='$this->themeurl/imgs/top.gif' /></a></div>";
    print '<div style="align:center" id="wikiBanner">'.$banner.'<br />';
    if ($lastedit)
      print "last modified $lastedit $lasttime<br />";
    print 'Processing time '.$timer;
    print '</div>';
  ?>
  </div>
  </div></div></div></div></div></div>
  
  
  
  1.1                  moniwiki-theme/azblue2/header.php
  
  Index: header.php
  ===================================================================
  <?php
  # MoniWiki Theme by wkpark at kldp.org
  # $Id: header.php,v 1.1 2008/12/26 13:30:47 wkpark Exp $
  #
  if ($this->_sidebar) {
    include_once("plugin/login.php");
    include_once("plugin/RandomBanner.php");
    include_once("plugin/Calendar.php");
    $login=macro_login($this);
  }
  if ($DBInfo->use_tagging) {
    include_once("plugin/Keywords.php");
  }
  # theme options
  #$_theme['sidebar']=1;
  
  if ($this->_width) {
    print <<<EOF
  <style type='text/css'>
  #mainBody { width:$this->_width;};
  </style>
  EOF;
  }
  
  ?>
  <div id='topHeader'>
  <!--
  &middot; <a href='http://kldp.org'>KLDP.org</a> &middot;
  <a href='http://kldp.net'>KLDP.net</a> &middot;
  <a href='http://wiki.kldp.org'>KLDP Wiki</a> &middot;
  <a href='http://bbs.kldp.org'>KLDP BBS</a> &middot;
  -->
  </div>
  <div id='mainBody'>
  <!--
  <div id='topBanner'>
  <img src="<?php echo $this->themeurl?>/imgs/kldpwikilogo.png"/>
  </div>
  -->
  <?php if ($this->_topicon): ?>
  <div id='topIcon'>
  <a href='?action=edit'><img src='<?php echo $this->themeurl?>/imgs/record.png' alt='*' style='border:0' /></a>
  <a href='?action=new'><img src='<?php echo $this->themeurl?>/imgs/add.png' alt='+' style='border:0' /></a>
  <a href='?action=subscribe'><img src='<?php echo $this->themeurl?>/imgs/favorite.png' alt='#' style='border:0' /></a>
  <a href='?action=rss_rc'><img src='<?php echo $this->themeurl?>/imgs/rss.png' alt='.)' style='border:0' /></a>
  </div>
  <?php endif;?>
  <div class='pBodyRight'><div class='pBodyLeft'>
  <div id='pTopRight'><div id='pTopLeft'>
  <div id='pBanSpace'></div>
  <div id='wikiHeadPage'>
  <?php
  if ($this->popup!=1) :
  ?>
  <?php if ($this->_topbanner): ?>
  <div id='pBanRight'><div id='pBanLeft'>
   <div id='pBanner'>
  <img src='<?php echo $DBInfo->logo_img?>' /><?php
    echo $DBInfo->sitename;
    if ($DBInfo->site_description) echo '<p class="siteDescription">'.$DBInfo->site_description.'</p>';
  ?>
   </div>
  <?php endif; /* topbanner */?>
  <div id='goForm'>
  <form id='go' action='' method='get' onsubmit="return moin_submit();">
  <div>
  <input type='text' name='value' size='20' accesskey='s' class='goto' style='width:120px' />
  <input type='hidden' name='action' value='goto' />
  <input type='submit' name='status' class='submitBtn' value='Go' style='width:35px;' />
  </div>
  </form>
  </div>
  <div id='pTitle'>
  <?php if (!$this->_topbanner and $this->_logo): ?>
  <img src='<?php echo $DBInfo->logo_img?>' style='text-align:left;' alt='moniwiki' />
  <?php endif; /* topbanner */?>
  <?php echo $title?></div>
  <?php if ($this->_topbanner): ?>
   </div>
  </div>
  <?php endif; /* topbanner */?>
  <?php endif; /* popup */?>
  </div>
  </div></div>
  </div></div>
  <?php if ($this->_splash):?>
  <div class='pBodyRight'><div class='pBodyLeft'>
   <div id='wikiSplash'>
   </div>
  </div></div>
  <?php endif; /* _splash */?>
  <span class='clear' ><!-- for IE --></span>
  <div class='pBodyRight'><div class='pBodyLeft'>
  <div id='pBottomRight'><div id='pBottomLeft'>
  <div id='wikiPage'>
  <span class='clear'></span>
  <?php if ($this->popup) :?>
  &nbsp;<!-- oops!! firefox bug workaround :( -->
  <?php else:?>
  <div id='wikiHeader'>
   <div id='pMenuRight'><div id='pMenuLeft'>
    <div id='wikiMenuBar'>
     <div id='wikiIcon'><?php echo $upper_icon.$icons.$rss_icon?></div>
  <?php echo $menu?>
    </div>
   </div></div>
  </div>
  <span class='clear'></span>
  <?php endif; /* popup */?>
  <?php echo $msg?>
  <div id='container'>
  <?php
  # enable/disable sidebar
  if ($this->_sidebar==1) :
  ?>
  <div id='wikiSideMenu'>
  <?php
  print macro_login($this);
  print '<div class="calendar">';
  if ($options['id']=='Anonymous')
    print macro_calendar($this,"'Blog',blog,noweek,archive,center",'Blog');
  else
    print macro_calendar($this,"'$options[id]',blog,noweek,archive,center",$options['id']);
  print '</div>';
  
  if ($this->_submenu==1) :
    print '<div id="subMain">';
    echo $submain;
    print '</div>';
    print '<div id="subMenu">';
    echo $submenu;
    print '</div>';
  endif;
  print '<div class="randomQuote">';
  print macro_RandomQuote($this);
  print '</div>';
  print '<div class="randomPage">';
  print macro_RandomPage($this,"4,simple");
  print '</div>';
  if ($DBInfo->use_tagging) {
    print "<div>";
    print macro_Keywords($this,"all,tour,limit=15");
    print "</div>";
  }
  ?>
  </div>
  <?php
  endif;
  
  ?>
  <div id='mycontent'>
  
  
  
  1.1                  moniwiki-theme/azblue2/theme.php
  
  Index: theme.php
  ===================================================================
  <?php
  $css_friendly=1; # please do not change it.
  # theme options
  $_sidebar=0; # enable sidebar
  $_submenu=0; # enable submenu
  $_topbanner=0; # enable top banner
  $_splash=0; # enable splash image
  $_logo=1; # enable logo
  
  $imgdir=$themeurl."/imgs";
  $icon['rss']="<img src='$imgdir/feed.png' alt='RSS' style='vertical-align:middle;border:0px' />";
  ?>
  
  
  


wkpark      2008/12/30 18:19:46

  Modified:    azblue2  footer.php header.php theme.php
  Log:
  update
  
  Revision  Changes    Path
  1.2       +1 -1      moniwiki-theme/azblue2/footer.php
  
  Index: footer.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/footer.php,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- footer.php	26 Dec 2008 13:30:47 -0000	1.1
  +++ footer.php	30 Dec 2008 09:19:46 -0000	1.2
  @@ -24,7 +24,7 @@
   FOOT;
   
     print $menu;
  -  print "<div id='toTop'><a href='#top' id='bottom'><img style='border:0' src='$this->themeurl/imgs/top.gif' /></a></div>";
  +  print "<div id='toTop'><a href='#top' id='bottom'><img style='border:0' alt='^' src='$this->themeurl/imgs/top.gif' /></a></div>";
     print '<div style="align:center" id="wikiBanner">'.$banner.'<br />';
     if ($lastedit)
       print "last modified $lastedit $lasttime<br />";
  
  
  
  1.2       +140 -2    moniwiki-theme/azblue2/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/header.php,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- header.php	26 Dec 2008 13:30:47 -0000	1.1
  +++ header.php	30 Dec 2008 09:19:46 -0000	1.2
  @@ -1,16 +1,19 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.1 2008/12/26 13:30:47 wkpark Exp $
  +# $Id: header.php,v 1.2 2008/12/30 09:19:46 wkpark Exp $
   #
   if ($this->_sidebar) {
     include_once("plugin/login.php");
  -  include_once("plugin/RandomBanner.php");
  +  #include_once("plugin/RandomBanner.php");
     include_once("plugin/Calendar.php");
     $login=macro_login($this);
   }
   if ($DBInfo->use_tagging) {
     include_once("plugin/Keywords.php");
   }
  +if ($DBInfo->use_scrap) {
  +  include_once("plugin/scrap.php");
  +}
   # theme options
   #$_theme['sidebar']=1;
   
  @@ -18,6 +21,7 @@
     print <<<EOF
   <style type='text/css'>
   #mainBody { width:$this->_width;};
  +
   </style>
   EOF;
   }
  @@ -113,16 +117,144 @@
   # enable/disable sidebar
   if ($this->_sidebar==1) :
   ?>
  +<style type='text/css'>
  +/* Toggle */
  +/* Hiding/Showing the side menu from http://wiki.phpbb.com/ */
  +#toggle {
  +	padding: 5px;
  +	width: 5%;
  +	left: 12%;
  +	top: 28px;
  +	margin-left: -24px;
  +}
  +
  +#toggle-handle {
  +	display: block;
  +	display: inline;
  +	width: 18px;
  +	height: 19px;
  +	float: left;
  +	background: url(<?php echo $this->themeurl?>/imgs/toggle.png) no-repeat;
  +}
  +
  +#toggle-handle.hide {
  +	background-position:0% 0%;
  +}
  +#toggle-handle.hide:hover {
  +	background-position:bottom 0%;
  +}
  +#toggle-handle.show {
  +	background-position:100% 0%;
  +}
  +#toggle-handle.show:hover {
  +	background-position:bottom 100%;
  +}
  +
  +</style>
  +<script type="text/javascript">
  +/**
  + * Hiding/Showing the side menu from http://wiki.phpbb.com/
  + *
  + * adopt cookie and simplified for MoniWiki. 2008/12/28
  + *
  + */
  +function toggleMenu(sect)
  +{
  +	if (typeof Effect != 'undefined') { // prototype.js
  +		var dur = 0.5;
  +		if (toggle) {
  +			new Effect.SlideDown(sect, { duration: dur, afterFinish: function() {Element.show(sect);} });
  +		} else {
  +			new Effect.SlideUp(sect, { duration: dur, afterFinish: function() {Element.hide(sect);} });
  +		}
  +	} else if (typeof MooTools != 'undefined') { // mootools
  +		var mySlide = new Fx.Slide(sect, {mode: 'horizontal'} );
  +		if (sect.parentNode.clientWidth == '0' || sect.style.display == 'none') {
  +			mySlide.slideIn();
  +		} else {
  +			mySlide.slideOut();
  +		}
  +	} else {
  +		if (sect.style.display == 'none') {
  +			sect.style.display = 'block';
  +		} else {
  +			sect.style.display = 'none';
  +		}
  +	}
  +}
  +
  +function switch_menu()
  +{
  +	var moni_cookie = '_moni_menu_';
  +	var menu = document.getElementById('wikiSideMenu');
  +	var toggle = document.getElementById('toggle');
  +	var handle = document.getElementById('toggle-handle');
  +	var menu_state = handle.className;
  +
  +	var exp = new Date();
  +	exp.setTime(exp.getTime() + 24*60*60*90*1000);
  +	var expire = '; expires=' + exp.toGMTString();
  +
  +	switch (menu_state) {
  +	// hide
  +	case 'show':
  +		//toggleMenu(menu);
  +		menu.style.display = 'none';
  +		handle.className = 'hide';
  +		document.cookie = moni_cookie + '=0' + expire;
  +		break;
  +
  +	// show
  +	case 'hide':
  +		//toggleMenu(menu);
  +		menu.style.display = 'block';
  +		handle.className = 'show';
  +		document.cookie = moni_cookie + '=1' + expire;
  +		break;
  +	}
  +}
  +
  +function check_menu()
  +{
  +	var moni_cookie = '_moni_menu_';
  +	var menu = document.getElementById('wikiSideMenu');
  +	var toggle = document.getElementById('toggle');
  +	var handle = document.getElementById('toggle-handle');
  +	var menu_state = handle.className;
  +
  +	var pos = document.cookie.indexOf(moni_cookie + '=');
  +	if (pos > -1) {
  +		if (document.cookie.charAt(pos+moni_cookie.length+1)==1) {
  +			handle.className = 'show';
  +		} else {
  +			handle.className = 'hide';
  +			menu.style.display = 'none';
  +		}
  +	}
  +}
  +</script>
  +
  +<div id='wikiSideMenuContainer'>
  +<div id="toggle">
  +<a id="toggle-handle" class='show' accesskey="m" onclick="switch_menu(); return false;" href="#"></a>
  +</div>
   <div id='wikiSideMenu'>
   <?php
   print macro_login($this);
  +if ($this->_calendar==1) :
   print '<div class="calendar">';
   if ($options['id']=='Anonymous')
     print macro_calendar($this,"'Blog',blog,noweek,archive,center",'Blog');
   else
     print macro_calendar($this,"'$options[id]',blog,noweek,archive,center",$options['id']);
   print '</div>';
  +endif;
   
  +if ($DBInfo->use_scrap) {
  +  print "<div class='scrap'>";
  +  print macro_Scrap($this);
  +  print "</div>";
  +}
   if ($this->_submenu==1) :
     print '<div id="subMain">';
     echo $submain;
  @@ -131,9 +263,11 @@
     echo $submenu;
     print '</div>';
   endif;
  +if ($this->_randomquote==1) :
   print '<div class="randomQuote">';
   print macro_RandomQuote($this);
   print '</div>';
  +endif;
   print '<div class="randomPage">';
   print macro_RandomPage($this,"4,simple");
   print '</div>';
  @@ -144,6 +278,10 @@
   }
   ?>
   </div>
  +</div>
  +<script type='text/javascript'>
  +check_menu();
  +</script>
   <?php
   endif;
   
  
  
  
  1.2       +3 -1      moniwiki-theme/azblue2/theme.php
  
  Index: theme.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/theme.php,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- theme.php	26 Dec 2008 13:30:47 -0000	1.1
  +++ theme.php	30 Dec 2008 09:19:46 -0000	1.2
  @@ -1,7 +1,9 @@
   <?php
   $css_friendly=1; # please do not change it.
   # theme options
  -$_sidebar=0; # enable sidebar
  +$_sidebar=1; # enable sidebar
  +$_calendar=0; # enable calendar
  +$_randomquote=1; # enable randomquote 1
   $_submenu=0; # enable submenu
   $_topbanner=0; # enable top banner
   $_splash=0; # enable splash image
  
  
  


wkpark      2008/12/30 18:19:46

  Modified:    azblue2/css default.css
  Log:
  update
  
  Revision  Changes    Path
  1.2       +51 -4     moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- default.css	26 Dec 2008 13:13:09 -0000	1.1
  +++ default.css	30 Dec 2008 09:19:46 -0000	1.2
  @@ -478,6 +478,7 @@
     padding-bottom: 8px !important; /* for FF */
     padding-bottom: 9px;
     float: left;
  +  height: 16px;
     position: relative;
     vertical-align:top;
     background: transparent url("../imgs/mi.png") no-repeat right top;
  @@ -697,6 +698,8 @@
     font-family:Tahoma,sans-serif;
     font-size:x-small;
     font-weight:bold;
  +  text-align:center;
  +  border-bottom: 1px solid #e0e0e0;
   }
   
   #wikiLogin input {
  @@ -802,31 +805,43 @@
   
   #container {
     margin: 0 auto;
  +  height:100%;
   }
   
   #mycontent { /* theme specific */
   /*  margin-right:140px; /* */
     padding-right:5px;
  +  height:100%;
   }
   
  +#wikiSideMenuContainer {
  +  float:right;
  +  max-width:150px;
  +  width:auto !important;
  +  width:400px;
  +  height:100%;
  +}
   #wikiSideMenu {
     float:right;
  -  display:inline;
  -  padding:5px;
     width:140px;
  +  padding:5px;
     border-left:1px dotted #e0e0e0;
     height:100%;
   }
   
   .randomQuote {
  -  font-family: Verdana,Tahoma,sans-serif;
  +  font-family: Georgia,Verdana,Tahoma,sans-serif;
     font-weight:bold;
     margin-bottom: 10px;
     border-bottom: 1px solid #e0e0e0;
  -  border-top: 1px solid #e0e0e0;
     padding: 10px 0px 10px 0px;
   }
   
  +.wikiFortune {
  +  border: 1px solid #f0f0f0;
  +  padding: 15px;
  +}
  +
   .randomPage {
     font-family: Trebuchet MS,sans-serif;
   /*  border-bottom: 1px solid #e0e0e0; /* */
  @@ -864,3 +879,35 @@
   #subMenu ul {
     padding-left:15px;
   }
  +
  +.scrap li {
  +  list-style: none;
  +  padding-left:0px;
  +}
  +
  +.scrap ul {
  +  list-style: none;
  +  padding-left:0px;
  +}
  +
  +.scrap {
  +  border-bottom: 1px solid #e0e0e0;
  +}
  +
  +#save_state {
  +  background-color: #ffffca;
  +}
  +
  +.recentChanges .date, .recentChanges .hits {
  +  font-family:Trebuchet MS,Tahoma,Lucida,sans-serif;
  +}
  +.recentChanges .hits, .recentChanges .editinfo {
  +  text-align:right;
  +}
  +.recentChanges .user, .recentChanges .editinfo {
  +  font-family:Trebuchet MS,Tahoma,Lucida,sans-serif;
  +}
  +
  +.recentChanges tr.alt {
  +  background-color: #f0f0f0;
  +}
  
  
  


wkpark      2008/12/30 18:20:15

  Added:       azblue2/imgs toggle.png
  Log:
  add for toggle menu
  
  Revision  Changes    Path
  1.1                  moniwiki-theme/azblue2/imgs/toggle.png
  
  	<<Binary file>>
  
  


wkpark      2008/12/31 20:15:52

  Modified:    azblue2  header.php
  Log:
  fix for IE
  
  Revision  Changes    Path
  1.3       +2 -2      moniwiki-theme/azblue2/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/header.php,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- header.php	30 Dec 2008 09:19:46 -0000	1.2
  +++ header.php	31 Dec 2008 11:15:52 -0000	1.3
  @@ -1,6 +1,6 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.2 2008/12/30 09:19:46 wkpark Exp $
  +# $Id: header.php,v 1.3 2008/12/31 11:15:52 wkpark Exp $
   #
   if ($this->_sidebar) {
     include_once("plugin/login.php");
  @@ -49,7 +49,7 @@
   <a href='?action=rss_rc'><img src='<?php echo $this->themeurl?>/imgs/rss.png' alt='.)' style='border:0' /></a>
   </div>
   <?php endif;?>
  -<div class='pBodyRight'><div class='pBodyLeft'>
  +<div class='pBodyTopRight'><div class='pBodyTopLeft'>
   <div id='pTopRight'><div id='pTopLeft'>
   <div id='pBanSpace'></div>
   <div id='wikiHeadPage'>
  
  
  


wkpark      2008/12/31 20:15:52

  Modified:    azblue2/css default.css
  Log:
  fix for IE
  
  Revision  Changes    Path
  1.3       +17 -2     moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- default.css	30 Dec 2008 09:19:46 -0000	1.2
  +++ default.css	31 Dec 2008 11:15:52 -0000	1.3
  @@ -2,6 +2,7 @@
   @import url("../../../css/_extra.css");
   @import url("../../../css/_calendar.css");
   
  +html { height: 100%; }
   body {
     font-family:Georgia,Verdana,Lucida,sans-serif;font-size:12px;
     color:#000;
  @@ -9,6 +10,7 @@
     margin-right:0px;
     margin-top:0px;
     margin-bottom:0px;
  +  height:100%;
   }
   
   #mainBody {
  @@ -115,20 +117,33 @@
     background: url("../imgs/nbl.png") no-repeat left bottom;
     z-index:1;
     padding:0;
  +  height:100%;
   }
   #pBottomRight {
     background: url("../imgs/nbr.png") no-repeat right bottom;
     z-index:1;
     padding:0;
  +  height:100%;
  +}
  +
  +.pBodyTopLeft {
  +  background: url("../imgs/nl.png") repeat-y left;
  +  z-index:-5;
  +}
  +.pBodyTopRight {
  +  background: url("../imgs/nr.png") repeat-y right;
  +  z-index:-5;
   }
   
   .pBodyLeft {
     background: url("../imgs/nl.png") repeat-y left;
     z-index:-5;
  +  height:100%;
   }
   .pBodyRight {
     background: url("../imgs/nr.png") repeat-y right;
     z-index:-5;
  +  height:100%;
   }
   
   #wikiSplash {
  @@ -161,7 +176,7 @@
   #wikiPage {
     padding-top:5px;
     min-height:400px;
  -  height: auto !important; /* IE min-height hack */
  +  height: 100% !important; /* IE min-height hack */
     height:400px;
     padding-bottom:10px;
   }
  @@ -818,7 +833,7 @@
     float:right;
     max-width:150px;
     width:auto !important;
  -  width:400px;
  +  width:150px;
     height:100%;
   }
   #wikiSideMenu {
  
  
  


wkpark      2009/01/02 14:55:01

  Modified:    azblue2  header.php theme.php
  Log:
  $_toptitle option added to postion the title under the menubar
  
  Revision  Changes    Path
  1.4       +6 -2      moniwiki-theme/azblue2/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/header.php,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- header.php	31 Dec 2008 11:15:52 -0000	1.3
  +++ header.php	2 Jan 2009 05:55:01 -0000	1.4
  @@ -1,6 +1,6 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.3 2008/12/31 11:15:52 wkpark Exp $
  +# $Id: header.php,v 1.4 2009/01/02 05:55:01 wkpark Exp $
   #
   if ($this->_sidebar) {
     include_once("plugin/login.php");
  @@ -78,7 +78,7 @@
   <?php if (!$this->_topbanner and $this->_logo): ?>
   <img src='<?php echo $DBInfo->logo_img?>' style='text-align:left;' alt='moniwiki' />
   <?php endif; /* topbanner */?>
  -<?php echo $title?></div>
  +<?php if ($this->_toptitle) echo $title;?></div>
   <?php if ($this->_topbanner): ?>
    </div>
   </div>
  @@ -89,6 +89,7 @@
   </div></div>
   <?php if ($this->_splash):?>
   <div class='pBodyRight'><div class='pBodyLeft'>
  + <div style='clear:both'></div>
    <div id='wikiSplash'>
    </div>
   </div></div>
  @@ -286,4 +287,7 @@
   endif;
   
   ?>
  +<?php if (empty($this->_toptitle)) echo '<div class="wikiTitle">'.$title.'</div>';?>
  +<?php echo $trail?>
   <div id='mycontent'>
  +<?php echo $subindex?>
  
  
  
  1.3       +2 -0      moniwiki-theme/azblue2/theme.php
  
  Index: theme.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/theme.php,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- theme.php	30 Dec 2008 09:19:46 -0000	1.2
  +++ theme.php	2 Jan 2009 05:55:01 -0000	1.3
  @@ -1,6 +1,7 @@
   <?php
   $css_friendly=1; # please do not change it.
   # theme options
  +$_newtheme=1;
   $_sidebar=1; # enable sidebar
   $_calendar=0; # enable calendar
   $_randomquote=1; # enable randomquote 1
  @@ -8,6 +9,7 @@
   $_topbanner=0; # enable top banner
   $_splash=0; # enable splash image
   $_logo=1; # enable logo
  +$_toptitle=1; # old-style title.
   
   $imgdir=$themeurl."/imgs";
   $icon['rss']="<img src='$imgdir/feed.png' alt='RSS' style='vertical-align:middle;border:0px' />";
  
  
  


wkpark      2009/01/02 14:55:01

  Modified:    azblue2/css default.css
  Log:
  $_toptitle option added to postion the title under the menubar
  
  Revision  Changes    Path
  1.4       +7 -3      moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- default.css	31 Dec 2008 11:15:52 -0000	1.3
  +++ default.css	2 Jan 2009 05:55:01 -0000	1.4
  @@ -147,8 +147,8 @@
   }
   
   #wikiSplash {
  -  height:150px;
  -  background: url("../imgs/img2.jpg") repeat-x;
  +  height:80px;
  +  background: url("../imgs/favorite.png") repeat-x;
     padding:0;
     margin:0;
     margin-left:20px;
  @@ -190,7 +190,7 @@
   a:link { color: #0686db;}
   a:visited { color: #000000;}
   /* a:hover {background-color:#999966;color:white} /* */
  -.wikiTitle {
  +span.wikiTitle {
     padding-left:10px;
     font-family:Trebuchet MS,Tahoma,Lucida,sans-serif;
     font-size:22px;
  @@ -203,6 +203,10 @@
     color: #0686db;
   }
   
  +div.wikiTitle {
  +  padding-left:10px;
  +}
  +
   tt.wiki {font-family:Monotype,Lucida Console,lucida,monospace;font-size:12px;}
   tt.foot {
     font-family:Tahoma,lucida,monospace;
  
  
  


wkpark      2009/01/02 14:55:02

  Removed:     azblue2/imgs img2.jpg
  Log:
  $_toptitle option added to postion the title under the menubar


wkpark      2009/01/03 02:07:13

  Modified:    azblue2  theme.php
  Log:
  comment out rss icon
  
  Revision  Changes    Path
  1.4       +1 -1      moniwiki-theme/azblue2/theme.php
  
  Index: theme.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/theme.php,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- theme.php	2 Jan 2009 05:55:01 -0000	1.3
  +++ theme.php	2 Jan 2009 17:07:12 -0000	1.4
  @@ -12,5 +12,5 @@
   $_toptitle=1; # old-style title.
   
   $imgdir=$themeurl."/imgs";
  -$icon['rss']="<img src='$imgdir/feed.png' alt='RSS' style='vertical-align:middle;border:0px' />";
  +#$icon['rss']="<img src='$imgdir/feed.png' alt='RSS' style='vertical-align:middle;border:0px' />";
   ?>
  
  
  


wkpark      2009/10/01 01:19:52

  Modified:    azblue2  footer.php header.php theme.php
  Log:
  update
  
  Revision  Changes    Path
  1.3       +4 -2      moniwiki-theme/azblue2/footer.php
  
  Index: footer.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/footer.php,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -u -r1.2 -r1.3
  --- footer.php	30 Dec 2008 09:19:46 -0000	1.2
  +++ footer.php	30 Sep 2009 16:19:51 -0000	1.3
  @@ -25,11 +25,13 @@
   
     print $menu;
     print "<div id='toTop'><a href='#top' id='bottom'><img style='border:0' alt='^' src='$this->themeurl/imgs/top.gif' /></a></div>";
  +?>
  +</div>
  +</div></div></div></div></div></div>
  +<?php
     print '<div style="align:center" id="wikiBanner">'.$banner.'<br />';
     if ($lastedit)
       print "last modified $lastedit $lasttime<br />";
     print 'Processing time '.$timer;
     print '</div>';
   ?>
  -</div>
  -</div></div></div></div></div></div>
  
  
  
  1.5       +32 -7     moniwiki-theme/azblue2/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/header.php,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- header.php	2 Jan 2009 05:55:01 -0000	1.4
  +++ header.php	30 Sep 2009 16:19:51 -0000	1.5
  @@ -1,6 +1,6 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.4 2009/01/02 05:55:01 wkpark Exp $
  +# $Id: header.php,v 1.5 2009/09/30 16:19:51 wkpark Exp $
   #
   if ($this->_sidebar) {
     include_once("plugin/login.php");
  @@ -17,15 +17,20 @@
   # theme options
   #$_theme['sidebar']=1;
   
  -if ($this->_width) {
  +echo "<style type='text/css'>\n";
  +if ($this->_width)
     print <<<EOF
  -<style type='text/css'>
   #mainBody { width:$this->_width;};
  -
  -</style>
   EOF;
  +
  +if (!$this->_uppergoform)
  +  echo <<<EOF
  +#wikiHeadPage:hover #wikiIcon {
  +  visibility:visible;
   }
  +EOF;
   
  +echo "</style>\n";
   ?>
   <div id='topHeader'>
   <!--
  @@ -65,7 +70,9 @@
   ?>
    </div>
   <?php endif; /* topbanner */?>
  -<div id='goForm'>
  +<!-- goform on top of header -->
  +<?php if ($this->_uppergoform): ?>
  +<div id='goFormUpper'>
   <form id='go' action='' method='get' onsubmit="return moin_submit();">
   <div>
   <input type='text' name='value' size='20' accesskey='s' class='goto' style='width:120px' />
  @@ -74,7 +81,11 @@
   </div>
   </form>
   </div>
  +<?php endif;?>
   <div id='pTitle'>
  +<?php if (!$this->_uppergoform): ?>
  +   <div id='wikiIcon'><?php echo $upper_icon.$icons.$rss_icon?></div>
  +<?php endif;?>
   <?php if (!$this->_topbanner and $this->_logo): ?>
   <img src='<?php echo $DBInfo->logo_img?>' style='text-align:left;' alt='moniwiki' />
   <?php endif; /* topbanner */?>
  @@ -105,7 +116,21 @@
   <div id='wikiHeader'>
    <div id='pMenuRight'><div id='pMenuLeft'>
     <div id='wikiMenuBar'>
  +   <?php if ($this->_uppergoform): ?>
      <div id='wikiIcon'><?php echo $upper_icon.$icons.$rss_icon?></div>
  +   <?php else:?>
  +   <!-- goform on the MenuBar -->
  +   <div id='goForm'>
  +<form id='go' action='' method='get' onsubmit="return moin_submit();">
  +   <div>
  +<input type='text' name='value' size='20' accesskey='s' class='goto' style='width:120px' />
  +<input type='hidden' name='action' value='goto' />
  +<input type='submit' name='status' class='submitBtn' value='Go' style='width:35px;' />
  +   </div>
  +</form>
  +   </div>
  +   <?php endif;?>
  +
   <?php echo $menu?>
     </div>
    </div></div>
  @@ -287,7 +312,7 @@
   endif;
   
   ?>
  +<?php echo '<div id="wikiTrailer">'.$trail.'</div>'?>
   <?php if (empty($this->_toptitle)) echo '<div class="wikiTitle">'.$title.'</div>';?>
  -<?php echo $trail?>
   <div id='mycontent'>
   <?php echo $subindex?>
  
  
  
  1.5       +3 -2      moniwiki-theme/azblue2/theme.php
  
  Index: theme.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/theme.php,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- theme.php	2 Jan 2009 17:07:12 -0000	1.4
  +++ theme.php	30 Sep 2009 16:19:51 -0000	1.5
  @@ -7,9 +7,10 @@
   $_randomquote=1; # enable randomquote 1
   $_submenu=0; # enable submenu
   $_topbanner=0; # enable top banner
  +$_uppergoform=0; # enable goform on the top
   $_splash=0; # enable splash image
  -$_logo=1; # enable logo
  -$_toptitle=1; # old-style title.
  +$_logo=0; # enable logo
  +$_toptitle=0; # old-style title.
   
   $imgdir=$themeurl."/imgs";
   #$icon['rss']="<img src='$imgdir/feed.png' alt='RSS' style='vertical-align:middle;border:0px' />";
  
  
  


wkpark      2009/10/01 01:19:52

  Modified:    azblue2/css default.css
  Log:
  update
  
  Revision  Changes    Path
  1.5       +86 -10    moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- default.css	2 Jan 2009 05:55:01 -0000	1.4
  +++ default.css	30 Sep 2009 16:19:52 -0000	1.5
  @@ -11,6 +11,7 @@
     margin-top:0px;
     margin-bottom:0px;
     height:100%;
  +  background-color:#f2f2f2;
   }
   
   #mainBody {
  @@ -24,6 +25,7 @@
     height: auto !important; /* IE min-height hack */
     height:400px;
     /*\*/ min-width: 750px; /* IE fix */
  +  background-color:#ffffff;
   }
   
   div {
  @@ -155,7 +157,7 @@
     margin-right:22px;
   }
   
  -#goForm {
  +#goFormUpper {
     float:right;
     padding: 3px 6px;
   }
  @@ -298,7 +300,9 @@
   #wikiContent h1, #wikiContent h2, #wikiContent h3 {
     font-family:Tahoma,sans-serif;
     padding-left:2px;
  -  border-bottom:1px solid #C0c0c0;
  +  /* border-bottom:1px solid #c0c0c0; */
  +  background: url("../imgs/ul.png") no-repeat left bottom;
  +  padding-bottom:0.3em;
   }
   
   h1 a, h2 a, h3 a, h4 a, h5 a {
  @@ -411,7 +415,8 @@
   
   #wikiTrailer {
     padding:0;
  -  padding-left: 20px;
  +  padding-left: 15px;
  +  text-align:left;
     font-family: "Trebuchet MS",Georgia,sans-serif;
   }
   
  @@ -447,6 +452,7 @@
     padding-bottom:0;
     margin:0;
     margin-left:5px;
  +  margin-right:4px;
   }
   
   #pMenuLeft {
  @@ -603,6 +609,7 @@
   #wikiFooter {
     clear:both;
     padding: 0.5em 2em;
  +  height:25px;
   /*  background-color:yellow; */
   }
   
  @@ -649,7 +656,7 @@
   }
   
   ins.diff-added {
  -  background-color:#ccffcc;
  +  background-color:#50ff50;
   }
   
   span.diff-added {
  @@ -737,6 +744,7 @@
     /* border:1px solid #848284; /* */
     font-size:x-small;
     font-family:Verdana,sans-serif;
  +  outline:none;
   }
   
   /* enscript syntax */
  @@ -768,15 +776,35 @@
     font-family: CMSY10, CMEX10, Symbol, Times;
   }
   
  -.sectionEdit a:link {
  +.sectionEdit span {
     color:#3D9CB4;
  +  background:url(../imgs/se.png) no-repeat left top;
  +  padding:5px 16px;
  +  height:26px;
  +  font-size:12px;
  +}
  +
  +.sectionEdit span:hover {
  +  background:url(../imgs/se.png) no-repeat left bottom;
  +}
  +
  +.sectionEdit a:link {
  +}
  +
  +.sectionEdit a span {
  +  padding:0px;
  +  visibility:hidden;
   }
   
  +.sectionEdit span.sep { display:none; }
  +
   .commentForm textarea.wiki {
     align:right;
     width:412px; height:136px;
     background:url(../imgs/commentarea.png) no-repeat left top;
     border:none;
  +  outline:none; /* webkit */
  +  resize: none; /* webkit */
     padding:4px 8px;
   }
   
  @@ -787,26 +815,27 @@
   
   .commentForm textarea.wiki:hover { background-position:left bottom;}
   
  -#goForm input.goto {
  +#goFormUpper input.goto {
     width:174px !important; 
     height:25px;
     background:url(../imgs/goinput2.png) no-repeat left top;
     border:none;
  +  outline:none;
     padding:6px 7px;
     font-family: "Trebuchet MS",Georgia,sans-serif;
     font-size:16px;
     line-height:130%;
   }
   
  -* html #goForm input.goto { /* IE fix */
  +* html #goFormUpper input.goto { /* IE fix */
     background:url(../imgs/goinput2.png) no-repeat left top fixed;
   }
   
  -#goForm input.goto:hover {
  +#goFormUpper input.goto:hover {
     background-position:left bottom;
   }
   
  -#goForm input.submitBtn {
  +#goFormUpper input.submitBtn {
   width:40px !important;
   height:35px;
   color:#FFF;
  @@ -818,6 +847,49 @@
   cursor:pointer;
   border:none;}
   
  +#goFormUpper input.submitBtn:hover {
  +  background-position:left bottom;
  +}
  +
  +/* goform on the menubar */
  +#goForm {
  +  float:right;
  +  padding: 1px 3px !important; /* */
  +  padding: 0px 3px; /* IE fix */
  +}
  +
  +#goForm input.goto {
  +  width:136px !important;
  +  height:14px;
  +  background:url(../imgs/goinput.png) no-repeat left top;
  +  border:0px;
  +  outline:none;
  +  padding:9px 7px;
  +  font-family: "Trebuchet MS",Georgia,sans-serif;
  +  font-size:12px;
  +}
  +
  +* html #goForm input.goto { /* IE fix */
  +  background:url(../imgs/goinput.png) no-repeat left top fixed;
  +}
  +
  +#goForm input.goto:hover {
  +  background-position:left bottom;
  +}
  +
  +#goForm input.submitBtn {
  +  width:33px; height:32px;
  +  color:#FFF;
  +  font-weight:bold;
  +  padding:1px 4px !important;
  +  padding:2px 4px;
  +  background:url(../imgs/gobutton.png) no-repeat left top;
  +  cursor:pointer;
  +  margin:0px;
  +  margin-top:0px;
  +  border:0px;
  +}
  +
   #goForm input.submitBtn:hover {
     background-position:left bottom;
   }
  @@ -825,6 +897,7 @@
   #container {
     margin: 0 auto;
     height:100%;
  +  overflow:hidden;
   }
   
   #mycontent { /* theme specific */
  @@ -839,13 +912,16 @@
     width:auto !important;
     width:150px;
     height:100%;
  +  margin-bottom:-10000px;
  +  padding-bottom:10000px;
   }
   #wikiSideMenu {
     float:right;
     width:140px;
     padding:5px;
  +  margin-bottom:-10000px;
  +  padding-bottom:10000px;
     border-left:1px dotted #e0e0e0;
  -  height:100%;
   }
   
   .randomQuote {
  
  
  


wkpark      2009/10/01 01:19:53

  Modified:    azblue2/imgs gobutton.png goinput.png mi.png mic.png mih.png
                        ml.png mr.png nbl.png nbr.png nl.png nr.png ntl.png
                        ntr.png
  Log:
  update
  
  Revision  Changes    Path
  1.2       +9 -6      moniwiki-theme/azblue2/imgs/gobutton.png
  
  	<<Binary file>>
  
  
  1.2       +12 -1     moniwiki-theme/azblue2/imgs/goinput.png
  
  	<<Binary file>>
  
  
  1.2       +1 -1      moniwiki-theme/azblue2/imgs/mi.png
  
  	<<Binary file>>
  
  
  1.2       +5 -1      moniwiki-theme/azblue2/imgs/mic.png
  
  	<<Binary file>>
  
  
  1.2       +4 -2      moniwiki-theme/azblue2/imgs/mih.png
  
  	<<Binary file>>
  
  
  1.2       +2 -14     moniwiki-theme/azblue2/imgs/ml.png
  
  	<<Binary file>>
  
  
  1.2       +4 -6      moniwiki-theme/azblue2/imgs/mr.png
  
  	<<Binary file>>
  
  
  1.2       +2 -12     moniwiki-theme/azblue2/imgs/nbl.png
  
  	<<Binary file>>
  
  
  1.2       +1 -3      moniwiki-theme/azblue2/imgs/nbr.png
  
  	<<Binary file>>
  
  
  1.2       +1 -12     moniwiki-theme/azblue2/imgs/nl.png
  
  	<<Binary file>>
  
  
  1.2       +1 -12     moniwiki-theme/azblue2/imgs/nr.png
  
  	<<Binary file>>
  
  
  1.2       +1 -11     moniwiki-theme/azblue2/imgs/ntl.png
  
  	<<Binary file>>
  
  
  1.2       +1 -2      moniwiki-theme/azblue2/imgs/ntr.png
  
  	<<Binary file>>
  
  


wkpark      2009/10/05 18:03:03

  Modified:    azblue2  header.php footer.php
  Log:
  replace print with echo
  
  Revision  Changes    Path
  1.6       +25 -26    moniwiki-theme/azblue2/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/header.php,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- header.php	30 Sep 2009 16:19:51 -0000	1.5
  +++ header.php	5 Oct 2009 09:03:03 -0000	1.6
  @@ -1,6 +1,6 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.5 2009/09/30 16:19:51 wkpark Exp $
  +# $Id: header.php,v 1.6 2009/10/05 09:03:03 wkpark Exp $
   #
   if ($this->_sidebar) {
     include_once("plugin/login.php");
  @@ -19,7 +19,7 @@
   
   echo "<style type='text/css'>\n";
   if ($this->_width)
  -  print <<<EOF
  +  echo <<<EOF
   #mainBody { width:$this->_width;};
   EOF;
   
  @@ -29,7 +29,6 @@
     visibility:visible;
   }
   EOF;
  -
   echo "</style>\n";
   ?>
   <div id='topHeader'>
  @@ -46,7 +45,7 @@
   <img src="<?php echo $this->themeurl?>/imgs/kldpwikilogo.png"/>
   </div>
   -->
  -<?php if ($this->_topicon): ?>
  +<?php if (!empty($this->_topicon)): ?>
   <div id='topIcon'>
   <a href='?action=edit'><img src='<?php echo $this->themeurl?>/imgs/record.png' alt='*' style='border:0' /></a>
   <a href='?action=new'><img src='<?php echo $this->themeurl?>/imgs/add.png' alt='+' style='border:0' /></a>
  @@ -137,7 +136,7 @@
   </div>
   <span class='clear'></span>
   <?php endif; /* popup */?>
  -<?php echo $msg?>
  +<?php empty($msg) ? '' : $msg; ?>
   <div id='container'>
   <?php
   # enable/disable sidebar
  @@ -266,41 +265,41 @@
   </div>
   <div id='wikiSideMenu'>
   <?php
  -print macro_login($this);
  +echo macro_login($this);
   if ($this->_calendar==1) :
  -print '<div class="calendar">';
  +echo '<div class="calendar">';
   if ($options['id']=='Anonymous')
  -  print macro_calendar($this,"'Blog',blog,noweek,archive,center",'Blog');
  +  echo macro_calendar($this,"'Blog',blog,noweek,archive,center",'Blog');
   else
  -  print macro_calendar($this,"'$options[id]',blog,noweek,archive,center",$options['id']);
  -print '</div>';
  +  echo macro_calendar($this,"'$options[id]',blog,noweek,archive,center",$options['id']);
  +echo '</div>';
   endif;
   
   if ($DBInfo->use_scrap) {
  -  print "<div class='scrap'>";
  -  print macro_Scrap($this);
  -  print "</div>";
  +  echo "<div class='scrap'>";
  +  echo macro_Scrap($this);
  +  echo "</div>";
   }
   if ($this->_submenu==1) :
  -  print '<div id="subMain">';
  +  echo '<div id="subMain">';
     echo $submain;
  -  print '</div>';
  -  print '<div id="subMenu">';
  +  echo '</div>';
  +  echo '<div id="subMenu">';
     echo $submenu;
  -  print '</div>';
  +  echo '</div>';
   endif;
   if ($this->_randomquote==1) :
  -print '<div class="randomQuote">';
  -print macro_RandomQuote($this);
  -print '</div>';
  +echo '<div class="randomQuote">';
  +echo macro_RandomQuote($this);
  +echo '</div>';
   endif;
  -print '<div class="randomPage">';
  -print macro_RandomPage($this,"4,simple");
  -print '</div>';
  +echo '<div class="randomPage">';
  +echo macro_RandomPage($this,"4,simple");
  +echo '</div>';
   if ($DBInfo->use_tagging) {
  -  print "<div>";
  -  print macro_Keywords($this,"all,tour,limit=15");
  -  print "</div>";
  +  echo "<div>";
  +  echo macro_Keywords($this,"all,tour,limit=15");
  +  echo "</div>";
   }
   ?>
   </div>
  
  
  
  1.4       +0 -3      moniwiki-theme/azblue2/footer.php
  
  Index: footer.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/footer.php,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- footer.php	30 Sep 2009 16:19:51 -0000	1.3
  +++ footer.php	5 Oct 2009 09:03:03 -0000	1.4
  @@ -3,9 +3,6 @@
   <div id='wikiFooter'>
   <?php
   
  -$validator_xhtml=$DBInfo->validator_xhtml ? $DBInfo->validator_xhtml:'http://validator.w3.org/check/referer';
  -$validator_css=$DBInfo->validator_css ? $DBInfo->validator_xhtml:'http://jigsaw.w3.org/css-validator';
  -
   $banner= <<<FOOT
    <a href="$validator_xhtml"><img
     src="$this->themeurl/imgs/xhtml.png"
  
  
  


wkpark      2009/10/06 03:17:49

  Modified:    azblue2/css default.css
  Log:
  update
  
  Revision  Changes    Path
  1.6       +43 -14    moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- default.css	30 Sep 2009 16:19:52 -0000	1.5
  +++ default.css	5 Oct 2009 18:17:49 -0000	1.6
  @@ -14,6 +14,10 @@
     background-color:#f2f2f2;
   }
   
  +ul {
  +  padding-left:1.5em;
  +}
  +
   #mainBody {
   /* top:15px; /* */
   /* padding-left:100px;
  @@ -282,13 +286,14 @@
   }
   
   table.wiki tr {
  -  background-color: #F8F8F8; 
  +/* background-color: #F8F8F8; */
   /* border-collapse: collapse; */
   /* border: 0px inset #EAF2F4; */
   }
   
   table.wiki td {
     border: 1px solid #969696;
  +  padding:5px;
   }
   
   textarea.wiki { width:98%; }
  @@ -300,9 +305,12 @@
   #wikiContent h1, #wikiContent h2, #wikiContent h3 {
     font-family:Tahoma,sans-serif;
     padding-left:2px;
  -  /* border-bottom:1px solid #c0c0c0; */
  -  background: url("../imgs/ul.png") no-repeat left bottom;
  -  padding-bottom:0.3em;
  +  border-bottom:1px solid #dddddd;
  +  /* background: url("../imgs/ul.png") no-repeat left bottom; */
  +  padding-bottom:0.1em;
  +  margin-left:-10px;
  +  padding-left: 5px;
  +  border-left:3px solid #dddddd;
   }
   
   h1 a, h2 a, h3 a, h4 a, h5 a {
  @@ -322,7 +330,7 @@
   }
   
   h2,h1 {
  -  padding-top:10px;
  +  padding-top:0.1em;
   }
   
   * html a.perma:visited { /* IE hack */
  @@ -387,6 +395,12 @@
     width:26px;
   }
   
  +button {
  +  padding:2px;
  +  font-size:12px;
  +  vertical-align:top;
  +}
  +
   .searchResult input[value="Go"] {
     font-size:2em;
     width:auto;
  @@ -541,7 +555,7 @@
     color:white;
     font-size:11px;
     font-weight:bold;
  -  font-family: Tahoma,Verdana,sans-serif;
  +  font-family: Dotum,Verdana,sans-serif;
     text-decoration:none;
   }
   
  @@ -565,6 +579,7 @@
   }
   
   #wikiBody {
  +  margin-left:10px;
     color: black;
   /*  background-color: #fff; /* */
     overflow: hidden; /* magic XXX */
  @@ -600,6 +615,7 @@
   }
   
   #wikiContent {
  +  padding-left: 10px;
   }
   
   #wikiExtra {
  @@ -695,6 +711,12 @@
   div.blog-summary { margin-bottom:10px;}
   
   div.trackback-hint { font-size: 10px; padding: 1em 1em 1em 1em;background-color: #eee;}
  +
  +/* SWFUpload */
  +#wikiBody #mmUploadFileListing li {
  +  font-family:Dotum, sans-serif;
  +}
  +
   /* Calendar */
   td.day { background: #e0e0e0; text-align: center;}
   td.today { background:#ffffff; text-align: center;}
  @@ -778,14 +800,15 @@
   
   .sectionEdit span {
     color:#3D9CB4;
  -  background:url(../imgs/se.png) no-repeat left top;
  -  padding:5px 16px;
  -  height:26px;
  +  /* background:url(../imgs/se.png) no-repeat left top; /* */
  +  /* padding:5px 16px;
  +  height:26px; */
     font-size:12px;
  +  top:10px;
   }
   
   .sectionEdit span:hover {
  -  background:url(../imgs/se.png) no-repeat left bottom;
  +  /* background:url(../imgs/se.png) no-repeat left bottom; /* */
   }
   
   .sectionEdit a:link {
  @@ -793,10 +816,10 @@
   
   .sectionEdit a span {
     padding:0px;
  -  visibility:hidden;
  +  /* visibility:hidden; */
   }
   
  -.sectionEdit span.sep { display:none; }
  +/* .sectionEdit span.sep { display:none; } */
   
   .commentForm textarea.wiki {
     align:right;
  @@ -954,14 +977,20 @@
   }
   
   .resizable-textarea .grippie {
  -  height: 14px !important;
  -  height: 16px;
  +  height: 14px;
     background: #F0F0F0 url(../imgs/grippie.png) no-repeat 100% 100%;
     border: 1px solid #E7E7E7;
  +  margin:0;
  +  margin-top:-3px;
     border-top-width: 0;
     cursor: s-resize;
   }
   
  +.resizable-textarea textarea {
  +  margin:0;
  +}
  +.resizable-textarea {padding-bottom:0.3em;}
  +
   #toTop {
     float:right;
   }
  
  
  


wkpark      2009/10/09 00:23:07

  Modified:    azblue2/css default.css
  Log:
  IE css fix
  
  Revision  Changes    Path
  1.7       +11 -3     moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- default.css	5 Oct 2009 18:17:49 -0000	1.6
  +++ default.css	8 Oct 2009 15:23:07 -0000	1.7
  @@ -15,7 +15,8 @@
   }
   
   ul {
  -  padding-left:1.5em;
  +  margin:0; padding:0;
  +  padding:0.5em 0.5em 0.5em 1.8em;
   }
   
   #mainBody {
  @@ -27,7 +28,6 @@
     width: 80%;
     min-height:400px;
     height: auto !important; /* IE min-height hack */
  -  height:400px;
     /*\*/ min-width: 750px; /* IE fix */
     background-color:#ffffff;
   }
  @@ -109,6 +109,7 @@
   
   #pTitle {
     padding:0px;
  +  _height:0px;
   }
   
   #pTitle img {
  @@ -183,7 +184,7 @@
     padding-top:5px;
     min-height:400px;
     height: 100% !important; /* IE min-height hack */
  -  height:400px;
  +  height:100%;
     padding-bottom:10px;
   }
   
  @@ -313,6 +314,11 @@
     border-left:3px solid #dddddd;
   }
   
  +#wikiContent h1 { font-size:22px; }
  +#wikiContent h2 { font-size:18px; }
  +#wikiContent h3 { font-size:16px; }
  +#wikiContent h4 { font-size:14px; }
  +
   h1 a, h2 a, h3 a, h4 a, h5 a {
     text-decoration:none;
   }
  @@ -480,6 +486,7 @@
   
   #wikiIcon {
     visibility:hidden;
  +  _visibility:visible;
     float:right;
     padding: 7px 15px;
     text-align: right;
  @@ -982,6 +989,7 @@
     border: 1px solid #E7E7E7;
     margin:0;
     margin-top:-3px;
  +  _margin-top:-1px;
     border-top-width: 0;
     cursor: s-resize;
   }
  
  
  


wkpark      2009/10/09 00:23:27

  Modified:    azblue2  header.php
  Log:
  show msg correctly.
  
  Revision  Changes    Path
  1.7       +2 -2      moniwiki-theme/azblue2/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/header.php,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- header.php	5 Oct 2009 09:03:03 -0000	1.6
  +++ header.php	8 Oct 2009 15:23:27 -0000	1.7
  @@ -1,6 +1,6 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.6 2009/10/05 09:03:03 wkpark Exp $
  +# $Id: header.php,v 1.7 2009/10/08 15:23:27 wkpark Exp $
   #
   if ($this->_sidebar) {
     include_once("plugin/login.php");
  @@ -136,7 +136,7 @@
   </div>
   <span class='clear'></span>
   <?php endif; /* popup */?>
  -<?php empty($msg) ? '' : $msg; ?>
  +<?php empty($msg) ? '' : print $msg; ?>
   <div id='container'>
   <?php
   # enable/disable sidebar
  
  
  


wkpark      2009/10/20 19:18:10

  Modified:    azblue2/css default.css
  Log:
  fixed wikiIcons on hover
  
  Revision  Changes    Path
  1.8       +13 -2     moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- default.css	8 Oct 2009 15:23:07 -0000	1.7
  +++ default.css	20 Oct 2009 10:18:10 -0000	1.8
  @@ -485,14 +485,25 @@
   }
   
   #wikiIcon {
  -  visibility:hidden;
  -  _visibility:visible;
     float:right;
     padding: 7px 15px;
     text-align: right;
     vertical-align: middle;
   }
   
  +#wikiIcon a {
  +  text-decoration: none;
  +}
  +
  +#wikiIcon img {
  +  visibility:hidden;
  +  _visibility:visible;
  +}
  +
  +#wikiIcon:hover img {
  +  visibility:visible;
  +}
  +
   #wikiMenu {
   /*
     background-color: #1690c0;
  
  
  


wkpark      2010/06/19 22:42:09

  Modified:    azblue2/css default.css
  Log:
  fine tuning Go button position
  
  Revision  Changes    Path
  1.9       +4 -1      moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- default.css	20 Oct 2009 10:18:10 -0000	1.8
  +++ default.css	19 Jun 2010 13:42:09 -0000	1.9
  @@ -922,13 +922,16 @@
     width:33px; height:32px;
     color:#FFF;
     font-weight:bold;
  -  padding:1px 4px !important;
  +  padding:1px 4px 1px 0px !important;
     padding:2px 4px;
     background:url(../imgs/gobutton.png) no-repeat left top;
     cursor:pointer;
     margin:0px;
     margin-top:0px;
     border:0px;
  +  font-size:11px;
  +  font-family: Verdana,Tahoma,sans-serif;
  +  _background:url(../imgs/gobutton.png) no-repeat 2px top;
   }
   
   #goForm input.submitBtn:hover {
  
  
  


wkpark      2010/06/19 23:04:51

  Modified:    azblue2/css default.css
  Log:
  fine tuning buttons
  
  Revision  Changes    Path
  1.10      +13 -1     moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- default.css	19 Jun 2010 13:42:09 -0000	1.9
  +++ default.css	19 Jun 2010 14:04:51 -0000	1.10
  @@ -402,10 +402,22 @@
   }
   
   button {
  -  padding:2px;
  +  font-family:Tahoma,Lucida,sans-serif;
     font-size:12px;
  +  padding:2px;
     vertical-align:top;
   }
  +button, x:-moz-any-link, x:default {padding:0px;}
  +
  +input[type="submit"] {
  +  font-family:Tahoma,Lucida,sans-serif;
  +  padding:2px 3px;
  +  font-size:12px;
  +}
  +
  +input[type="submit"], x:-moz-any-link, x:default {
  +  padding:0px;
  +}
   
   .searchResult input[value="Go"] {
     font-size:2em;
  
  
  


wkpark      2010/06/22 17:14:03

  Modified:    azblue2  header.php footer.php
  Log:
  [#315290] use empty(), isset() to remove notice warnings
  
  Revision  Changes    Path
  1.8       +18 -19    moniwiki-theme/azblue2/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/header.php,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- header.php	8 Oct 2009 15:23:27 -0000	1.7
  +++ header.php	22 Jun 2010 08:14:03 -0000	1.8
  @@ -1,24 +1,25 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.7 2009/10/08 15:23:27 wkpark Exp $
  +# $Id: header.php,v 1.8 2010/06/22 08:14:03 wkpark Exp $
   #
  -if ($this->_sidebar) {
  +if (!empty($this->_sidebar)) {
     include_once("plugin/login.php");
  -  #include_once("plugin/RandomBanner.php");
  -  include_once("plugin/Calendar.php");
  -  $login=macro_login($this);
  +  include_once("plugin/RandomBanner.php");
  +  if (!empty($this->_calendar)) {
  +    include_once("plugin/Calendar.php");
  +  }
   }
  -if ($DBInfo->use_tagging) {
  +if (!empty($DBInfo->use_tagging)) {
     include_once("plugin/Keywords.php");
   }
  -if ($DBInfo->use_scrap) {
  +if (!empty($DBInfo->use_scrap)) {
     include_once("plugin/scrap.php");
   }
   # theme options
   #$_theme['sidebar']=1;
   
   echo "<style type='text/css'>\n";
  -if ($this->_width)
  +if (!empty($this->_width))
     echo <<<EOF
   #mainBody { width:$this->_width;};
   EOF;
  @@ -266,16 +267,17 @@
   <div id='wikiSideMenu'>
   <?php
   echo macro_login($this);
  -if ($this->_calendar==1) :
  +if ($this->_calendar == 1) :
   echo '<div class="calendar">';
   if ($options['id']=='Anonymous')
  -  echo macro_calendar($this,"'Blog',blog,noweek,archive,center",'Blog');
  +  $pg = 'Blog';
   else
  -  echo macro_calendar($this,"'$options[id]',blog,noweek,archive,center",$options['id']);
  +  $pg = $options['id'];
  +echo macro_calendar($this,"'$pg',blog,noweek,archive,center",$pg);
   echo '</div>';
   endif;
   
  -if ($DBInfo->use_scrap) {
  +if (!empty($DBInfo->use_scrap)) {
     echo "<div class='scrap'>";
     echo macro_Scrap($this);
     echo "</div>";
  @@ -296,7 +298,7 @@
   echo '<div class="randomPage">';
   echo macro_RandomPage($this,"4,simple");
   echo '</div>';
  -if ($DBInfo->use_tagging) {
  +if (!empty($DBInfo->use_tagging)) {
     echo "<div>";
     echo macro_Keywords($this,"all,tour,limit=15");
     echo "</div>";
  @@ -307,11 +309,8 @@
   <script type='text/javascript'>
   check_menu();
   </script>
  -<?php
  -endif;
  -
  -?>
  -<?php echo '<div id="wikiTrailer">'.$trail.'</div>'?>
  +<?php endif; ?>
  +<?php echo '<div id="wikiTrailer">'.$trail.'</div>';?>
   <?php if (empty($this->_toptitle)) echo '<div class="wikiTitle">'.$title.'</div>';?>
   <div id='mycontent'>
  -<?php echo $subindex?>
  +<?php echo $subindex;?>
  
  
  
  1.5       +1 -2      moniwiki-theme/azblue2/footer.php
  
  Index: footer.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/footer.php,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- footer.php	5 Oct 2009 09:03:03 -0000	1.4
  +++ footer.php	22 Jun 2010 08:14:03 -0000	1.5
  @@ -27,8 +27,7 @@
   </div></div></div></div></div></div>
   <?php
     print '<div style="align:center" id="wikiBanner">'.$banner.'<br />';
  -  if ($lastedit)
  +  if (!empty($lastedit))
       print "last modified $lastedit $lasttime<br />";
     print 'Processing time '.$timer;
     print '</div>';
  -?>
  
  
  


wkpark      2010/06/22 17:26:48

  Modified:    azblue2/css default.css
  Added:       azblue2/imgs btn_default.png
  Log:
  css styling button tags
  
  Revision  Changes    Path
  1.11      +69 -3     moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- default.css	19 Jun 2010 14:04:51 -0000	1.10
  +++ default.css	22 Jun 2010 08:26:47 -0000	1.11
  @@ -383,6 +383,12 @@
     font-size:11px;
   }
   
  +input, option, select {
  +  font-size:12px;
  +  padding:1px;
  +  margin:1px;
  +}
  +
   #wikiGoto input[type="text"] {
     font-family:Tahoma,Lucida,sans-serif;
     font-size:11px;
  @@ -409,14 +415,70 @@
   }
   button, x:-moz-any-link, x:default {padding:0px;}
   
  +button {
  +  position:relative;
  +  background: transparent url('../imgs/btn_default.png') no-repeat left top;
  +  height: 24px;
  +  display:inline-block;
  +  margin:0;
  +  padding:0;
  +  border:0;
  +  text-align:center;
  +  overflow:visible;
  +  cursor:pointer;
  +  vertical-align:top;
  +
  +  margin-left:2px;
  +
  +  _overflow-y:hidden;
  +  _margin-right:3px;
  +  padding-left:2px;
  +}
  +
  +
  +button span {
  +  position:relative;
  +  height:22px;
  +  white-space:nowrap;
  +  display:inline-block;
  +  padding: 0 13px 0 6px;
  +  border:none;
  +  background: transparent url('../imgs/btn_default.png') no-repeat right top;
  +
  +  line-height:19px;
  +  padding-top: 2px;
  +  vertical-align:top;
  +  overflow:visible;
  +  left:2px;
  +  _margin-right:0px;
  +}
  +
  +*+html #wikiBody button span {
  +  margin-right:0;
  +}
  +
  +/* firefox magic */
  +button::-moz-focus-inner,
  +input[type="reset"]::-moz-focus-inner,
  +input[type="button"]::-moz-focus-inner,
  +input[type="submit"]::-moz-focus-inner {
  +  padding:0;
  +  margin:0;
  +  border: none;  /* overrides extra padding in Firefox */
  +}
  +
  +html>/**/body button span, x:-moz-any-link, x:default {
  +  /* left:0px; /* FF 3.5.x */
  +}
  +
   input[type="submit"] {
     font-family:Tahoma,Lucida,sans-serif;
     padding:2px 3px;
     font-size:12px;
   }
   
  -input[type="submit"], x:-moz-any-link, x:default {
  -  padding:0px;
  +html>/**/body input[type="submit"], x:-moz-any-link, x:default {
  +  padding:1px 2px 0px 2px;
   }
   
   .searchResult input[value="Go"] {
  @@ -655,7 +717,7 @@
   #wikiFooter {
     clear:both;
     padding: 0.5em 2em;
  -  height:25px;
  +  height:35px;
   /*  background-color:yellow; */
   }
   
  @@ -1069,3 +1131,7 @@
   .recentChanges tr.alt {
     background-color: #f0f0f0;
   }
  +
  +#editor_info ul li {
  +  list-style-image:none;
  +}
  
  
  
  1.1                  moniwiki-theme/azblue2/imgs/btn_default.png
  
  	<<Binary file>>
  
  


wkpark      2010/07/12 18:18:56

  Modified:    azblue2/css default.css
               azblue2  header.php
  Added:       azblue2/imgs bg_menu.png
  Log:
  cleanup css/menu markup
  
  Revision  Changes    Path
  1.12      +27 -27    moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- default.css	22 Jun 2010 08:26:47 -0000	1.11
  +++ default.css	12 Jul 2010 09:18:55 -0000	1.12
  @@ -549,15 +549,6 @@
     margin-right:4px;
   }
   
  -#pMenuLeft {
  -  background: url("../imgs/ml.png") no-repeat left top;
  -  z-index:2;
  -}
  -#pMenuRight {
  -  background: url("../imgs/mr.png") no-repeat right top;
  -  z-index:2;
  -}
  -
   #wikiIcon {
     float:right;
     padding: 7px 15px;
  @@ -579,23 +570,24 @@
   }
   
   #wikiMenu {
  -/*
  -  background-color: #1690c0;
  -  color: #1690c0;
  -*/
  +  background: url("../imgs/bg_menu.png") no-repeat right top;
     margin:0;
     padding:0;
  +  padding-left:4px;
  +  margin-left:4px;
   }
   
   #wikiMenu ul {
  +  display:inline-block;
  +  list-style:none;
  +  background: url("../imgs/bg_menu.png") no-repeat left top;
  +  height:40px;
     margin:0;
     padding:0;
  -  list-style:none;
     margin-left:0;
     padding-bottom:3px !important; /* for FF */
     padding-bottom:2px;
  -  height:43px !important;
  -  height:44px;
  +  margin-left:-6px;
   }
   
   #wikiMenu li.first {
  @@ -603,19 +595,27 @@
   }
   
   #wikiMenu li {
  -  display:inline;
  +  display:inline-block;
  +  height:41px;
     margin:0px;
  -  padding: 10px 10px;
  -  padding-bottom: 8px !important; /* for FF */
  -  padding-bottom: 9px;
  +  padding:1px 0 0 0;
  +
     float: left;
  -  height: 16px;
  -  position: relative;
  -  vertical-align:top;
  +}
  +
  +#wikiMenu li a {
     background: transparent url("../imgs/mi.png") no-repeat right top;
  +  display:inline-block;
  +  margin-top:1px;
  +  padding:11px 10px;
  +}
  +
  +#wikiMenu li a.main {
  +  padding:0px;
  +  background:none;
   }
   
  -#wikiMenu li:hover, #wikiMenu li.current:hover {
  +#wikiMenu li a:hover, #wikiMenu li.current a:hover {
     background-color: #98D3FC; /* default */
     /* background-color: #355F88; /* dark blue */
     /* background-color: #F2B568; /* orange */
  @@ -623,7 +623,7 @@
     background: transparent url("../imgs/mih.png") no-repeat right top;
   }
   
  -#wikiMenu li.current {
  +#wikiMenu li.current a {
     text-decoration: none;
     background: transparent url("../imgs/mic.png") no-repeat right top;
   }
  @@ -969,8 +969,8 @@
   /* goform on the menubar */
   #goForm {
     float:right;
  -  padding: 1px 3px !important; /* */
  -  padding: 0px 3px; /* IE fix */
  +  padding: 1px 5px 0 0;
  +  _padding: 0px 7px 0 0; /* IE fix */
   }
   
   #goForm input.goto {
  
  
  
  1.9       +1 -3      moniwiki-theme/azblue2/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/header.php,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- header.php	22 Jun 2010 08:14:03 -0000	1.8
  +++ header.php	12 Jul 2010 09:18:56 -0000	1.9
  @@ -1,6 +1,6 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.8 2010/06/22 08:14:03 wkpark Exp $
  +# $Id: header.php,v 1.9 2010/07/12 09:18:56 wkpark Exp $
   #
   if (!empty($this->_sidebar)) {
     include_once("plugin/login.php");
  @@ -114,7 +114,6 @@
   &nbsp;<!-- oops!! firefox bug workaround :( -->
   <?php else:?>
   <div id='wikiHeader'>
  - <div id='pMenuRight'><div id='pMenuLeft'>
     <div id='wikiMenuBar'>
      <?php if ($this->_uppergoform): ?>
      <div id='wikiIcon'><?php echo $upper_icon.$icons.$rss_icon?></div>
  @@ -133,7 +132,6 @@
   
   <?php echo $menu?>
     </div>
  - </div></div>
   </div>
   <span class='clear'></span>
   <?php endif; /* popup */?>
  
  
  
  1.1                  moniwiki-theme/azblue2/imgs/bg_menu.png
  
  	<<Binary file>>
  
  


wkpark      2010/07/13 22:20:19

  Modified:    azblue2/css default.css
               azblue2  footer.php header.php
  Added:       azblue2/imgs bg_pane.png
  Log:
  [#315496]
   * change the default font family from Georgia to Arial
   * css styling HR / the trailer, wikiAction etc.
  
  Revision  Changes    Path
  1.13      +86 -12    moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- default.css	12 Jul 2010 09:18:55 -0000	1.12
  +++ default.css	13 Jul 2010 13:20:19 -0000	1.13
  @@ -4,7 +4,8 @@
   
   html { height: 100%; }
   body {
  -  font-family:Georgia,Verdana,Lucida,sans-serif;font-size:12px;
  +  font-family: 'Lucida Grande', Verdana, 'Bitstream Vera Sans', Arial, sans-serif;
  +  font-size:12px;
     color:#000;
     margin-left:0px;
     margin-right:0px;
  @@ -207,11 +208,18 @@
   }
   
   .wikiTitle a,.wikiTitle a:active,.wikiTitle a:visited {
  +  color: #333333;
  +  text-shadow: #c3c3c3 1px 1px 1px;
  +}
  +
  +.wikiTitle a:hover {
     color: #0686db;
  +  text-decoration: underline;
   }
   
   div.wikiTitle {
  -  padding-left:10px;
  +  padding-top:5px;
  +  padding-left:0px;
   }
   
   tt.wiki {font-family:Monotype,Lucida Console,lucida,monospace;font-size:12px;}
  @@ -303,17 +311,25 @@
     background:#E2E2E2 url("../imgs/infotrbg.png") repeat-x;
   }
   
  -#wikiContent h1, #wikiContent h2, #wikiContent h3 {
  -  font-family:Tahoma,sans-serif;
  +#wikiContent h1, #wikiContent h2 {
  +  font-family:Arial,Tahoma,sans-serif;
     padding-left:2px;
     border-bottom:1px solid #dddddd;
  -  /* background: url("../imgs/ul.png") no-repeat left bottom; */
  -  padding-bottom:0.1em;
  -  margin-left:-10px;
  +  padding-bottom:0.2em;
  +  margin-left:-5px;
     padding-left: 5px;
     border-left:3px solid #dddddd;
   }
   
  +#wikiContent h3 {
  +  margin-left:-10px;
  +  padding-left: 5px;
  +}
  +
  +#wikiContent h3, h4, h5 {
  +  font-family:Arial,sans-serif;
  +}
  +
   #wikiContent h1 { font-size:22px; }
   #wikiContent h2 { font-size:18px; }
   #wikiContent h3 { font-size:16px; }
  @@ -507,11 +523,52 @@
   /* background: #000 url(hr1.gif) no-repeat scroll center; */
   }
   
  +.separator hr {
  +  height:2px;
  +  color:#ccc;
  +  border:0px solid;
  +  background-color:#ccc;
  +}
  +
   #wikiTrailer {
  +  height:25px;
     padding:0;
  -  padding-left: 15px;
     text-align:left;
     font-family: "Trebuchet MS",Georgia,sans-serif;
  +  padding-left: 20px;
  +}
  +
  +#wikiTrailer p {
  +  background: transparent url("../imgs/bg_pane.png") no-repeat left top;
  +  display:inline-block;
  +  height:25px;
  +  margin:0;
  +  padding:0;
  +  float:left;
  +}
  +
  +#wikiTrailer p span {
  +  background: transparent url("../imgs/bg_pane.png") no-repeat right top;
  +  display:inline-block;
  +  margin:0;
  +  margin:0 0 0 15px;
  +  padding:4px 15px 3px 0;
  +}
  +
  +#wikiTrailer p span span.separator {
  +  background: none;
  +  margin: 0;
  +  padding: 0 0.5em;
  +}
  +
  +#wikiTrailer a {
  +  color: #777777;
  +  text-decoration: none;
  +}
  +
  +#wikiTrailer a:hover {
  +  color: #3c3c3c;
  +  text-decoration: underline;
   }
   
   .wikiNavigation {
  @@ -651,23 +708,40 @@
     text-decoration:none;
   }
   
  +#wikiAction {
  +  background: transparent url("../imgs/bg_pane.png") no-repeat left top;
  +  padding-left:10px;
  +  float:left;
  +}
  +
   #wikiAction ul {
     list-style:none;
     padding:0;
     margin:0;
     white-space:nowrap;
  +  background: transparent url("../imgs/bg_pane.png") no-repeat right top;
  +  float:left;
  +  height:25px;
  +  padding-right:10px;
   }
   
   #wikiAction li {
  -  display:inline;
  -  padding-left:5px;
  -  padding-right:5px;
  -  border-right:1px solid #e0e0e0;
  +  display:inline-block;
  +  padding:5px;
     float:left;
  +  _padding-top:7px;
  +  _padding-bottom:4px;
   }
   
   #wikiAction a {
     font-size:12px;
  +  text-decoration:none;
  +  color: #777777;
  +}
  +
  +#wikiAction a:hover {
  +  text-decoration:underline;
  +  color: #3c3c3c;
   }
   
   #wikiBody {
  
  
  
  1.6       +1 -1      moniwiki-theme/azblue2/footer.php
  
  Index: footer.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/footer.php,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- footer.php	22 Jun 2010 08:14:03 -0000	1.5
  +++ footer.php	13 Jul 2010 13:20:19 -0000	1.6
  @@ -1,5 +1,6 @@
   </div>
   </div>
  +</div>
   <div id='wikiFooter'>
   <?php
   
  @@ -23,7 +24,6 @@
     print $menu;
     print "<div id='toTop'><a href='#top' id='bottom'><img style='border:0' alt='^' src='$this->themeurl/imgs/top.gif' /></a></div>";
   ?>
  -</div>
   </div></div></div></div></div></div>
   <?php
     print '<div style="align:center" id="wikiBanner">'.$banner.'<br />';
  
  
  
  1.10      +2 -2      moniwiki-theme/azblue2/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/header.php,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- header.php	12 Jul 2010 09:18:56 -0000	1.9
  +++ header.php	13 Jul 2010 13:20:19 -0000	1.10
  @@ -1,6 +1,6 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.9 2010/07/12 09:18:56 wkpark Exp $
  +# $Id: header.php,v 1.10 2010/07/13 13:20:19 wkpark Exp $
   #
   if (!empty($this->_sidebar)) {
     include_once("plugin/login.php");
  @@ -308,7 +308,7 @@
   check_menu();
   </script>
   <?php endif; ?>
  -<?php echo '<div id="wikiTrailer">'.$trail.'</div>';?>
  +<?php echo '<div id="wikiTrailer"><p><span>'.$trail.'</span></p></div>';?>
   <?php if (empty($this->_toptitle)) echo '<div class="wikiTitle">'.$title.'</div>';?>
   <div id='mycontent'>
   <?php echo $subindex;?>
  
  
  
  1.1                  moniwiki-theme/azblue2/imgs/bg_pane.png
  
  	<<Binary file>>
  
  


wkpark      2010/08/07 17:11:34

  Modified:    azblue2/css default.css
  Log:
  [#315480] css styling input buttons
  
  Revision  Changes    Path
  1.14      +34 -0     moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- default.css	13 Jul 2010 13:20:19 -0000	1.13
  +++ default.css	7 Aug 2010 08:11:33 -0000	1.14
  @@ -423,6 +423,40 @@
     width:26px;
   }
   
  +/* input submit button styling */
  +
  +span input.button {
  +  height:24px;
  +  margin:0px;
  +  padding:0px;
  +  padding-top:0px;
  +  background: transparent url('../imgs/btn_default.png') no-repeat right top;
  +  border:0px;
  +  position:relative;
  +  left:2px;
  +  display:inline-block;
  +  padding-right:4px;
  +  padding-left:4px;
  +
  +  _overflow:visible;
  +  _padding-top:2px;
  +  *padding-top:2px;
  +}
  +
  +span.button {
  +  display:inline-block;
  +  height:24px;
  +  background: transparent url('../imgs/btn_default.png') no-repeat left top;
  +  position:relative;
  +  padding:0px;
  +  margin:0px;
  +  margin-right:2px;
  +
  +  _display:inline;
  +  _overflow:visible;
  +}
  +
  +/* button styling */
   button {
     font-family:Tahoma,Lucida,sans-serif;
     font-size:12px;
  
  
  


wkpark      2010/08/07 17:14:02

  Modified:    azblue2/css default.css
  Log:
  [#315569] css styling foot notes. use :target selector to style selected targets
  
  Revision  Changes    Path
  1.15      +28 -0     moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- default.css	7 Aug 2010 08:11:33 -0000	1.14
  +++ default.css	7 Aug 2010 08:14:01 -0000	1.15
  @@ -564,6 +564,34 @@
     background-color:#ccc;
   }
   
  +.foot .separator {
  +  border-bottom: 2px solid #eee;
  +  width:70px;
  +}
  +
  +.foot .separator tt {
  +  display:none;
  +}
  +
  +.foot tt.foot {
  +  vertical-align:bottom;
  +  font-family: Trebuchet MS, sans-serif;
  +  font-size:12px;
  +}
  +
  +.foot ul li:target {
  +  background-color: #eee;
  +}
  +
  +.foot ul li:target a {
  +  font-weight:bold;
  +}
  +
  +.foot a:target {
  +  background-color: #def;
  +  font-weight:bold;
  +}
  +
   #wikiTrailer {
     height:25px;
     padding:0;
  
  
  


wkpark      2010/08/14 14:48:42

  Modified:    azblue2/css default.css
  Log:
  [#315496] more css tuning
  
  Revision  Changes    Path
  1.16      +34 -6     moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- default.css	7 Aug 2010 08:14:01 -0000	1.15
  +++ default.css	14 Aug 2010 05:48:41 -0000	1.16
  @@ -435,11 +435,13 @@
     position:relative;
     left:2px;
     display:inline-block;
  -  padding-right:4px;
  +  padding-right:5px;
     padding-left:4px;
   
  +  _display:inline;
     _overflow:visible;
     _padding-top:2px;
  +  _left:4px;
     *padding-top:2px;
   }
   
  @@ -454,8 +456,14 @@
   
     _display:inline;
     _overflow:visible;
  +  left:1px;
  +}
  +
  +table span.button {
  +  _display:inline-block; /* IE6 magic;; */
   }
   
  +
   /* button styling */
   button {
     font-family:Tahoma,Lucida,sans-serif;
  @@ -971,18 +979,38 @@
   
   /* login */
   #wikiLogin {
  -  font-family:Tahoma,sans-serif;
  -  font-size:x-small;
  +  font-family:Dotum,Tahoma,sans-serif;
  +  font-size:11px;
     font-weight:bold;
     text-align:center;
     border-bottom: 1px solid #e0e0e0;
   }
   
   #wikiLogin input {
  -  font-family:Verdana,sans-serif;
  -  /* border:1px solid #848284; /* */
  -  font-size:x-small;
  +  font-family:Dotum,Tahoma,sans-serif;
  +  font-size:11px;
     font-weight:normal;
  +
  +  padding-top:1px;
  +  _padding-top:3px;
  +}
  +
  +#wikiLogin:lang(ko) {
  +  letter-spacing:-1px;
  +}
  +
  +#wikiLogin:lang(ko) input {
  +  letter-spacing:-1px;
  +}
  +
  +#wikiLogin a, #wikiLogin a:visited {
  +  text-decoration: none;
  +  color: #ccc;
  +}
  +
  +#wikiLogin a:hover {
  +  text-decoration: none;
  +  color: #0686d8;
   }
   
   #commentForm {
  
  
  


wkpark      2010/08/14 14:50:55

  Modified:    azblue2/css default.css
  Log:
  [#315589] css styling EditHints
  
  Revision  Changes    Path
  1.17      +59 -4     moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -u -r1.16 -r1.17
  --- default.css	14 Aug 2010 05:48:41 -0000	1.16
  +++ default.css	14 Aug 2010 05:50:54 -0000	1.17
  @@ -866,10 +866,65 @@
   }
   
   .wikiHints {
  -  font-family:Georgia,Verdana,Lucida,sans-serif;
  -  font-size:10px;
  -  background-color:#C0D3D2;
  -  padding:5px;
  +  border: 1px solid #e5e5e5;
  +  background-color:#fafafa;
  +  padding: 7px 0px 0px 0px;
  +}
  +
  +.wikiHints .space {
  +  font-family: monospace;
  +  background: #ffc url("../../../imgs/misc/space.gif") no-repeat left bottom;
  +  display:inline-block;
  +  width:11px;
  +  height:12px;
  +  white-space:pre;
  +}
  +
  +.wikiHints .head {
  +  font-family: Dotum, sans-serif;
  +  letter-spacing: -1px;
  +  font-size: 11px;
  +  padding: 0px 12px 5px 12px;
  +}
  +
  +.wikiHints .head .tutorial-link {
  +  float: left;
  +}
  +
  +.wikiHints .head .open-button,
  +.wikiHints .head .close-button {
  +  float: right;
  +}
  +
  +.wikihints .head .clear {
  +  clear: both;
  +}
  +
  +/* question mark(?) and close mark(x) for wikiHints */
  +.wikiHints .head .mark {
  +  color: #ff621a;
  +  font-weight: bold;
  +}
  +.wikiHints .head .close-button .mark {
  +  font-size:12px;
  +}
  +
  +.wikiHints .head .message {
  +  color: #53ad3c;
  +}
  +
  +/* a rule between head and content of wikiHints */
  +#wikiHints_opened_head {
  +  border-bottom: 1px solid #f1f1f1;
  +}
  +
  +#wikiHints_content {
  +  font-size:12px;
  +  font-family: 'Bitstream Vera Sans', Courier New, monospace;
  +  color: #5f5f5f;
  +  line-height:160%;
  +  padding: 10px;
  +  margin:0px;
   }
   
   #wikiSister {
  
  
  


wkpark      2010/08/21 17:35:56

  Modified:    azblue2/css default.css
  Log:
  [#315589] tune css styling
  
  Revision  Changes    Path
  1.18      +3 -9      moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -r1.17 -r1.18
  --- default.css	14 Aug 2010 05:50:54 -0000	1.17
  +++ default.css	21 Aug 2010 08:35:56 -0000	1.18
  @@ -866,8 +866,6 @@
   }
   
   .wikiHints {
  -  border: 1px solid #e5e5e5;
  -  background-color:#fafafa;
     padding: 7px 0px 0px 0px;
   }
   
  @@ -884,7 +882,7 @@
     font-family: Dotum, sans-serif;
     letter-spacing: -1px;
     font-size: 11px;
  -  padding: 0px 12px 5px 12px;
  +  padding: 0px 12px 0px 12px;
   }
   
   .wikiHints .head .tutorial-link {
  @@ -910,15 +908,15 @@
   }
   
   .wikiHints .head .message {
  -  color: #53ad3c;
   }
   
   /* a rule between head and content of wikiHints */
   #wikiHints_opened_head {
  -  border-bottom: 1px solid #f1f1f1;
   }
   
   #wikiHints_content {
  +  background-color:#fafafa;
  +  border: 1px solid #e5e5e5;
     font-size:12px;
     font-family: 'Bitstream Vera Sans', Courier New, monospace;
     color: #5f5f5f;
  @@ -1249,15 +1247,11 @@
     width:auto !important;
     width:150px;
     height:100%;
  -  margin-bottom:-10000px;
  -  padding-bottom:10000px;
   }
   #wikiSideMenu {
     float:right;
     width:140px;
     padding:5px;
  -  margin-bottom:-10000px;
  -  padding-bottom:10000px;
     border-left:1px dotted #e0e0e0;
   }
   
  
  
  


wkpark      2010/08/27 20:46:40

  Modified:    azblue2/css default.css
  Log:
  update
  
  Revision  Changes    Path
  1.19      +16 -9     moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- default.css	21 Aug 2010 08:35:56 -0000	1.18
  +++ default.css	27 Aug 2010 11:46:40 -0000	1.19
  @@ -331,9 +331,10 @@
   }
   
   #wikiContent h1 { font-size:22px; }
  -#wikiContent h2 { font-size:18px; }
  -#wikiContent h3 { font-size:16px; }
  -#wikiContent h4 { font-size:14px; }
  +#wikiContent h2 { font-size:1.6em; }
  +#wikiContent h3 { font-size:1.4em; }
  +#wikiContent h4 { font-size:1.2em; }
  +#wikiContent h5 { font-size:1.0em; }
   
   h1 a, h2 a, h3 a, h4 a, h5 a {
     text-decoration:none;
  @@ -425,6 +426,7 @@
   
   /* input submit button styling */
   
  +span input.save-button,
   span input.button {
     height:24px;
     margin:0px;
  @@ -459,6 +461,10 @@
     left:1px;
   }
   
  +#editor_info li {
  +  *padding:0; /* IE6 magic;;; */
  +}
  +
   table span.button {
     _display:inline-block; /* IE6 magic;; */
   }
  @@ -943,7 +949,7 @@
   
   div.quote {
     background: transparent url("../imgs/quote-open.png") no-repeat;
  -  padding-top: 3px;
  +  padding: 5px 5px 5px 20px;
     background-color: #f8f8f8; /* */
   }
   
  @@ -987,19 +993,20 @@
   /* Blog CSS */
   a.purple { font-size: 10px; text-decoration:none;}
   div.blog { width:90%; padding: 0em 1em 0em 1em; }
  -span.blog-user { font-size:10px; }
   div.blog-title { font-size:16px; font-weight:bold; }
   div.blog-comments { }
   div.blog-comment { padding:1em 1em 1em 2em; margin-bottom:5px;border-left: 4px solid #E4F1F4; background-color:#F0F6F8;}
   div.blog-comments .separator { display:none;}
  -div.blog-action { text-align:right; font-size:9px; }
  +div.blog-action { font-family:Dotum,Trebuchet MS,sans-serif; text-align:right; font-size:11px; }
  +div.blog-action .bullet { font-family:Arial,sans-serif; font-size:11px; }
  +div.blog-action .count { font-family:Arial,sans-serif; font-weight:bold; color:#fa6f46; font-size:11px; }
   
   div.blog-date { font-size:18px; font-weight:bold; padding-bottom:5px;}
  -span.blog-user { font-size:10px; }
  +div.blog-user, span.blog-user { font-family:Dotum,Arial,sans-serif; font-size:11px; padding-bottom:5px; }
   
  -div.blog-summary { margin-bottom:10px;}
  +div.blog-summary { margin-bottom:11px;}
   
  -div.trackback-hint { font-size: 10px; padding: 1em 1em 1em 1em;background-color: #eee;}
  +div.trackback-hint { font-family:Dotum,sans-serif; font-size: 11px; padding: 1em 1em 1em 1em;background-color: #eee;}
   
   /* SWFUpload */
   #wikiBody #mmUploadFileListing li {
  
  
  


wkpark      2010/08/27 20:47:50

  Modified:    azblue2  footer.php
  Log:
  update
  
  Revision  Changes    Path
  1.7       +2 -1      moniwiki-theme/azblue2/footer.php
  
  Index: footer.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/footer.php,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- footer.php	13 Jul 2010 13:20:19 -0000	1.6
  +++ footer.php	27 Aug 2010 11:47:50 -0000	1.7
  @@ -29,5 +29,6 @@
     print '<div style="align:center" id="wikiBanner">'.$banner.'<br />';
     if (!empty($lastedit))
       print "last modified $lastedit $lasttime<br />";
  -  print 'Processing time '.$timer;
  +  if (!empty($timer))
  +    print 'Processing time '.$timer;
     print '</div>';
  
  
  


wkpark      2010/08/29 04:36:34

  Modified:    azblue2  header.php
               azblue2/css default.css
  Log:
  [#315496] fixed to show sidebar correctly
  
  Revision  Changes    Path
  1.11      +7 -7      moniwiki-theme/azblue2/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/header.php,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- header.php	13 Jul 2010 13:20:19 -0000	1.10
  +++ header.php	28 Aug 2010 19:36:33 -0000	1.11
  @@ -1,6 +1,6 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.10 2010/07/13 13:20:19 wkpark Exp $
  +# $Id: header.php,v 1.11 2010/08/28 19:36:33 wkpark Exp $
   #
   if (!empty($this->_sidebar)) {
     include_once("plugin/login.php");
  @@ -146,15 +146,15 @@
   /* Hiding/Showing the side menu from http://wiki.phpbb.com/ */
   #toggle {
   	padding: 5px;
  -	width: 5%;
  -	left: 12%;
  -	top: 28px;
  +	width: 20px;
  +	left: 0;
  +	top: 0;
   	margin-left: -24px;
  +	position:relative; /* IE magic;; */
   }
   
   #toggle-handle {
  -	display: block;
  -	display: inline;
  +	display: inline-block;
   	width: 18px;
   	height: 19px;
   	float: left;
  @@ -309,6 +309,6 @@
   </script>
   <?php endif; ?>
   <?php echo '<div id="wikiTrailer"><p><span>'.$trail.'</span></p></div>';?>
  -<?php if (empty($this->_toptitle)) echo '<div class="wikiTitle">'.$title.'</div>';?>
   <div id='mycontent'>
  +<?php if (empty($this->_toptitle)) echo '<div class="wikiTitle">'.$title.'</div>';?>
   <?php echo $subindex;?>
  
  
  
  1.20      +35 -6     moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.19
  retrieving revision 1.20
  diff -u -r1.19 -r1.20
  --- default.css	27 Aug 2010 11:46:40 -0000	1.19
  +++ default.css	28 Aug 2010 19:36:33 -0000	1.20
  @@ -220,6 +220,12 @@
   div.wikiTitle {
     padding-top:5px;
     padding-left:0px;
  +  overflow:hidden;
  +  border-right:1px solid #f0f0f0;
  +  padding-right:5px;
  +  margin-right: -1px;
  +  margin-left:1px;
  +  _margin-right: 0;
   }
   
   tt.wiki {font-family:Monotype,Lucida Console,lucida,monospace;font-size:12px;}
  @@ -587,6 +593,11 @@
     display:none;
   }
   
  +div.foot ul li {
  +  list-style:none;
  +  list-style-image: none;
  +}
  +
   .foot tt.foot {
     vertical-align:bottom;
     font-family: Trebuchet MS, sans-serif;
  @@ -607,8 +618,10 @@
   }
   
   #wikiTrailer {
  +  display:inline-block;
     height:25px;
     padding:0;
  +  margin-right:20px;
     text-align:left;
     font-family: "Trebuchet MS",Georgia,sans-serif;
     padding-left: 20px;
  @@ -839,6 +852,17 @@
   /*  border: 0px outset #E2ECE5; */
   /*  font-size:16px; 
     border-collapse:collapse; */
  +  left:1px;
  +  background:white;
  +  padding-right:10px;
  +  border-right:1px solid #f0f0f0;
  +  margin-right: 10px;
  +  margin-top:0;
  +  padding-top:10px;
  +  padding-right:10px;
  +  margin-right: -1px;
  +  _margin-right: 0px;
  +  _display:inline-block;
   }
   
   #wikiBody a:link {
  @@ -1244,22 +1268,27 @@
   
   #mycontent { /* theme specific */
   /*  margin-right:140px; /* */
  -  padding-right:5px;
  +  padding-right:0;
     height:100%;
   }
   
   #wikiSideMenuContainer {
  +  display:inline-block;
     float:right;
  -  max-width:150px;
  +  max-width:160px;
     width:auto !important;
  -  width:150px;
  +  _width:10px; /* IE6 magic */
     height:100%;
  +  overflow:visible;
  +  margin-left:10px;
  +  _margin-left:0;
   }
   #wikiSideMenu {
  +  overflow:visible;
     float:right;
  -  width:140px;
  -  padding:5px;
  -  border-left:1px dotted #e0e0e0;
  +  width:150px;
  +  padding:10px;
  +  margin:0;
   }
   
   .randomQuote {
  
  
  


wkpark      2010/08/30 01:32:34

  Modified:    azblue2  header.php theme.php
               azblue2/css default.css
               azblue2/imgs toggle.png
  Added:       azblue2/imgs bg_sidemenu.png
  Log:
  [#315496] IE6 fix and css tune up
  
  Revision  Changes    Path
  1.12      +78 -22    moniwiki-theme/azblue2/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/header.php,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- header.php	28 Aug 2010 19:36:33 -0000	1.11
  +++ header.php	29 Aug 2010 16:32:32 -0000	1.12
  @@ -1,6 +1,6 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.11 2010/08/28 19:36:33 wkpark Exp $
  +# $Id: header.php,v 1.12 2010/08/29 16:32:32 wkpark Exp $
   #
   if (!empty($this->_sidebar)) {
     include_once("plugin/login.php");
  @@ -139,41 +139,47 @@
   <div id='container'>
   <?php
   # enable/disable sidebar
  -if ($this->_sidebar==1) :
  +if ($this->_sidebar==0) :
   ?>
   <style type='text/css'>
  +#container { background-image:none; }
  +</style>
  +<?php
  +else:
  +	if ($this->_toggle):?>
  +<style type='text/css'>
   /* Toggle */
   /* Hiding/Showing the side menu from http://wiki.phpbb.com/ */
   #toggle {
   	padding: 5px;
   	width: 20px;
  -	left: 0;
  -	top: 0;
  +	left: -10px;
  +	top: -5px;
   	margin-left: -24px;
   	position:relative; /* IE magic;; */
  +	_left: 0;
   }
   
   #toggle-handle {
   	display: inline-block;
  -	width: 18px;
  -	height: 19px;
  +	width: 16px;
  +	height: 15px;
   	float: left;
   	background: url(<?php echo $this->themeurl?>/imgs/toggle.png) no-repeat;
   }
   
  -#toggle-handle.hide {
  -	background-position:0% 0%;
  +#toggle .hide {
  +	background-position:left 0;
   }
  -#toggle-handle.hide:hover {
  -	background-position:bottom 0%;
  +#toggle .hide:hover {
  +	background-position:bottom 0;
   }
  -#toggle-handle.show {
  -	background-position:100% 0%;
  +#toggle .show {
  +	background-position:right 0%;
   }
  -#toggle-handle.show:hover {
  +#toggle .show:hover {
   	background-position:bottom 100%;
   }
  -
   </style>
   <script type="text/javascript">
   /**
  @@ -213,7 +219,9 @@
   	var menu = document.getElementById('wikiSideMenu');
   	var toggle = document.getElementById('toggle');
   	var handle = document.getElementById('toggle-handle');
  +	var container = document.getElementById('container');
   	var menu_state = handle.className;
  +	var img = "url('<?php echo $this->themeurl?>/imgs/bg_sidemenu.png')";
   
   	var exp = new Date();
   	exp.setTime(exp.getTime() + 24*60*60*90*1000);
  @@ -225,6 +233,7 @@
   		//toggleMenu(menu);
   		menu.style.display = 'none';
   		handle.className = 'hide';
  +		container.style.backgroundImage = 'none';
   		document.cookie = moni_cookie + '=0' + expire;
   		break;
   
  @@ -233,35 +242,85 @@
   		//toggleMenu(menu);
   		menu.style.display = 'block';
   		handle.className = 'show';
  +		container.style.backgroundImage = img;
   		document.cookie = moni_cookie + '=1' + expire;
   		break;
   	}
   }
   
  +(function () {
   function check_menu()
   {
   	var moni_cookie = '_moni_menu_';
   	var menu = document.getElementById('wikiSideMenu');
  -	var toggle = document.getElementById('toggle');
   	var handle = document.getElementById('toggle-handle');
  -	var menu_state = handle.className;
  +	var container = document.getElementById('container');
  +	var img = "url('<?php echo $this->themeurl?>/imgs/bg_sidemenu.png')";
   
   	var pos = document.cookie.indexOf(moni_cookie + '=');
   	if (pos > -1) {
  -		if (document.cookie.charAt(pos+moni_cookie.length+1)==1) {
  +		if (menu.offsetWidth == 0) {
  +			var exp = new Date();
  +			exp.setTime(exp.getTime() + 24*60*60*90*1000);
  +			var expire = '; expires=' + exp.toGMTString();
  +			document.cookie = moni_cookie + '=0' + expire;
  +			container.style.backgroundImage = 'none';
  +			pos = document.cookie.indexOf(moni_cookie + '=');
  +		}
  +		if (document.cookie.charAt(pos+moni_cookie.length+1)=='1') {
   			handle.className = 'show';
  +			container.style.backgroundImage = img;
   		} else {
   			handle.className = 'hide';
   			menu.style.display = 'none';
  +			container.style.backgroundImage = 'none';
   		}
   	}
   }
  +
  +var oldOnload = window.onload;
  +if (typeof window.onload != 'function') {
  +	window.onload = check_menu();
  +} else {
  +	window.onload = function() {
  +		oldOnload();
  +		check_menu();
  +	}
  +}
  +})();
  +</script>
  +<?php	else: /* toggle */?>
  +<script type='text/javascript'>
  +(function () {
  +function check_menu()
  +{
  +	var menu = document.getElementById('wikiSideMenu');
  +	//alert(menu.getAttribute('style'));
  +	if (menu.offsetWidth == 0) {
  +		var container = document.getElementById('container');
  +		container.style.backgroundImage = 'none';
  +	}
  +}
  +
  +var oldOnload = window.onload;
  +if (typeof window.onload != 'function') {
  +	window.onload = check_menu();
  +} else {
  +	window.onload = function() {
  +		oldOnload();
  +		check_menu();
  +	}
  +}
  +})();
   </script>
   
  +<?php	endif; /* toggle */?>
   <div id='wikiSideMenuContainer'>
  +<?php	if ($this->_toggle):?>
   <div id="toggle">
   <a id="toggle-handle" class='show' accesskey="m" onclick="switch_menu(); return false;" href="#"></a>
   </div>
  +<?php	endif; /* toggle */?>
   <div id='wikiSideMenu'>
   <?php
   echo macro_login($this);
  @@ -304,11 +363,8 @@
   ?>
   </div>
   </div>
  -<script type='text/javascript'>
  -check_menu();
  -</script>
  -<?php endif; ?>
  +<?php endif; /* sidebar */ ?>
   <?php echo '<div id="wikiTrailer"><p><span>'.$trail.'</span></p></div>';?>
   <div id='mycontent'>
  -<?php if (empty($this->_toptitle)) echo '<div class="wikiTitle">'.$title.'</div>';?>
  +<?php if (empty($this->_toptitle)) echo '<div class="wikiTitle" id="wikiTitle">'.$title.'</div>';?>
   <?php echo $subindex;?>
  
  
  
  1.6       +1 -0      moniwiki-theme/azblue2/theme.php
  
  Index: theme.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/theme.php,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- theme.php	30 Sep 2009 16:19:51 -0000	1.5
  +++ theme.php	29 Aug 2010 16:32:32 -0000	1.6
  @@ -3,6 +3,7 @@
   # theme options
   $_newtheme=1;
   $_sidebar=1; # enable sidebar
  +$_toggle=1; # enable sidebar toggle
   $_calendar=0; # enable calendar
   $_randomquote=1; # enable randomquote 1
   $_submenu=0; # enable submenu
  
  
  
  1.21      +8 -8      moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.20
  retrieving revision 1.21
  diff -u -r1.20 -r1.21
  --- default.css	28 Aug 2010 19:36:33 -0000	1.20
  +++ default.css	29 Aug 2010 16:32:32 -0000	1.21
  @@ -29,7 +29,6 @@
     width: 80%;
     min-height:400px;
     height: auto !important; /* IE min-height hack */
  -  /*\*/ min-width: 750px; /* IE fix */
     background-color:#ffffff;
   }
   
  @@ -217,11 +216,10 @@
     text-decoration: underline;
   }
   
  -div.wikiTitle {
  +#wikiTitle {
     padding-top:5px;
     padding-left:0px;
     overflow:hidden;
  -  border-right:1px solid #f0f0f0;
     padding-right:5px;
     margin-right: -1px;
     margin-left:1px;
  @@ -853,15 +851,13 @@
   /*  font-size:16px; 
     border-collapse:collapse; */
     left:1px;
  -  background:white;
     padding-right:10px;
  -  border-right:1px solid #f0f0f0;
  +/* border-right:1px solid #f0f0f0; /* */
     margin-right: 10px;
     margin-top:0;
     padding-top:10px;
     padding-right:10px;
  -  margin-right: -1px;
  -  _margin-right: 0px;
  +  margin-right:0;
     _display:inline-block;
   }
   
  @@ -1264,6 +1260,9 @@
     margin: 0 auto;
     height:100%;
     overflow:hidden;
  +  background-image: url("../imgs/smbg.png"); /* */
  +  background-repeat: repeat-y;
  +  background-position: 100% top;
   }
   
   #mycontent { /* theme specific */
  @@ -1274,16 +1273,17 @@
   
   #wikiSideMenuContainer {
     display:inline-block;
  +  overflow:visible;
     float:right;
     max-width:160px;
     width:auto !important;
     _width:10px; /* IE6 magic */
     height:100%;
  -  overflow:visible;
     margin-left:10px;
     _margin-left:0;
   }
   #wikiSideMenu {
  +  display:inline-block;
     overflow:visible;
     float:right;
     width:150px;
  
  
  
  1.2       +3 -1      moniwiki-theme/azblue2/imgs/toggle.png
  
  	<<Binary file>>
  
  
  1.1                  moniwiki-theme/azblue2/imgs/bg_sidemenu.png
  
  	<<Binary file>>
  
  


wkpark      2010/08/30 01:51:29

  Modified:    azblue2/imgs toggle.png
  Log:
  update
  
  Revision  Changes    Path
  1.3       +2 -3      moniwiki-theme/azblue2/imgs/toggle.png
  
  	<<Binary file>>
  
  


wkpark      2010/08/31 14:19:30

  Modified:    azblue2/css default.css
  Log:
  [#315496] fixed last change
  
  Revision  Changes    Path
  1.22      +1 -1      moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -r1.21 -r1.22
  --- default.css	29 Aug 2010 16:32:32 -0000	1.21
  +++ default.css	31 Aug 2010 05:19:29 -0000	1.22
  @@ -1260,7 +1260,7 @@
     margin: 0 auto;
     height:100%;
     overflow:hidden;
  -  background-image: url("../imgs/smbg.png"); /* */
  +  background-image: url("../imgs/bg_sidemenu.png"); /* */
     background-repeat: repeat-y;
     background-position: 100% top;
   }
  
  
  


wkpark      2010/09/05 03:04:32

  Modified:    azblue2  header.php
  Log:
  [#315496] toggle sidebar correctly
  
  Revision  Changes    Path
  1.13      +11 -7     moniwiki-theme/azblue2/header.php
  
  Index: header.php
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/header.php,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -r1.12 -r1.13
  --- header.php	29 Aug 2010 16:32:32 -0000	1.12
  +++ header.php	4 Sep 2010 18:04:31 -0000	1.13
  @@ -1,6 +1,6 @@
   <?php
   # MoniWiki Theme by wkpark at kldp.org
  -# $Id: header.php,v 1.12 2010/08/29 16:32:32 wkpark Exp $
  +# $Id: header.php,v 1.13 2010/09/04 18:04:31 wkpark Exp $
   #
   if (!empty($this->_sidebar)) {
     include_once("plugin/login.php");
  @@ -220,6 +220,10 @@
   	var toggle = document.getElementById('toggle');
   	var handle = document.getElementById('toggle-handle');
   	var container = document.getElementById('container');
  +
  +	if (handle.style.display == 'none')
  +		return;
  +
   	var menu_state = handle.className;
   	var img = "url('<?php echo $this->themeurl?>/imgs/bg_sidemenu.png')";
   
  @@ -259,15 +263,15 @@
   
   	var pos = document.cookie.indexOf(moni_cookie + '=');
   	if (pos > -1) {
  +		var hide = false;
   		if (menu.offsetWidth == 0) {
  -			var exp = new Date();
  -			exp.setTime(exp.getTime() + 24*60*60*90*1000);
  -			var expire = '; expires=' + exp.toGMTString();
  -			document.cookie = moni_cookie + '=0' + expire;
  +			handle.style.display = 'none';
   			container.style.backgroundImage = 'none';
  -			pos = document.cookie.indexOf(moni_cookie + '=');
  +			hide = true;
  +		} else if (document.cookie.charAt(pos+moni_cookie.length+1)=='0') {
  +			hide = true;		
   		}
  -		if (document.cookie.charAt(pos+moni_cookie.length+1)=='1') {
  +		if (!hide) {
   			handle.className = 'show';
   			container.style.backgroundImage = img;
   		} else {
  
  
  


wkpark      2010/09/10 17:57:31

  Modified:    azblue2/css default.css
  Log:
  update
  
  Revision  Changes    Path
  1.23      +0 -1      moniwiki-theme/azblue2/css/default.css
  
  Index: default.css
  ===================================================================
  RCS file: /cvsroot/moniwiki/moniwiki-theme/azblue2/css/default.css,v
  retrieving revision 1.22
  retrieving revision 1.23
  diff -u -r1.22 -r1.23
  --- default.css	31 Aug 2010 05:19:29 -0000	1.22
  +++ default.css	10 Sep 2010 08:57:31 -0000	1.23
  @@ -292,7 +292,6 @@
   
   table.wiki {
     border-collapse: collapse;
  -  margin:2px;
   /* background-color:#E2ECE5;
     background-color: #F8F7F0;
     border: 0px outset #ddddb0; */
  
  
  


