diff options
| author | bitweaver.org <bitweaver@users.sourceforge.net> | 2005-06-19 04:51:19 +0000 |
|---|---|---|
| committer | bitweaver.org <bitweaver@users.sourceforge.net> | 2005-06-19 04:51:19 +0000 |
| commit | f2c6619fcf9489f34354efe9a9eab3dd73db773e (patch) | |
| tree | 8640b8d4ca95a864be32d785a4b31d64ef46032f /templates/install.tpl | |
| download | install-f2c6619fcf9489f34354efe9a9eab3dd73db773e.tar.gz install-f2c6619fcf9489f34354efe9a9eab3dd73db773e.tar.bz2 install-f2c6619fcf9489f34354efe9a9eab3dd73db773e.zip | |
IMPORT TikiPro CLYDE FINAL
Diffstat (limited to 'templates/install.tpl')
| -rw-r--r-- | templates/install.tpl | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/templates/install.tpl b/templates/install.tpl new file mode 100644 index 0000000..cde0fd7 --- /dev/null +++ b/templates/install.tpl @@ -0,0 +1,84 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> +<head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <style type="text/css"> + <!-- @import url(style/install.css); --> + </style> + <title>Install bitweaver - {$browserTitle}</title> + <link rel="shortcut icon" href="{$gBitLoc.INSTALL_PKG_URL}favicon.ico" type="image/x-icon" /> + + <!--[if gte IE 5.5000]> + <script type="text/javascript" src="{$gBitLoc.THEMES_PKG_URL}pngfix.js"></script> + <![endif]--> + + <script type="text/javascript"><!-- + var tikiRootUrl = "{$gBitLoc.BIT_ROOT_URL}"; + --></script> + <script type="text/javascript" src="{$gBitLoc.THEMES_PKG_URL}tabs/tabpane.js"></script> +</head> + +{strip} + +<body> + +<div class="display install"> + <div class="nav"> + <ul> + <li class="title"> + {$section|default:"Install"}ometer + </li> + + {foreach from=$menu_steps item=step key=key} + <li class="{$step.state}"> + {biticon ipackage=liberty iname=`$step.state` iexplain=`$step.state` iforce=icon} + {if $step.state ne 'spacer'} + <a href="{$gBitLoc.install}{$menu_file|default:"install.php"}?step={$key}"> + {/if} + {$step.name} + {if $step.state ne 'spacer'} + </a> + {/if} + </li> + {/foreach} + + <li> + {biticon ipackage=liberty iname=spacer iexplain=spacer iforce=icon} + </li> + <li class="help"> + {biticon ipackage=liberty iname=help iexplain=help iforce=icon} + <a class="external" href="http://www.bitweaver.org/wiki/index.php?page={$section|default:"Install"}bitweaverDoc">{$section|default:"Install"} Help</a> + </li> + <li class="help"> + {biticon ipackage=liberty iname=refresh iexplain=restart iforce=icon} + <a href="{$gBitLoc.install}{$menu_file|default:"install.php"}?step=0">Start over</a> + </li> + <li> + {biticon ipackage=liberty iname=spacer iexplain=spacer iforce=icon} + </li> + </ul> + + <div class="progressbar"> + {$section|default:"Install"} Progress + <div style="border:1px solid #ddd;background:#eee;margin:2px 0;"> + <div style="height:20px;width:{$progress}%;background:#f30;"></div> + </div> + <small>{$progress}% done</small> + </div> + </div> <!-- end .nav --> + + <div class="body"> + <div class="bittop"> + <h1>bitweaver <strong>{$bitMajorVersion}{$bitMinorVersion} -{$bitBranch}-</strong></h1> + </div> + + {include file=$install_file} + </div> <!-- end .body --> + + <div class="clear"></div> +</div> <!-- end .install --> + +</body> +</html> + +{/strip} |
