From a46463da67d84b9a45803f2d2cdcf10a93db54c7 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Tue, 19 Oct 2010 20:54:30 +0200 Subject: fix XHTML errors Signed-off-by: Florian Pritz --- system/application/views/file/non_existant.php | 2 +- system/application/views/file/show_url.php | 6 ++++-- system/application/views/file/too_big.php | 2 +- system/application/views/file/upload_error.php | 6 ++++-- system/application/views/file/upload_form.php | 19 +++++++++++-------- 5 files changed, 21 insertions(+), 14 deletions(-) (limited to 'system/application/views/file') diff --git a/system/application/views/file/non_existant.php b/system/application/views/file/non_existant.php index 418007782..9f4a79913 100644 --- a/system/application/views/file/non_existant.php +++ b/system/application/views/file/non_existant.php @@ -1,3 +1,3 @@
- I'm sorry, but the requested file doesn't exist. +

I'm sorry, but the requested file doesn't exist.

diff --git a/system/application/views/file/show_url.php b/system/application/views/file/show_url.php index 62d34c661..e0e3dc8a6 100644 --- a/system/application/views/file/show_url.php +++ b/system/application/views/file/show_url.php @@ -1,4 +1,6 @@
- You can get your file here:
-
+

+ You can get your file here:
+
+

diff --git a/system/application/views/file/too_big.php b/system/application/views/file/too_big.php index e5dd5bd6a..aa5c42835 100644 --- a/system/application/views/file/too_big.php +++ b/system/application/views/file/too_big.php @@ -1,3 +1,3 @@
- Sorry, the file you uploaded is too big. +

Sorry, the file you uploaded is too big.

diff --git a/system/application/views/file/upload_error.php b/system/application/views/file/upload_error.php index 807ca6071..e757b58c1 100644 --- a/system/application/views/file/upload_error.php +++ b/system/application/views/file/upload_error.php @@ -1,4 +1,6 @@
- An error occured while uploading.
- Most likely your file is too big. +

+ An error occured while uploading.
+ Most likely your file is too big. +

diff --git a/system/application/views/file/upload_form.php b/system/application/views/file/upload_form.php index 88fbb34ef..2835f46a9 100644 --- a/system/application/views/file/upload_form.php +++ b/system/application/views/file/upload_form.php @@ -1,14 +1,18 @@
- File: - +

+ File: + +


OR


-
- +

+
+ +



@@ -18,16 +22,15 @@

For shell uploading/pasting use:

-curl -n -F "content=<-"  < file      (not binary safe)
-cat file | curl -n -F "content=<-"   (not binary safe)
+curl -n -F "content=<-"  < file      (not binary safe)
+cat file | curl -n -F "content=<-"   (not binary safe)
 curl -n -F "file=@/home/user/foo"    (binary safe)
 

-

If you want to use authentication add the following to your ~/.netrc: +

If you want to use authentication add the following to your ~/.netrc:

 machine paste.xinu.at password my_secret_password
 
-


If you want to you can use this script to upload files, paste text or delete your uploads:

-- cgit v1.2.3-24-g4f1b