Browse Source

New version 0.9.0

Warning: INCOMPATIBLE CHANGE
The module now outputs JSONP by default. To restore the old behavior
one need to add "upload_progress_java_output" to the progress
probe location.
tags/v0.9.0
Brice Figureau 14 years ago
parent
commit
a788deaef0
2 changed files with 22 additions and 2 deletions
  1. 10
    0
      CHANGES
  2. 12
    2
      README

+ 10
- 0
CHANGES View File

1
+nginx_upload_progress release 0.9.0                              06 Apr 2012
2
+
3
+ * INCOMPATIBLE CHANGE: JSONP is now the default output for nginx upload
4
+ progress module. To restore the old behavior, add:
5
+    upload_progress_java_output
6
+ to your nginx configuration (thanks to drewbuschhorn for this work).
7
+ 
8
+ * Add instructions in the README on how to use this module with JQuery
9
+ AJAX.
10
+
1
 nginx_upload_progress release 0.8.4                              24 Feb 2012
11
 nginx_upload_progress release 0.8.4                              24 Feb 2012
2
 
12
 
3
  * Fix compatibility with nginx 1.1.15
13
  * Fix compatibility with nginx 1.1.15

+ 12
- 2
README View File

15
 on disk, before transmitting it to the upstream server. Each individual POST upload request
15
 on disk, before transmitting it to the upstream server. Each individual POST upload request
16
 should contain a progress unique identifier.
16
 should contain a progress unique identifier.
17
 
17
 
18
-This module is Copyright (c) 2007-2011 Brice Figureau, and is licensed under the BSD license (see LICENSE).
18
+This module is Copyright (c) 2007-2012 Brice Figureau, and is licensed under the BSD license (see LICENSE).
19
  * rbtree and shm_zone code is based on Igor Sysoev limit_zone Nginx module.
19
  * rbtree and shm_zone code is based on Igor Sysoev limit_zone Nginx module.
20
  * expire header code is based on Igor Sysoev header_filter Nginx module.
20
  * expire header code is based on Igor Sysoev header_filter Nginx module.
21
 
21
 
26
 WARNING: 
26
 WARNING: 
27
  * when compiled with --with-debug, this module will produce high number of log messages.
27
  * when compiled with --with-debug, this module will produce high number of log messages.
28
 
28
 
29
+INCOMPATIBLE CHANGES
30
+====================
31
+
32
+v0.9.0:
33
+
34
+JSONP is now the default output of the progress probes. If you rely on this module serving
35
+the deprecated java output use:
36
+     upload_progress_java_output
37
+in the progress probe location.
38
+
29
 
39
 
30
 Installation
40
 Installation
31
 ============
41
 ============
150
     This directive sets everything to output as pure json.
160
     This directive sets everything to output as pure json.
151
 
161
 
152
 upload_progress_jsonp_output
162
 upload_progress_jsonp_output
153
-+++++++++++++++++++++++++++
163
+++++++++++++++++++++++++++++
154
     :Syntax: upload_progress_jsonp_output
164
     :Syntax: upload_progress_jsonp_output
155
     :Default: N/A
165
     :Default: N/A
156
     :Context: location
166
     :Context: location

Loading…
Cancel
Save