Gzip Support

This commit is contained in:
Armel Fauveau
2001-07-07 19:44:52 +00:00
parent 1512a0fdfb
commit 7456f91ce8
4 changed files with 22 additions and 0 deletions

View File

@@ -236,6 +236,14 @@ if($cfgBookmark['db'] && $cfgBookmark['table'])
<td> <td>
<input type="checkbox" name="asfile" value="sendit"><?php echo $strSend;?> <input type="checkbox" name="asfile" value="sendit"><?php echo $strSend;?>
</td> </td>
<?php
// gzip encode feature
if(function_exists("gzencode")) {
echo "<td>\n";
echo "<input type=\"checkbox\" name=\"gzip\" value=\"gzip\">".$strGzip."\n";
echo "</td>\n";
}
?>
</tr> </tr>
<tr> <tr>
<td> <td>

View File

@@ -270,4 +270,7 @@ $strYes = "Yes";
$strBinary="Binary"; $strBinary="Binary";
$strBinaryDoNotEdit="Binary - do not edit"; $strBinaryDoNotEdit="Binary - do not edit";
$strEnglishPrivileges=" Note: MySQL privilege names are expressed in English "; $strEnglishPrivileges=" Note: MySQL privilege names are expressed in English ";
// export Zip (July 07, 2001, 19:48am)
$strGzip="Gzip";
?> ?>

View File

@@ -267,4 +267,7 @@ $strWelcome = "Bienvenue
$strWrongUser = "Erreur d'utilisateur/mot de passe. Acc<63>s refus<75>"; $strWrongUser = "Erreur d'utilisateur/mot de passe. Acc<63>s refus<75>";
$strYes = "Oui"; $strYes = "Oui";
// export Zip (July 07, 2001, 19:48am)
$strGzip="Gzip";
?> ?>

View File

@@ -405,6 +405,14 @@ echo "&nbsp;$strSingly\n";
<td> <td>
<input type="checkbox" name="asfile" value="sendit"><?php echo $strSend;?> <input type="checkbox" name="asfile" value="sendit"><?php echo $strSend;?>
</td> </td>
<?php
// gzip encode feature
if(function_exists("gzencode")) {
echo "<td>\n";
echo "<input type=\"checkbox\" name=\"gzip\" value=\"gzip\">".$strGzip."\n";
echo "</td>\n";
}
?>
</tr> </tr>
<tr> <tr>
<td> <td>