]> git.p6c8.net - jirafeau_mojo42.git/commitdiff
Rename file.php to f.php to minimize url size
authorJerome Jutteau <mojo@couak.net>
Mon, 29 Jul 2013 20:03:39 +0000 (20:03 +0000)
committerJerome Jutteau <mojo@couak.net>
Mon, 29 Jul 2013 20:03:39 +0000 (20:03 +0000)
Note: always better with url rewriting

f.php [moved from file.php with 95% similarity]
lib/functions.js
lib/lang/fr.php

diff --git a/file.php b/f.php
similarity index 95%
rename from file.php
rename to f.php
index 2edaf4405c2872c5d1529eb55adfedc754a85904..7e385302c7ba332dace8e79bcde06760c07ac43f 100644 (file)
--- a/file.php
+++ b/f.php
@@ -121,7 +121,7 @@ if (!empty ($link['key']))
         require (JIRAFEAU_ROOT.'lib/template/header.php');
         echo '<div>' .
              '<form action = "';
         require (JIRAFEAU_ROOT.'lib/template/header.php');
         echo '<div>' .
              '<form action = "';
-        echo $cfg['web_root'] . '/file.php';
+        echo $cfg['web_root'] . '/f.php';
         echo '" ' .
              'method = "post" id = "submit">'; ?>
              <input type = "hidden" name = "jirafeau" value = "<?php echo JIRAFEAU_VERSION ?>"/><?php
         echo '" ' .
              'method = "post" id = "submit">'; ?>
              <input type = "hidden" name = "jirafeau" value = "<?php echo JIRAFEAU_VERSION ?>"/><?php
@@ -138,7 +138,7 @@ if (!empty ($link['key']))
             ?><input type="submit" id = "submit_download"  value="<?php echo t('Download'); ?>"
             onclick="document.getElementById('submit').action='
 <?php
             ?><input type="submit" id = "submit_download"  value="<?php echo t('Download'); ?>"
             onclick="document.getElementById('submit').action='
 <?php
-        echo $cfg['web_root'] . '/file.php?h=' . $link_name . '&amp;bd=1';
+        echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&amp;bd=1';
         if (!empty($crypt_key))
             echo '&amp;k=' . urlencode($crypt_key);
 ?>';
         if (!empty($crypt_key))
             echo '&amp;k=' . urlencode($crypt_key);
 ?>';
@@ -148,7 +148,7 @@ if (!empty ($link['key']))
             ?><input type="submit" id = "submit_preview"  value="<?php echo t('Preview'); ?>"
             onclick="document.getElementById('submit').action='
 <?php
             ?><input type="submit" id = "submit_preview"  value="<?php echo t('Preview'); ?>"
             onclick="document.getElementById('submit').action='
 <?php
-        echo $cfg['web_root'] . '/file.php?h=' . $link_name . '&amp;bp=1';
+        echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&amp;bp=1';
         if (!empty($crypt_key))
             echo '&amp;k=' . urlencode($crypt_key);
 ?>';
         if (!empty($crypt_key))
             echo '&amp;k=' . urlencode($crypt_key);
 ?>';
