]> git.p6c8.net - jirafeau.git/commitdiff
Add the capacity to grab version using the scripting interface
authorJerome Jutteau <mojo@couak.net>
Thu, 31 Jan 2013 20:58:13 +0000 (21:58 +0100)
committerJerome Jutteau <mojo@couak.net>
Thu, 31 Jan 2013 20:58:13 +0000 (21:58 +0100)
lib/lang/fr.php
script.php

index c8001c8b23d1d180a11ce3266c332e1bdf304268..ed3110bfcc7fa73aee173f6cbc088a5a079d4af6 100755 (executable)
@@ -132,6 +132,7 @@ $tr = array (
             'This interface permits to script your uploads and downloads.' => 'Cette interface permet de programmer vos envoie et téléversements.',
             'The instructions above show how to query this interface.' => 'Les instructions ci-dessous montrent comment interroger cette interface.',
             'Get server capacity' => 'Récupérer la capacité d\'envoie du serveur',
+            'Get Jirafeau\'s version' => 'Récupérer la version de Jirafeau',
             'Send a GET query to' => 'Envoyez une requette GET à',
             'Send a POST query to' => 'Envoyez une requette POST à',
             'Required' => 'Requis',
index eda2cc99d215b4ef5977764bf37ecb6f21479dd6..8968aac426fd23f82f8ebcaebb4a2f48d520f771 100755 (executable)
@@ -50,6 +50,19 @@ if ($_SERVER['REQUEST_METHOD'] == "GET" && count ($_GET) == 0)
             ' ' . t('The instructions above show how to query this interface.');\r
     echo '</p>';\r
     \r
+    echo '<h3>' . t('Get Jirafeau\'s version') . ':</h3>';\r
+    echo '<p>';\r
+    echo t('Send a GET query to') . ': <i>' . $web_root . 'script.php</i><br />';\r
+    echo '<br />';\r
+    echo t('Parameters') . ':<br />';\r
+    echo "<b>get_version=</b>1<i> (" . t('Required') . ")</i> <br />";\r
+    echo '</p>';\r
+    echo '<p>' . t('This will return brut text content.') . ' ' .\r
+            t('First line is the version number.') . '<br /></p>';\r
+    echo '<p>';\r
+    echo t('Example') . ": <a href=\"" . $web_root . "script.php?get_version=1\">" . $web_root . "script.php?get_version=1</a> ";\r
+    echo '</p>';\r
+\r
     echo '<h3>' . t('Get server capacity') . ':</h3>';\r
     echo '<p>';\r
     echo t('Send a GET query to') . ': <i>' . $web_root . 'script.php</i><br />';\r
@@ -240,6 +253,10 @@ elseif (isset ($_GET['get_capacity']))
     echo min (jirafeau_ini_to_bytes (ini_get ('post_max_size')),\r
               jirafeau_ini_to_bytes (ini_get ('upload_max_filesize')));\r
 }\r
+elseif (isset ($_GET['get_version']))\r
+{\r
+    echo JIRAFEAU_VERSION;\r
+}\r
 elseif (isset ($_GET['lang']))\r
 {\r
     $l=$_GET['lang'];\r

patrick-canterino.de