3 * Jirafeau, your web file repository
4 * Copyright (C) 2012 Jerome Jutteau <j.jutteau@gmail.com>
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as
8 * published by the Free Software Foundation, either version 3 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 define ('JIRAFEAU_ROOT', dirname (__FILE__
) . '/');
21 require (JIRAFEAU_ROOT
. 'lib/config.php');
22 require (JIRAFEAU_ROOT
. 'lib/settings.php');
23 require (JIRAFEAU_ROOT
. 'lib/functions.php');
24 require (JIRAFEAU_ROOT
. 'lib/lang.php');
25 require (JIRAFEAU_ROOT
. 'lib/template/header.php');
31 require (JIRAFEAU_ROOT
. 'lib/template/footer.php');
35 <div id
="upload_finished">
37 <?php
echo t('File uploaded! Copy the following URL to get it') ?
>:
39 <a id
="upload_link" href
=""></a
>
44 <?php
echo t('Keep the following URL to delete it at any moment'); ?
>:
46 <a id
="delete_link" href
=""></a
>
50 <?php
echo t('This file is valid until the following date'); ?
>:
51 <br
/><strong
><div id
="date"></div
></strong
>
57 <?php
echo t ('Uploading ...'); ?
><div id
="uploaded_percentage"></div
>
63 <?php
echo t('Select a file'); ?
> :
66 <input type
="file" id
="file_select" size
="30"
68 document.getElementById('options').style.display = '';
69 document.getElementById('send').style.display = '';
72 <p id
="max_file_size" class="config"></p
>
74 <input type
="submit" id
="send" value
="<?php echo t('Send'); ?>"
76 document.getElementById('upload').style.display = 'none';
77 document.getElementById('uploading').style.display = '';
78 upload ('<?php echo $cfg['web_root']; ?>', <?php echo jirafeau_get_max_upload_size_bytes (); ?>);
82 <table id
="option_table">
84 <td
><?php
echo t('One time download'); ?
>:</td
>
85 <td
><input type
="checkbox" id
="one_time_download" /></td
>
88 <td
><label
for="input_key"><?php
echo t('Password') . ':'; ?
></label
></td
>
89 <td
><input type
="text" name
="key" id
="input_key" /></td
>
92 <td
><label
for="select_time"><?php
echo t('Time limit') . ':'; ?
></label
></td
>
93 <td
><select name
="time" id
="select_time">
94 <option value
="none"><?php
echo t('None'); ?
></option
>
95 <option value
= "minute"><?php
echo t('One minute'); ?
></option
>
96 <option value
= "hour"><?php
echo t('One hour'); ?
></option
>
97 <option value
= "day"><?php
echo t('One day'); ?
></option
>
98 <option value
= "week"><?php
echo t('One week'); ?
></option
>
99 <option value
= "month"><?php
echo t('One month');?
></option
>
105 <script lang
="Javascript">
106 document
.getElementById('uploading').style
.display
= 'none';
107 document
.getElementById('upload_finished').style
.display
= 'none';
108 document
.getElementById('options').style
.display
= 'none';
109 document
.getElementById('send').style
.display
= 'none';
110 if (!check_html5_file_api ())
111 document
.getElementById('max_file_size').innerHTML
= '<?php
112 echo t('You browser may not support HTML5 so the maximum file size is
') . jirafeau_get_max_upload_size ();
115 <?php
require (JIRAFEAU_ROOT
. 'lib/template/footer.php'); ?
>