- break;
-
- case 2:
-?>
-<h2><?php printf(_('Installation of Jirafeau - step %d out of %d'), 2, 3); ?></h2>
-<div id="install">
-<form action="<?php echo basename(__FILE__); ?>" method="post">
-<input type="hidden" name="jirafeau" value="<?php echo JIRAFEAU_VERSION; ?>" />
-<input type="hidden" name="step" value="2" />
-<fieldset>
- <legend><?php echo _('Information'); ?></legend>
- <table>
- <tr>
- <td class="info" colspan="2"><?php echo _('The base address of Jirafeau is the first part of the URL, until (and including) the last slash. For example: "http://www.example.com/". Do not forget the ending slash!'); ?></td>
- </tr>
- <tr>
- <td class="label"><label for="input_web_root"><?php echo _('Base address:'); ?></label></td>
- <td class="field"><input type="text" name="web_root" id="input_web_root" value="<?php
- echo (empty($cfg['web_root']) ?
- 'http://' . $_SERVER['HTTP_HOST'] . str_replace(basename(__FILE__), '', $_SERVER['REQUEST_URI']) :
- $cfg['web_root']);
- ?>" size="40" /></td>
- </tr>
- <tr>
- <td class="info" colspan="2"><?php echo _('The data directory is where your files and information about your files will be stored. You should put it outside your web site, or at least restrict the access of this directory. Do not forget the ending slash!'); ?></td>
- </tr>
- <tr>
- <td class="label"><label for="input_var_root"><?php echo _('Data directory:'); ?></label></td>
- <td class="field"><input type="text" name="var_root" id="input_var_root" value="<?php
- if(empty($cfg['var_root'])) {
- $alphanum = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';
- $len_alphanum = strlen($alphanum);
- $var = 'var-';
- for($i = 0; $i < JIRAFEAU_VAR_RAND_LENGTH; $i++) {
- $var .= substr($alphanum, mt_rand(0, $len_alphanum - 1), 1);
- }
- echo JIRAFEAU_ROOT . $var . '/';
+ ?></select>
+ </td>
+ </tr>
+ <tr class = "nav">
+ <td></td>
+ <td class = "nav next"><input type = "submit" name = "next" value =
+ "<?php echo t('Next step'); ?>" /></td> </tr> </table>
+ </fieldset> </form> </div> <?php
+break;
+
+case 2:
+ ?><h2><?php printf(t('Installation of Jirafeau') . ' - ' . t('step') .
+ ' %d ' . t('out of') . ' %d', 2, 4);
+ ?></h2> <div id = "install"> <form method="post"> <input type =
+ "hidden" name = "jirafeau" value =
+ "<?php echo JIRAFEAU_VERSION; ?>" /><input type = "hidden" name =
+ "step" value = "2" /><fieldset> <legend><?php
+ echo t('Administration password');
+ ?></legend> <table> <tr> <td class = "info" colspan =
+ "2"><?php echo
+ t('Jirafeau has an administration interface (through admin.php). ' .
+ 'You can set a password to access the interface or leave it empty ' .
+ 'to disable the interface.');
+ ?></td> </tr> <tr> <td class = "label"><label for = "select_password"
+ ><?php echo t('Administration password') . ':';
+ ?></label></td>
+ <td class = "field"><input type = "password" name = "admin_password"
+ id = "admin_password" size = "40" /></td>
+ </tr>
+ <tr class = "nav">
+ <td></td>
+ <td class = "nav next">
+ <input type = "submit"
+ class = "navleft" name = "previous" value = "<?php
+ echo t('Previous step'); ?>" />
+ <input type = "submit" name = "next" value =
+ "<?php echo t('Next step'); ?>" /></td> </tr> </table>
+ </fieldset> </form> </div> <?php
+break;
+
+case 3:
+ ?><h2><?php printf(t('Installation of Jirafeau') . ' - ' . t('step') .
+ ' %d ' . t('out of') . ' %d', 3, 4);
+ ?></h2> <div id = "install"> <form method="post"> <input type =
+ "hidden" name = "jirafeau" value =
+ "<?php echo JIRAFEAU_VERSION; ?>" /><input type = "hidden" name =
+ "step" value =
+ "3" /><fieldset> <legend><?php echo t('Information');
+ ?></legend> <table> <tr> <td class = "info" colspan =
+ "2"><?php echo
+ t('The base address of Jirafeau is the first part of the URL, until ' .
+ '(and including) the last slash. For example: ' .
+ '"http://www.example.com/". Do not forget the trailing slash!');
+ ?></td> </tr> <tr> <td class = "label"><label for = "input_web_root"
+ ><?php echo t('Base address') . ':';
+ ?></label></td>
+ <td class = "field"><input type = "text" name = "web_root"
+ id = "input_web_root" value = "<?php
+ echo(empty($cfg['web_root']) ?
+ 'http://' . $_SERVER['HTTP_HOST'] . str_replace(basename(__FILE__),
+ '', $_SERVER['REQUEST_URI']) : $cfg['web_root']);
+ ?>" size = "40" /></td>
+ </tr> <tr> <td class = "info" colspan = "2"><?php
+ echo t('The data directory is where your files and information about' .
+ ' your files will be stored. You should put it outside your web ' .
+ 'site, or at least restrict the access to this directory. Do not ' .
+ 'forget the trailing slash!');
+ ?></td> </tr> <tr> <td class = "label"><label for = "input_var_root"
+ ><?php echo t('Data directory') . ':';
+ ?></label></td>
+ <td class = "field"><input type = "text" name = "var_root"
+ id = "input_var_root" value = "<?php
+ if (empty($cfg['var_root'])) {
+ $alphanum = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' .
+ 'abcdefghijklmnopqrstuvwxyz' . '0123456789';
+ $len_alphanum = strlen($alphanum);
+ $var = 'var-';
+ for ($i = 0; $i <JIRAFEAU_VAR_RAND_LENGTH; $i++) {
+ $var .= substr($alphanum, mt_rand(0, $len_alphanum - 1), 1);
+ }
+ echo JIRAFEAU_ROOT . $var . '/';