Changeset 134
- Timestamp:
- 02/21/06 23:43:23 (7 years ago)
- Location:
- bureau
- Files:
-
- 7 edited
-
admin/bro_editor.php (modified) (2 diffs)
-
admin/bro_main.php (modified) (5 diffs)
-
admin/browseforfolder.php (modified) (4 diffs)
-
admin/dom_subdel.php (modified) (3 diffs)
-
admin/sta_list.php (modified) (3 diffs)
-
class/m_stats.php (modified) (2 diffs)
-
locales/fr_FR/LC_MESSAGES/stats.po (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bureau/admin/bro_editor.php
r102 r134 1 1 <?php 2 2 /* 3 $Id: bro_editor.php,v 1. 2 2003/06/10 06:45:16root Exp $3 $Id: bro_editor.php,v 1.3 2003/08/13 23:31:47 root Exp $ 4 4 ---------------------------------------------------------------------- 5 5 AlternC - Web Hosting System … … 55 55 </head> 56 56 <body> 57 <p> 57 58 <?php if ($error) echo "<font color=\"red\">$error</font><br />"; ?> 58 <p>59 59 <?php echo _("File editing")." <code>$R/<b>$file</b></code><br />"; ?> 60 <form action="bro_editor.php" method="POST"> 60 </p> 61 <form action="bro_editor.php" method="post"><p> 61 62 <textarea class="int" style="font-family: <?php echo $p["editor_font"]; ?>; font-size: <?php echo $p["editor_size"]; ?>" cols="<?php echo $p["editsizex"]; ?>" rows="<?php echo $p["editsizey"]; ?>" name="texte"><?php 62 63 $bro->content($R,$file); 63 64 ?></textarea><br /> 64 <input TYPE="hidden" name="file" value="<?php echo str_replace("\"",""",$file); ?>">65 <input TYPE="hidden" name="R" value="<?php echo str_replace("\"",""",$R); ?>">65 <input type="hidden" name="file" value="<?php echo str_replace("\"",""",$file); ?>" /> 66 <input type="hidden" name="R" value="<?php echo str_replace("\"",""",$R); ?>" /> 66 67 67 <input TYPE="submit" class="inb" value="<?php __("Save"); ?>" name="save"> 68 <input TYPE="submit" class="inb" value="<?php __("Save & Quit"); ?>" name="saveret"> 69 <input TYPE="submit" class="inb" value="<?php __("Quit"); ?>" name="cancel"> 68 <input type="submit" class="inb" value="<?php __("Save"); ?>" name="save" /> 69 <input type="submit" class="inb" value="<?php __("Save & Quit"); ?>" name="saveret" /> 70 <input type="submit" class="inb" value="<?php __("Quit"); ?>" name="cancel" /> 71 </p> 70 72 </form> 71 </p>72 73 </body> 73 74 </html> -
bureau/admin/bro_main.php
r109 r134 1 1 <?php 2 2 /* 3 $Id: bro_main.php,v 1. 3 2003/06/10 13:16:11root Exp $3 $Id: bro_main.php,v 1.4 2003/08/13 23:31:47 root Exp $ 4 4 ---------------------------------------------------------------------- 5 5 AlternC - Web Hosting System … … 93 93 <h3><?php __("File browser"); ?></h3> 94 94 95 <form action="bro_main.php" method=" POST" name="nn">95 <form action="bro_main.php" method="post" name="nn" id="nn"> 96 96 <input type="hidden" name="R" value="<?php echo $R; ?>" /> 97 97 <table><tr> … … 113 113 if ($formu==2 && $actrename && count($d)) { 114 114 echo "<table cellpadding=\"6\">\n"; 115 echo "<form action=\"bro_main.php\" Method=\"post\">\n";115 echo "<form action=\"bro_main.php\" method=\"post\">\n"; 116 116 echo "<input type=\"hidden\" name=\"R\" value=\"$R\" />\n"; 117 117 echo "<input type=\"hidden\" name=\"formu\" value=\"4\" />\n"; … … 131 131 132 132 ?> 133 <form action="bro_main.php" Method="post" name="main">133 <form action="bro_main.php" method="post" name="main" id="main"> 134 134 <input type="hidden" name="R" value="<?php echo $R; ?>" /> 135 135 <input type="hidden" name="formu" value="2" /> … … 159 159 /* AFFICHE 1 COLONNE DETAILLEE */ 160 160 reset($c); 161 echo "<table width=\"100%\" border=0 cellpadding=0 cellspacing=0>";161 echo "<table width=\"100%\" style=\"border: 0px\" cellpadding=\"0\" cellspacing=\"0\">"; 162 162 $col=1; 163 163 for($i=0;$i<count($c);$i++) { -
bureau/admin/browseforfolder.php
r109 r134 78 78 ?> 79 79 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr"> 80 <head> 81 <title>Browser for folder</title> 82 <link rel="stylesheet" href="styles/style.css" type="text/css" /> 83 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 84 80 85 <?php 81 86 echo "<head><script type=\"text/javascript\">\n"; … … 94 99 <title>Recherche d'un dossier</title> 95 100 <link rel="stylesheet" href="styles/style.css" type="text/css" /> 101 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 96 102 <script type="text/javascript"> 97 103 /* Fonction appellée lors du lancement d'un popup Fichier : */ … … 117 123 reset($ar); 118 124 ?> 119 <form method="post" id="main" action="browseforfolder.php">125 <form method="post" id="main" name="main" action="browseforfolder.php"> 120 126 <p> 121 127 <input type="hidden" name="caller" value="<?php echo $caller; ?>" /> … … 129 135 </form> 130 136 131 <table border="0" cellspacing="2" cellpadding="0">137 <table style="border: 0" cellspacing="2" cellpadding="0"> 132 138 133 139 <?php -
bureau/admin/dom_subdel.php
r107 r134 1 1 <?php 2 2 /* 3 $Id: dom_subdel.php,v 1. 2 2003/06/10 11:18:27 root Exp $3 $Id: dom_subdel.php,v 1.3 2003/08/13 23:31:47 root Exp $ 4 4 ---------------------------------------------------------------------- 5 5 AlternC - Web Hosting System … … 40 40 </head> 41 41 <body> 42 < ?php printf(_("Deleting subdomain %s"),"http://".ife($sub,$sub.".").$domain); ?> : </h3>42 <h3><?php printf(_("Deleting subdomain %s"),"http://".ife($sub,$sub.".").$domain); ?> : </h3> 43 43 <?php 44 44 if ($error) { … … 47 47 } 48 48 ?> 49 <hr >49 <hr /> 50 50 <!-- ***************************************** 51 51 gestion du sous-domaine -
bureau/admin/sta_list.php
r107 r134 1 1 <?php 2 2 /* 3 $Id: sta_list.php,v 1. 5 2003/06/10 11:18:27 root Exp $3 $Id: sta_list.php,v 1.6 2003/08/13 23:31:47 root Exp $ 4 4 ---------------------------------------------------------------------- 5 5 AlternC - Web Hosting System … … 61 61 <form method="post" action="sta_del.php"> 62 62 <table cellspacing="0" cellpadding="4"> 63 <tr><th colspan="2"> </th><th><?php __("Domain name"); ?></th><th><?php __("Language"); ?></th><th><?php __("Folder"); ?></th><th><?php __("View"); ?></t r>63 <tr><th colspan="2"> </th><th><?php __("Domain name"); ?></th><th><?php __("Language"); ?></th><th><?php __("Folder"); ?></th><th><?php __("View"); ?></th></tr> 64 64 <?php 65 65 reset($r); … … 101 101 <form method="post" action="sta_del_raw.php"> 102 102 <table cellspacing="0" cellpadding="4"> 103 <tr><th colspan="2"> </th><th><?php __("Domain name"); ?></th><th><?php __("Folder"); ?></th><th><?php __("View"); ?></t r>103 <tr><th colspan="2"> </th><th><?php __("Domain name"); ?></th><th><?php __("Folder"); ?></th><th><?php __("View"); ?></th></tr> 104 104 <?php 105 105 reset($r); -
bureau/class/m_stats.php
r105 r134 1 1 <?php 2 2 /* 3 $Id: m_stats.php,v 1. 5 2003/06/10 07:31:36root Exp $3 $Id: m_stats.php,v 1.6 2003/08/13 23:31:50 root Exp $ 4 4 ---------------------------------------------------------------------- 5 5 AlternC - Web Hosting System … … 448 448 $db->query("DELETE FROM stats2 WHERE id=$id"); 449 449 $quota->dec("stats"); 450 return $name;450 return true; 451 451 } 452 452 -
bureau/locales/fr_FR/LC_MESSAGES/stats.po
r105 r134 2 2 # Copyright (c) 2002 the AlternC Development Team 3 3 # <tech@alternc.org> 4 # $Id: stats.po,v 1. 4 2003/06/10 07:31:37root Exp $4 # $Id: stats.po,v 1.5 2003/08/13 23:31:54 root Exp $ 5 5 msgid "" 6 6 msgstr "" 7 "Project-Id-Version: $Id: stats.po,v 1. 4 2003/06/10 07:31:37root Exp $\n"7 "Project-Id-Version: $Id: stats.po,v 1.5 2003/08/13 23:31:54 root Exp $\n" 8 8 "POT-Creation-Date: 2002-06-12 19:00CEST\n" 9 9 "PO-Revision-Date: 2002-06-16 13:50CEST\n" … … 96 96 msgstr "Supprimer les jeux cochés" 97 97 98 msgid "Delete the checked Raw Statistics (apache)" 99 msgstr "Effacer les jeux de stats brutes cochees" 100 101 msgid "Change those Raw Statistics." 102 msgstr "Modifier ce jeu de stats brutes." 103 98 104 msgid "Byte" 99 105 msgstr "Octet"
Note: See TracChangeset
for help on using the changeset viewer.
