X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/11e172891035764434fbf06bc4a6f1ff0b04fdca..c4b50888f400fd7e0442431e859010450b55af4b:/script.php?ds=inline diff --git a/script.php b/script.php index 396538c..2409f1b 100755 --- a/script.php +++ b/script.php @@ -33,6 +33,11 @@ require (JIRAFEAU_ROOT . 'lib/lang.php'); global $script_langages; $script_langages = array ('bash' => 'Bash'); +/* Operations may take a long time. + * Be sure PHP's safe mode is off. + */ + set_time_limit(0); + if ($_SERVER['REQUEST_METHOD'] == "GET" && count ($_GET) == 0) { require (JIRAFEAU_ROOT . 'lib/template/header.php'); @@ -177,6 +182,66 @@ if ($_SERVER['REQUEST_METHOD'] == "GET" && count ($_GET) == 0) echo '
' . t('This will return brut text content.') . ' ' .
t('First line is the download reference and the second line the delete code.') . '
'; + echo t('This interface permits to create a block of data filled with zeros.') . + ' ' . t('You can read selected parts, write (using a code) and delete the block.') . + ' ' . t('Blocks may be removed after a month of non usage.'); + echo '
'; + echo '';
+ echo t('Send a GET query to') . ': ' . $web_root . 'script.php?init_block
';
+ echo '
';
+ echo t('Parameters') . ':
';
+ echo "size=size_in_bytes (" . t('Required') . ")
";
+ echo '
' . t('This will return brut text content.') . ' ' .
+ t('First line is a block id the second line the edit/delete code.') . '
';
+ echo t('Send a GET query to') . ': ' . $web_root . 'script.php?get_block_size
';
+ echo '
';
+ echo t('Parameters') . ':
';
+ echo "id=block_id (" . t('Required') . ")
";
+ echo '
' . t('This will return asked data or "Error" string.') . '
';
+ echo t('Send a GET query to') . ': ' . $web_root . 'script.php?read_block
';
+ echo '
';
+ echo t('Parameters') . ':
';
+ echo "id=block_id (" . t('Required') . ")
";
+ echo "start=byte_position_starting_from_zero (" . t('Required') . ")
";
+ echo "length=length_to_read_in_bytes (" . t('Required') . ")
";
+ echo '
' . t('This will return asked data or "Error" string.') . '
';
+ echo t('Send a GET query to') . ': ' . $web_root . 'script.php?write_block
';
+ echo '
';
+ echo t('Parameters') . ':
';
+ echo "id=block_id (" . t('Required') . ")
";
+ echo "code=block_code (" . t('Required') . ")
";
+ echo "start=byte_position_starting_from_zero (" . t('Required') . ")
";
+ echo "data=data_to_write (" . t('Required') . ")
";
+ echo '
' . t('This will return "Ok" or "Error" string.') . '
';
+ echo t('Send a GET query to') . ': ' . $web_root . 'script.php?delete_block
';
+ echo '
';
+ echo t('Parameters') . ':
';
+ echo "id=block_id (" . t('Required') . ")
";
+ echo "code=block_code (" . t('Required') . ")
";
+ echo '
' . t('This will return "Ok" or "Error" string.') . '