[zi-cvs] packages/com.zzoss.zic.theme.zzoss header.php,1.6,1.7 styles.css,1.5,1.6

[email protected] Fri, 05 Mar 2004 06:25:43 -0800
Newsgroups gmane.comp.php.zzoss.installer.cvs
Message-ID <[email protected]>
Update of /cvsroot/zzossinstaller/packages/com.zzoss.zic.theme.zzoss
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8129/com.zzoss.zic.theme.zzoss

Modified Files:
	header.php styles.css 
Log Message:
new plugin architecture in installer

Index: header.php
===================================================================
RCS file: /cvsroot/zzossinstaller/packages/com.zzoss.zic.theme.zzoss/header.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** header.php	29 Jan 2004 14:09:17 -0000	1.6
--- header.php	5 Mar 2004 14:25:26 -0000	1.7
***************
*** 25,30 ****
      
      include 'theme_config.php';
-     
-     ob_start();
  ?>
  <html>
--- 25,28 ----
***************
*** 117,121 ****
                              <!--
                              <div class="menuitem">
!                                 <a href="<?php echo $chdir; ?>plugins_rebuild.php<?php echo zi_form_querystr(); ?>"><img src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/32x32/package_settings.png" alt="Reconfigure Application" title="Reconfigure Application" align="left">Reconfigure Application</a>
                              </div>
                              -->
--- 115,119 ----
                              <!--
                              <div class="menuitem">
!                                 <a href="<?php echo $chdir; ?>plugins_rebuild.php<?php echo zi_form_querystr(); ?>"><img src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/32x32/package_settings.png" alt="Options" title="Options" align="left">Options</a>
                              </div>
                              -->
***************
*** 157,172 ****
              </div>
              
!             <div class="body<?php if(isset($_REQUEST['mode']) && $_REQUEST['mode'] == 'dev') echo '_dev'; ?>">
              
                  <div class="contextmenu">
                      <span class="status">
                      <?php
!                         if(isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on'){
                      ?>
!                     <img src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/16x16/encrypted.png" border="0" alt="Encrypted" title="Encrypted"/>Encrypted
                      <?php
                          } else {
                      ?>
!                     <img src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/16x16/decrypted.png" border="0" alt="Decrypted" title="Decrypted"/>Decrypted
                      <?php
                          }
--- 155,170 ----
              </div>
              
!             <div class="body<?php if($_REQUEST['mode'] == 'dev') echo '_dev'; ?>">
              
                  <div class="contextmenu">
                      <span class="status">
                      <?php
!                         if(!$_SERVER['HTTPS'] == 'on'){
                      ?>
!                     <img src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/16x16/decrypted.png" border="0" alt="Decrypted" title="Decrypted"/>Decrypted
                      <?php
                          } else {
                      ?>
!                     <img src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/16x16/encrypted.png" border="0" alt="Encrypted" title="Encrypted"/>Encrypted
                      <?php
                          }

Index: styles.css
===================================================================
RCS file: /cvsroot/zzossinstaller/packages/com.zzoss.zic.theme.zzoss/styles.css,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** styles.css	28 Jan 2004 11:41:36 -0000	1.5
--- styles.css	5 Mar 2004 14:25:26 -0000	1.6
***************
*** 6,10 ****
      font-family:Verdana, Arial, Helvetica, sans-serif;
      color:#000000;
-     text-align: center; /*ie5 hack*/
  }
  
--- 6,9 ----
***************
*** 18,22 ****
      margin: 40px auto;
      /*padding-bottom:8px;*/
-     text-align: left; /*undo ie5 hack*/
  }
  
--- 17,20 ----
***************
*** 163,166 ****
--- 161,177 ----
  }
  
+ /* Normal tables */
+ /* Must be included in CSS file for MSIE5+ compatibility */
+ 
+ .content table {
+     border:0px;
+     empty-cells:show;
+ }
+ 
+ .content table td {
+     padding:4px;
+     vertical-align:top;
+ }
+ 
  /* List table */
  
***************
*** 168,171 ****
--- 179,183 ----
      border:0px;
      border-spacing:0px;
+     width:100%;
      border-left:1px dotted #999;
      margin-top:8px;
***************
*** 197,200 ****
--- 209,213 ----
      border:0px;
      border-spacing:0px;
+     width:100%;
      margin-top:8px;
      margin-bottom:24px;
***************
*** 265,307 ****
  }
  
- /* progress bar */
- 
- .progressBarBorder, .progressBar {
- 	background-color: #FFFFFF;
- 	width: 172px;
- 	height: 24px;
- 	position: relative;
- 	left: 0px;
- 	top: 0px;
- }
- 
- .progressBarBorder {
- 	border-width: 0px;
- 	border-style: solid;
- 	border-color: #000000;
- }
- 
- .installationProgress {
- 	width: 50px;
- 	text-align: left;
- 	font-family: Verdana, Arial, Helvetica, sans-serif;
- 	font-size: 12px;
- 	color: #000000;
- 	background-color: #FFFFFF;
- }
- 
- .cellA, .cellI {
- 	width: 15px;
- 	height: 20px;
- 	font-size: 8px;
- 	float: left;
- 	background-color: #db9513;
- }
- 
- .cellA {
- 	background-color: #8A222D;
- 	visibility: hidden;
- }
- 
  /* style of contextmenu of content layer */
  
--- 278,281 ----
***************
*** 413,416 ****
--- 387,391 ----
      font-size:12px;
  }
+ 
    
  input[type=submit] {



-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click