summaryrefslogtreecommitdiffstats
path: root/application/views/file/upload_form.php
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2012-04-08 23:38:05 +0200
committerFlorian Pritz <bluewind@xinu.at>2012-04-09 20:47:40 +0200
commit1040dbad987e280c61134c83194832224ff870b5 (patch)
tree934bd81c43c992b6faccd3383fe17bb60519ffe0 /application/views/file/upload_form.php
parent4bbdd1d7737c100668c7adb952ec181f941e6a55 (diff)
Revert "Disable paste box"
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'application/views/file/upload_form.php')
-rw-r--r--application/views/file/upload_form.php42
1 files changed, 20 insertions, 22 deletions
diff --git a/application/views/file/upload_form.php b/application/views/file/upload_form.php
index e1e4313a5..04f7fd9f4 100644
--- a/application/views/file/upload_form.php
+++ b/application/views/file/upload_form.php
@@ -8,35 +8,33 @@
</form>
<script type="text/javascript">
/* <![CDATA[ */
- var max_upload_size = "<?php echo $max_upload_size; ?>";
- // check file size before uploading if browser support html5
- if (window.File && window.FileList) {
- function checkFileUpload(evt) {
- var f = evt.target.files[0];
- if (f.size > max_upload_size) {
- document.getElementById('upload_button').value = "File too big";
- document.getElementById('upload_button').disabled = true;
- } else {
- document.getElementById('upload_button').value = "Upload";
- document.getElementById('upload_button').disabled = false;
- }
- }
-
- document.getElementById('file').addEventListener('change', checkFileUpload, false);
- }
- /* ]]> */
+document.write('\
+ <p><b>OR</b></p>\
+ <form action="javascript: do_paste()">\
+ <p>\
+ <textarea id="textarea" name="content" cols="80" rows="20"></textarea><br />\
+ <div style="display: none">Email: <input type="text" name="email" size="20" /></div>\
+ Optional password (for deletion and search): <input id="textarea_password" type="password" name="password" size="10" /><br />\
+ <input type="submit" value="Paste" name="process" />\
+ </p>\
+ </form>\
+');
+ var upload_url = "<?php echo site_url("file/do_upload/dumb"); ?>";
+ var max_upload_size = "<?php echo $max_upload_size; ?>";
+ /* ]]> */
</script>
+ <script type="text/javascript" src="<?php echo base_url(); ?>data/js/upload_form.js?<?php echo filemtime(FCPATH."/data/js/upload_form.js"); ?>"></script>
</div>
<br />
-<p>Uploads are deleted after <?php echo $upload_max_age; ?> days<?php if($small_upload_size > 0): ?>
+<p>Uploads/pastes are deleted after <?php echo $upload_max_age; ?> days<?php if($small_upload_size > 0): ?>
unless they are smaller than <?php echo format_bytes($small_upload_size); ?>
<?php endif; ?>. Maximum upload size is <?php echo format_bytes($max_upload_size); ?></p>
-<h2>Features</h2>
-<p>For shell uploading and download information for the client go to <a href="<?php echo site_url("file/client"); ?>"><?php echo site_url("file/client"); ?></a></p>
+<p><h2>Features</h2></p>
+<p>For shell uploading/pasting and download information for the client go to <a href="<?php echo site_url("file/client"); ?>"><?php echo site_url("file/client"); ?></a></p>
<p>You can use the <?php echo anchor("file/upload_history", "history"); ?> to find old uploads.</p>
-<p>How to link your uploads:</p>
+<p>How to link your pastes:</p>
<ul>
- <li><span class="example">/&lt;ID&gt;/</span> automatically highlight the uploads</li>
+ <li><span class="example">/&lt;ID&gt;/</span> automatically highlight the paste</li>
<li><span class="example">/&lt;ID&gt;</span> set the detected MIME type and let the browser do the rest</li>
<li><span class="example">/&lt;ID&gt;/plain</span> force the MIME type to be text/plain</li>
<li><span class="example">/&lt;ID&gt;/&lt;file extension&gt;</span> override auto detection and use the supplied file extension or language name for highlighting</li>