[zi-cvs] packages/com.zzoss.zic.theme.kde footer_popup.php,1.4,1.5 header.php,1.6,1.7 styles.css,1.6,1.7
[email protected] Fri, 05 Mar 2004 06:25:28 -0800
| Newsgroups | gmane.comp.php.zzoss.installer.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/zzossinstaller/packages/com.zzoss.zic.theme.kde
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8129/com.zzoss.zic.theme.kde
Modified Files:
footer_popup.php header.php styles.css
Log Message:
new plugin architecture in installer
Index: footer_popup.php
===================================================================
RCS file: /cvsroot/zzossinstaller/packages/com.zzoss.zic.theme.kde/footer_popup.php,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** footer_popup.php 29 Jan 2004 14:09:17 -0000 1.4
--- footer_popup.php 5 Mar 2004 14:25:26 -0000 1.5
***************
*** 37,41 ****
?><input type="image" src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/22x22/back.png" name="ZI_BUTTON_BACK" value="< Back" tabindex="3" title="< Back"><input type="hidden" name="ZI_LOCATION_BACK" value="<?php echo $zi_buttons['back']; ?>"><?php
}
! ?> <a href="javascript:window.close()" title="Close Window" tabindex="4"><img src="themes/share/icons/org.kde.icons.crystalsvg/22x22/stop.png"></a><!-- <a href="javascript:window.close()" title="Close Window">Close Window</a>--><?php
if(isset($zi_buttons['save'])){
?><input type="image" src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/22x22/filesave.png" name="ZI_BUTTON_NEXT" value="Save" tabindex="2" title="Save">
--- 37,45 ----
?><input type="image" src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/22x22/back.png" name="ZI_BUTTON_BACK" value="< Back" tabindex="3" title="< Back"><input type="hidden" name="ZI_LOCATION_BACK" value="<?php echo $zi_buttons['back']; ?>"><?php
}
! ?> <a href="javascript:<?php
! if(isset($zi_buttons['reload_parent'])){
! ?>opener.location.reload();<?php
! }
! ?>window.close();" title="Close Window" tabindex="4"><img src="themes/share/icons/org.kde.icons.crystalsvg/22x22/stop.png"></a><!-- <a href="javascript:window.close()" title="Close Window">Close Window</a>--><?php
if(isset($zi_buttons['save'])){
?><input type="image" src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/22x22/filesave.png" name="ZI_BUTTON_NEXT" value="Save" tabindex="2" title="Save">
Index: header.php
===================================================================
RCS file: /cvsroot/zzossinstaller/packages/com.zzoss.zic.theme.kde/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
***************
*** 142,146 ****
<!--
<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>
-->
--- 142,146 ----
<!--
<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>
-->
***************
*** 194,199 ****
--- 194,213 ----
<?php
}
+ if($GLOBALS['ZI']['mode'] != 'setup'){
?>
+ <div class="menuitem">
+ <table>
+ <tr>
+ <td valign="middle">
+ <a href="<?php echo $chdir; ?>installer.php"><img src="<?php echo $chdir; ?>themes/share/icons/org.kde.icons.crystalsvg/32x32/kcontrol.png" alt="Manage Installer" title="Manage Installer" align="left"></a>
+ </td>
+ <td valign="middle">
+ <a href="<?php echo $chdir; ?>installer.php?mode=installer">Manage<br/>Installer</a>
+ </td>
+ </tr>
+ </table>
+ </div>
<?php
+ }
}
?>
***************
*** 239,241 ****
--- 253,258 ----
<div class="content">
+ <?php
+ require_once 'inc/toolbar.php';
+ ?>
<form method="POST" action="<?php echo $_SERVER['PHP_SELF']; ?>" enctype="multipart/form-data">
\ No newline at end of file
Index: styles.css
===================================================================
RCS file: /cvsroot/zzossinstaller/packages/com.zzoss.zic.theme.kde/styles.css,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** styles.css 28 Jan 2004 11:41:36 -0000 1.6
--- styles.css 5 Mar 2004 14:25:26 -0000 1.7
***************
*** 169,172 ****
--- 169,173 ----
.content h1 {
+ float:clear;
text-align:center;
}
***************
*** 177,180 ****
--- 178,211 ----
}
+ .content .toolbar {
+ width:578;
+ height:20px;
+ }
+
+ .content .toolbar .item {
+ float:left;
+ margin-right:12px;
+ background-color:#d0dfec;
+ border:1px solid #3679ad;
+ padding-top:2px;
+ padding-bottom:2px;
+ padding-left:4px;
+ padding-right:4px;
+ margin-right:4px;
+ }
+
+ /* 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 */
***************
*** 266,269 ****
--- 297,306 ----
}
+ .content .actions img {
+ margin-top:1px;
+ margin-right:1px;
+ margin-bottom:5px;
+ }
+
/* progress bar */
***************
*** 412,416 ****
input[type=text] {
! font-size:12px; width:440px;
padding-bottom:4px;
}
--- 449,453 ----
input[type=text] {
! font-size:12px; width:360px;
padding-bottom:4px;
}
-------------------------------------------------------
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