Skip to content

Commit f80cda9

Browse files
committed
fixed docs <gt> for author name
1 parent 6e6e5a7 commit f80cda9

File tree

11 files changed

+97
-2643
lines changed

11 files changed

+97
-2643
lines changed

Changes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,3 +78,7 @@ Revision history for jQuery-File-Upload
7878
0.19
7979

8080
removed duplicate entry for thumbnail_prex in docs
81+
82+
0.20
83+
84+
Fixed docs for <gt> by author name

Changes~

Lines changed: 80 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
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
61+
62+
0.15
63+
64+
fixed bug
65+
66+
0.16
67+
68+
added to documentation for the data subroutine about using catalyst context object to store data
69+
70+
0.17
71+
72+
moved _clear call in handle_request to end of subroutine
73+
74+
0.18
75+
76+
added 'close OUTFILE;' in _save_local.
77+
78+
0.19
79+
80+
removed duplicate entry for thumbnail_prex in docs

MYMETA.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,5 +45,5 @@
4545
}
4646
},
4747
"release_status" : "stable",
48-
"version" : "0.19"
48+
"version" : "0.20"
4949
}

MYMETA.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ requires:
2727
Net::SSH2::SFTP: 0
2828
URI: 0
2929
perl: 5.006
30-
version: 0.19
30+
version: 0.20

Makefile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ DIRFILESEP = /
6161
DFSEP = $(DIRFILESEP)
6262
NAME = jQuery::File::Upload
6363
NAME_SYM = jQuery_File_Upload
64-
VERSION = 0.19
64+
VERSION = 0.20
6565
VERSION_MACRO = VERSION
66-
VERSION_SYM = 0_19
66+
VERSION_SYM = 0_20
6767
DEFINE_VERSION = -D$(VERSION_MACRO)=\"$(VERSION)\"
68-
XS_VERSION = 0.19
68+
XS_VERSION = 0.20
6969
XS_VERSION_MACRO = XS_VERSION
7070
XS_DEFINE_VERSION = -D$(XS_VERSION_MACRO)=\"$(XS_VERSION)\"
7171
INST_ARCHLIB = blib/arch
@@ -262,7 +262,7 @@ RCS_LABEL = rcs -Nv$(VERSION_SYM): -q
262262
DIST_CP = best
263263
DIST_DEFAULT = tardist
264264
DISTNAME = jQuery-File-Upload
265-
DISTVNAME = jQuery-File-Upload-0.19
265+
DISTVNAME = jQuery-File-Upload-0.20
266266

267267

268268
# --- MakeMaker macro section:
@@ -511,7 +511,7 @@ metafile : create_distdir
511511
$(NOECHO) $(ECHO) ' Net::SSH2::SFTP: 0' >> META_new.yml
512512
$(NOECHO) $(ECHO) ' URI: 0' >> META_new.yml
513513
$(NOECHO) $(ECHO) ' perl: 5.006' >> META_new.yml
514-
$(NOECHO) $(ECHO) 'version: 0.19' >> META_new.yml
514+
$(NOECHO) $(ECHO) 'version: 0.20' >> META_new.yml
515515
-$(NOECHO) $(MV) META_new.yml $(DISTVNAME)/META.yml
516516
$(NOECHO) $(ECHO) Generating META.json
517517
$(NOECHO) $(ECHO) '{' > META_new.json
@@ -561,7 +561,7 @@ metafile : create_distdir
561561
$(NOECHO) $(ECHO) ' }' >> META_new.json
562562
$(NOECHO) $(ECHO) ' },' >> META_new.json
563563
$(NOECHO) $(ECHO) ' "release_status" : "stable",' >> META_new.json
564-
$(NOECHO) $(ECHO) ' "version" : "0.19"' >> META_new.json
564+
$(NOECHO) $(ECHO) ' "version" : "0.20"' >> META_new.json
565565
$(NOECHO) $(ECHO) '}' >> META_new.json
566566
-$(NOECHO) $(MV) META_new.json $(DISTVNAME)/META.json
567567

blib/lib/jQuery/File/Upload.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use URI;
1616
#use LWP::UserAgent;
1717
#use LWP::Protocol::https;
1818

19-
our $VERSION = '0.19';
19+
our $VERSION = '0.20';
2020

2121
my %errors = (
2222
'_validate_max_file_size' => 'File is too big',
@@ -2610,7 +2610,7 @@ L<jQuery File Upload|https://github.com/blueimp/jQuery-File-Upload/>
26102610
26112611
=head1 AUTHOR
26122612
2613-
Adam Hopkins, E<lt>srchulo@cpan.org<gt>
2613+
Adam Hopkins, E<lt>srchulo@cpan.org>
26142614
26152615
=head1 Bugs
26162616

blib/man3/jQuery::File::Upload.3pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1247,7 +1247,7 @@ Digest::MD5
12471247
jQuery File Upload <https://github.com/blueimp/jQuery-File-Upload/>
12481248
.SH "AUTHOR"
12491249
.IX Header "AUTHOR"
1250-
Adam Hopkins, <srchulo@cpan.org<gt>
1250+
Adam Hopkins, <srchulo@cpan.org>
12511251
.SH "Bugs"
12521252
.IX Header "Bugs"
12531253
I haven't tested this too thoroughly beyond my needs, so it is possible

jQuery-File-Upload-0.19.tar.gz

-20 KB
Binary file not shown.

jQuery-File-Upload-0.20.tar.gz

20 KB
Binary file not shown.

lib/jQuery/File/Upload.pm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use URI;
1616
#use LWP::UserAgent;
1717
#use LWP::Protocol::https;
1818

19-
our $VERSION = '0.19';
19+
our $VERSION = '0.20';
2020

2121
my %errors = (
2222
'_validate_max_file_size' => 'File is too big',
@@ -2610,7 +2610,7 @@ L<jQuery File Upload|https://github.com/blueimp/jQuery-File-Upload/>
26102610
26112611
=head1 AUTHOR
26122612
2613-
Adam Hopkins, E<lt>srchulo@cpan.org<gt>
2613+
Adam Hopkins, E<lt>srchulo@cpan.org>
26142614
26152615
=head1 Bugs
26162616

0 commit comments

Comments
 (0)