Skip to content

Commit d3b8801

Browse files
committed
Added everything for the first time
0 parents  commit d3b8801

File tree

24 files changed

+7752
-0
lines changed

24 files changed

+7752
-0
lines changed

Changes

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
Revision history for jQuery-File-Upload
2+
3+
0.01 Date/time
4+
First version, released on an unsuspecting world.
5+
6+
0.02
7+
8+
added methods data and relative_url_path
9+
10+
0.03
11+
12+
added methods thumbnail_upload_dir, thumbnail_url_base, and thumbnail_url_base. Also fixed
13+
bug where if thumbnail_prefix was set to '' and thumbnail and original filenames were the same,
14+
then the original file would overwrite the thumbnail.
15+
16+
0.04
17+
18+
pod test failed, so I fixed it. Was missing documentation for these two methods:
19+
20+
show_client_filename
21+
thumbnail_quality
22+
23+
Also, added a little bit about how you can get access to the ctx object in the PRE/POST METHODS section.
24+
25+
0.05
26+
27+
added thumbnail_postfix method
28+
29+
0.06
30+
31+
added relative_to_host method
32+
33+
0.07
34+
35+
added require_image method
36+
37+
0.08
38+
39+
fixed issue where if should_delete was set to 0 and handle_request was called with a 1, would not handle response correctly because it would never get to print_response call
40+
41+
0.09
42+
43+
fixed issue where the _clear method would delete some initial passed in values, such as filename and thumbnail_filename
44+
45+
0.10
46+
47+
fixed issue where calling generate_output may cause an error depending on what you passed into it (essentially if _set_uri ended up not being called). Fixed this by calling it manually.
48+
49+
0.11
50+
51+
added delete_params as an option for generate_output method
52+
fixed issue where calling generate_output would generate null for delete urls if there was more than one file to generate it for. (needed to reset delete_url each time around loop)
53+
54+
0.12
55+
56+
fixed _set_uri to use Catalyst URI if it already exists. Also, fixed issue where uri was being reused to generate delete_url in _delete_url if generate_output was passed more than one file.
57+
58+
0.13
59+
60+
fixed issue where IE needs the content-type to be text/plain. suggested by this bug: https://rt.cpan.org/Ticket/Display.html?id=84300&results=fcb4720e2a3df735d29b41e959a7c5af

MANIFEST

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
Changes
2+
lib/jQuery/File/Upload.pm
3+
Makefile.PL
4+
MANIFEST This list of files
5+
README
6+
t/00-load.t
7+
t/manifest.t
8+
t/pod-coverage.t
9+
t/pod.t

MYMETA.json

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
{
2+
"abstract" : "Server-side solution for the L<jQuery File Upload|https://github.com/blueimp/jQuery-File-Upload/> plugin.",
3+
"author" : [
4+
"Adam Hopkins <srchulo@cpan.org>"
5+
],
6+
"dynamic_config" : 0,
7+
"generated_by" : "ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.120921",
8+
"license" : [
9+
"unknown"
10+
],
11+
"meta-spec" : {
12+
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
13+
"version" : "2"
14+
},
15+
"name" : "jQuery-File-Upload",
16+
"no_index" : {
17+
"directory" : [
18+
"t",
19+
"inc"
20+
]
21+
},
22+
"prereqs" : {
23+
"build" : {
24+
"requires" : {
25+
"Test::More" : "0"
26+
}
27+
},
28+
"configure" : {
29+
"requires" : {
30+
"ExtUtils::MakeMaker" : "0"
31+
}
32+
},
33+
"runtime" : {
34+
"requires" : {
35+
"CGI" : "0",
36+
"Cwd" : "0",
37+
"Digest::MD5" : "0",
38+
"Image::Magick" : "0",
39+
"JSON::XS" : "0",
40+
"Net::SSH2" : "0",
41+
"Net::SSH2::SFTP" : "0",
42+
"URI" : "0",
43+
"perl" : "5.006"
44+
}
45+
}
46+
},
47+
"release_status" : "stable",
48+
"version" : "0.13"
49+
}

MYMETA.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
---
2+
abstract: 'Server-side solution for the L<jQuery File Upload|https://github.com/blueimp/jQuery-File-Upload/> plugin.'
3+
author:
4+
- 'Adam Hopkins <srchulo@cpan.org>'
5+
build_requires:
6+
Test::More: 0
7+
configure_requires:
8+
ExtUtils::MakeMaker: 0
9+
dynamic_config: 0
10+
generated_by: 'ExtUtils::MakeMaker version 6.64, CPAN::Meta::Converter version 2.120921'
11+
license: unknown
12+
meta-spec:
13+
url: http://module-build.sourceforge.net/META-spec-v1.4.html
14+
version: 1.4
15+
name: jQuery-File-Upload
16+
no_index:
17+
directory:
18+
- t
19+
- inc
20+
requires:
21+
CGI: 0
22+
Cwd: 0
23+
Digest::MD5: 0
24+
Image::Magick: 0
25+
JSON::XS: 0
26+
Net::SSH2: 0
27+
Net::SSH2::SFTP: 0
28+
URI: 0
29+
perl: 5.006
30+
version: 0.13

0 commit comments

Comments
 (0)