@@ -179,7 +179,7 @@ if ($cfg['download_page'] && !$password_challenged && !$button_download && !$but
         require (JIRAFEAU_ROOT.'lib/template/header.php');
         echo '<div>' .
              '<form action = "';
         require (JIRAFEAU_ROOT.'lib/template/header.php');
         echo '<div>' .
              '<form action = "';
-        echo $cfg['web_root'] . '/file.php';
+        echo $cfg['web_root'] . '/f.php';
         echo '" ' .
              'method = "post" id = "submit">'; ?>
              <input type = "hidden" name = "jirafeau" value = "<?php echo JIRAFEAU_VERSION ?>"/><?php
         echo '" ' .
              'method = "post" id = "submit">'; ?>
              <input type = "hidden" name = "jirafeau" value = "<?php echo JIRAFEAU_VERSION ?>"/><?php
@@ -192,7 +192,7 @@ if ($cfg['download_page'] && !$password_challenged && !$button_download && !$but
             ?><input type="submit" id = "submit_download"  value="<?php echo t('Download'); ?>"
             onclick="document.getElementById('submit').action='
 <?php
             ?><input type="submit" id = "submit_download"  value="<?php echo t('Download'); ?>"
             onclick="document.getElementById('submit').action='
 <?php
-        echo $cfg['web_root'] . '/file.php?h=' . $link_name . '&amp;bd=1';
+        echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&amp;bd=1';
         if (!empty($crypt_key))
             echo '&amp;k=' . urlencode($crypt_key);
 ?>';
         if (!empty($crypt_key))
             echo '&amp;k=' . urlencode($crypt_key);
 ?>';
@@ -203,7 +203,7 @@ if ($cfg['download_page'] && !$password_challenged && !$button_download && !$but
             ?><input type="submit" id = "submit_preview"  value="<?php echo t('Preview'); ?>"
             onclick="document.getElementById('submit').action='
 <?php
             ?><input type="submit" id = "submit_preview"  value="<?php echo t('Preview'); ?>"
             onclick="document.getElementById('submit').action='
 <?php
-        echo $cfg['web_root'] . '/file.php?h=' . $link_name . '&amp;bp=1';
+        echo $cfg['web_root'] . '/f.php?h=' . $link_name . '&amp;bp=1';
         if (!empty($crypt_key))
             echo '&amp;k=' . urlencode($crypt_key);
 ?>';
         if (!empty($crypt_key))
             echo '&amp;k=' . urlencode($crypt_key);
 ?>';
index 816ea6db2cd79b8aec9af742bf1827258713d590..24c7df36f876e29deb920665655232ba1ded7aad 100755 (executable)
 
 function show_link (url, reference, delete_code, crypt_key, date)
 {
 
 function show_link (url, reference, delete_code, crypt_key, date)
 {
-    var download_link = url + 'file.php?h=' + reference;
-    var download_link_href = url + 'file.php?h=' + reference;
+    var download_link = url + 'f.php?h=' + reference;
+    var download_link_href = url + 'f.php?h=' + reference;
     if (crypt_key.length > 0)
     {
         download_link += '&amp;k=' + crypt_key;
         download_link_href += '&k=' + crypt_key;
     }
 
     if (crypt_key.length > 0)
     {
         download_link += '&amp;k=' + crypt_key;
         download_link_href += '&k=' + crypt_key;
     }
 
-    var delete_link = url + 'file.php?h=' + reference + '&amp;d=' + delete_code;
-    var delete_link_href = url + 'file.php?h=' + reference + '&d=' + delete_code;
+    var delete_link = url + 'f.php?h=' + reference + '&amp;d=' + delete_code;
+    var delete_link_href = url + 'f.php?h=' + reference + '&d=' + delete_code;
 
     document.getElementById('upload_link').innerHTML = download_link;
     document.getElementById('upload_link').href = download_link_href;
 
     document.getElementById('upload_link').innerHTML = download_link;
     document.getElementById('upload_link').href = download_link_href;
index 6e32dd610d80850949161cfbd296f4a4990b9612..ce0846714c4a02c9b27f3f61463308869464e69c 100755 (executable)
@@ -46,7 +46,7 @@ $tr = array (
              'File uploaded! Copy the following URL to get it' => 'Fichier envoyé! Le fichier sera accessible à l\'adresse suivante',
              'This file is valid until the following date' => 'Ce fichier est valable jusqu\'à la date suivante',
              'Keep the following URL to delete it at any moment' => 'Vous pouvez supprimer le fichier lorsque vous le désirez via l\'adresse suivante',
              'File uploaded! Copy the following URL to get it' => 'Fichier envoyé! Le fichier sera accessible à l\'adresse suivante',
              'This file is valid until the following date' => 'Ce fichier est valable jusqu\'à la date suivante',
              'Keep the following URL to delete it at any moment' => 'Vous pouvez supprimer le fichier lorsque vous le désirez via l\'adresse suivante',
-             /* file.php */
+             /* f.php */
              'Download' => 'Télécharger',
              'Sorry, the requested file is not found' => 'Désolé, le fichier que vous demandez n\'existe pas ou n\'existe plus',
              'File not available.' => 'Fichier non disponible',
              'Download' => 'Télécharger',
              'Sorry, the requested file is not found' => 'Désolé, le fichier que vous demandez n\'existe pas ou n\'existe plus',
              'File not available.' => 'Fichier non disponible',

patrick-canterino.de