"Fossies" - the Fresh Open Source Software Archive 
As a special service "Fossies" has tried to format the requested text file into HTML format (style:
standard) with prefixed line numbers.
Alternatively you can here
view or
download the uninterpreted source code file.
See also the last
Fossies "Diffs" side-by-side code changes report for "CHANGES.txt":
0.15-src_vs_0.16-src.
1 Version 0.16
2
3 - Bugfix for losing parameter with non content-type text/plain
4 when deleting paramters. Contributed by Petar Bogdanovic
5
6
7 Version 0.15
8
9 - Incoperates bug fix patch contributed by JamesWright
10 http://sourceforge.net/p/parp/bugs/3/
11
12 Version 0.14
13
14 - Fixes potential endless loop when processing huge parameters.
15
16 Version 0.13
17
18 - PARP_BodyData supports "*/*" to process any content type.
19
20 Version 0.12
21
22 - Allows other modules to delete parameters by adding the parameter
23 name to the PARP_DELETE_PARAM r->notes table.
24
25 Version 0.11
26
27 - the array and table entries returned by parp hooks contains the body
28 as well as the query parameters
29 - the entries returnd by the parp modify_hook contains a field "delete",
30 when it's set to "1" the whole parameter incl. name will be removed
31 - can deal with RFC 1341 Multipart preamble and epilogue
32 - handels content-type text/plain correctly for multipart formdata
33 - new hook: modify_hook (replaces modify_body_hook)
34 - new type: parp_entry_t (replaces parp_body_entry_t)
35 - DEPRECATED: parp_body_entry_t
36 - DEPRECATED: modify_body_hook
37
38 Version 0.10
39
40 - Error description if reading from client has failed, e.g. connection
41 has been closed or a filter of another Apache module has canceled
42 the request.
43
44 Version 0.9
45
46 - modify_body_hook provides an array of parp_body_entry_t enties.
47 Each entry contains the parameter key and value as well as a
48 "new_value" field which allows parameter manipulation (you may
49 change the parameter's value by writing a new value string
50 to the "new_value" field).
51 The hook is executed at the header parser, similar to the hp_hook.
52
53 Version 0.8
54
55 - Stores the content-length of the processed data within the
56 PARPContentLength environment variable (may be used to
57 adjust the content-length header when using mod_deflate).
58
59 Version 0.7
60
61 - Ignore input filter date on error, else keepalive connection could hang
62 for ever (actually until timeout).
63
64 Version 0.6
65
66 - Export body data reader.
67
68 Version 0.5
69
70 - Security fix in the get payload function, Apache
71 will reuse data buffer of buckets on the next burst
72 of bytes.
73
74 Version 0.4
75
76 - Ignore request method. Try to read request body
77 if there is any.
78
79 Version 0.3
80
81 - Correct content-length header if mod_deflate has
82 unzipped the request body when reading the data
83 from the client.
84
85 Version 0.1
86
87 - Urlencrypted and multipart form data parser
88
89 - Supports recursive multipart boundaries
90 (hard limited to a 2 recursions)