Debug: added functions to generate perf map files
EFUNs: Improved integer types for several math functions. Improves the return types for predef::sqrt(), predef::min(), predef::max(), predef::limit(), predef::abs() and predef::sgn() when called with integer types.
Added zero to piek methods that returns 0 in the src folder.
Crypto: Fix multiple warnings about passing of zero values.
Stdio.FakeFile: Improved function types. This class needs to be compatible with both Stdio.BlockingFile and Stdio.NonblockingStream. Also fixes several broken prototypes in Stdio.NonblockingStream. Fixes several testsuite failures.
Image.GIF: Updated type for _render_block().
GC: Support remaining types in Pike.count_memory(). Users of Pike.count_memory() typically do not want to bother filtering its arguments, so perform filtering in count_memory() rather than throwing errors. Also adds support for counting memory for objects referenced via functions.
Doc [Traditional]: More sections and move around stuff.
Doc [Image.ColorTable]: Fix markup typos.
decode_value(): Allow to restrict decoding to simple types The encoded value has quite a bit of control over our process. Allow to restrict decoding to primitive types by passing coding as -1.
SSL.Context: Context commits to tickets via offers_tickets() In certain situations, i.e. after receiving an empty Session Ticket extension (client supports, but does not yet have a ticket), by including the Session Ticket extension in the server hello commits us to providing a ticket later. As SSL.Context would simply return 0 in encode_ticket() when use_cache was zero (not the default), we used to break the protocol on such occasions. Instead, we now use SSL.Context()->offers_tickets() to signal whether Session Tickets should be supported on the connection (and whether the Context commits to encoding a session as ticket later on).
Arg: Document the help/usage system.
Stdio: Some pty-handling cleanup. Add wrappers emulating missing libc functions.
Documentation [Image.TIFF]: Enabled some doc.
Sprintf: Cleanup linebreak mode. The sprintf "%/s" and "%=s" modes now break at the column width (defaulting it to the field width) and not the field width. This makes it possible to use formats like eg "%;*-=s" (instead of "%*-=s") to not get every line padded to the full column width.
TURBO2-1398: Allow disabling of wrapping of describe_backtrace output. The wrapping can add lots of spaces to the end of lines to pad them, resulting in enormous backtrace files in some circumstances.
Mysql.Result: Update the index counter when fetching rows. Call Sql.Result::increment_index() at relevant places. Fixes testsuite failure. Fixes PIKE-197 (#8197).
Tools.Standalone.precompile: Fix storage offset handling Programs using their parent may store parent information in the beginning of ->storage, thus we need to add p->inherits[0].storage_offset when trying to reach an object's storage. The compiler/runtime correctly takes care of this in THIS, but the OBJ2_ and GET_..._STORAGE macros did not take this into account.
Concurrent.Promise: Introduce delay() and optimise timeout().
Merge commit '722771973bd' into patches/lyslyskom22891031 * commit '722771973bd': (6177 commits) Verify that callablep responses are aligned with reality. ...
Thread.Farm: Added ResultWrapper. This is a wrapper for the Result class to detect when the user loses its reference to it, in order to not lose reports of any errors from the worker threads.
Merge commit '2470270f500c728d10b8895314d8d8b07016e37b' into grubba/typechecker-automap * commit '2470270f500c728d10b8895314d8d8b07016e37b': (18681 commits) Removed the old typechecker. ...
Compiler: Call end_pass_identifier() for identifier annotations.
Merge branch 'marcus/exif_sanitization'
Merge branch 'marcus/exif_sanitization' into 8.0
Image: Add convenience functions applying EXIF decoding and rotation The functions Image.Dims.exif_get() and Image.exif_decode() work like Image.Dims.get() and Image._decode(), except that if the image happens to be JPEG the EXIF aware functions Image.Dims.exif_get_JPEG and Image.JPEG.exif_decode are used.
Image.Dims: Revert EXIF flipping of dimensions in get_JPEG Like for JPEG._decode, add a specific exif_get_JPEG which does the flipping instead.
EFUNs: Support encoding to UTF-8 encoded UTF-16 in string_to_utf8(). string_to_utf8() now supports the same extensions as utf8_to_string(). Fixes PIKE-111 (#8111).
I/O [NT]: Use new low-level functions from Process.
Merge github.com:poppa/pike-libsass into patches/pike89 * github.com:poppa/pike-libsass: (64 commits) [...]
Remove some stale code and update documentatin.
Merge commit '75c9d1806f1a69ca21c27a2c2fe1b4a6ea38e77e' into patches/pike63 * commit '75c9d1806f1a69ca21c27a2c2fe1b4a6ea38e77e': (19587 commits) ...
Fix docs typo in Image.Image()->make_ascii()
Add extensible error handling in Protocols.DNS.server Some servers might want to report errors during other mechanisms than werror. By moving the error reporting to the new report_decode_error() method, it is easy to override that method and do something else. Likewise, some servers might want to not reply to malformed requests. Move that code to the new handle_decode_error() method.
Fix spelling of 'necessary' in comments and docs
There was an XML syntax error in this file.
Manual: Extended the data types chapter with void & mixed. Added some elaboration on the difference between compile-time and run-time types, as well as some about the types void & mixed and how they are used. Fixes [bug 1656 (#1656)].
Fixed documentation for Image.Color's HSV color space parser.
Added Nettle.version()
Increase default compression level to 9.
Revert "Added the Markdown module and the standalone pike_to_html.pike from 8.1." This reverts commit 2706a62c3c72b296a0c77b418f1e186c682c7ac5.
Added creation method raw to put binary data directly in an image object without adaptation.
Don't call f_random directly.
Don't clean up the stack in void functions.
Nettle: Let the IV be set through Nettle.Proxy (aka Crypto.Buffer).
Filesystem.Monitor: Added check_all().
Protocols.HTTP2: Added Frame class.
Merge branch '8.1' into per/substrings
Documentation [Standards.HPack]: Added quite a bit of AutoDoc markup.
Support for WebP
Move the compat fallback for Dims.get into the compat module. Doesn't actually work currently, as the resolver in the image module doesn't know about compat resolvers.
Added gethrdtime().
Removed trailing spaces.
Image.JPEG: Support multiple markers of the same type. decode_headers() and _decode() now return a "marker" mapping with arrays when there are multiple markers of the same type. encode() now supports the same format for the "marker" mapping in the options argument. Fixes some of [bug 6601 (#6601)].
Process.spawn_pike: Added launcher argument.
SSL.handshake: Support setting the minimum required version. The SSL 3.0 protocol can now be disabled by setting min_version in the context to SSL.Constants.PROTOCOL_TLS_1_0. Backported API from Pike 8.0. Note that the constants differ from Pike 8.0 and later, so use the provided symbolic values.
Merge remote-tracking branch 'origin/8.0' into string_alloc Conflicts: src/stralloc.c
GTK2: Update Scale docs based on source file
Stricter return types for cast. This, if nothing else, makes the documentation cleaner.
[autodoc] Minimal pointers in Image module toplevel doc
Some minor documentation tweaks. It has been a while since the classes were called Gz_deflate and Gz_inflate.
Merge remote-tracking branch 'origin/8.0' into string_alloc
Improved type checking.
FreeType: Stricter type checking for Face::create(). The font filename is a narrow string, and the face number must not be negative.
FreeType: Fixed documentation typo.
Image.Freetype: allow use of faces beyond position 0 in font files.
Changed back to using apply(current_object,function). The name of the C-function seems to change between f_cq__decode and f_cq__Image_WebP_decode randomly. There is no obvious pattern, at least
Image: Fixed a few documentation typos.
Added basic documentation to Image.WebP.
Moved all _Image_JPEG documentation to Image.JPEG.
Documented the mission-critical Image.DSI module (Dream SNES image format)
Added a few notes about what an AVS file actually is.
Moved general format description from encode() to the module
Added a few notes about what ILBM is.
Added a few notes about what PCX is.
Actually document Image.WBMP. Perhaps a few years to late.
Added a few more format notes Also removed some trailing whitespaces
Fixed XPM documentation, it is now visible Also constified a constant and removed a comment.
More documentation for Image.XCF and Image.PSD.
Optimizer: Fixed bug in foreach with ranges. The foreach range optimizer didn't handle negative start ranges, which would cause foreach to index the array out of bounds. Fixes [bug 7216 (#7216)].
release number bumped to 851 by export.pike
Backend: Improved support for OOB with kqueue(2). On MacOS X out-of-band data on sockets is signalled by the flag EV_OOBAND (aka EV_FLAG1) in the EVFILT_READ notification. Unfortunately this notification is by default only sent when there is also normal data available. The kernel source indicates that it should be possible to get notifications on just OOB by setting EV_OOBAND in the call to kevent(2) (this is what poll(2) does internally). kevent(2) however masks the flag before calling the internal function kevent_register(), so it is not possible at this time. On FreeBSD it seems out-of-band data is signalled as a normal EVFILT_READ notification. Improves the status for [bug 7063 (#7063)], but requires kernel changes to fix the problem on MacOS X fully.
Configure: Inhibit machine code with gcc 4.6.0 and later. The machine code generator is broken when compiled with gcc 4.6.0 and later, so disable it in that case.
Standards.ASN1.Decode: Added more control to simple_der_decode(). It is now simple to add a few more known types to parse to simple_der_decode(). This is typically useful when the ASN.1 definition uses IMPLICIT tags.
GTK2: start of support for WebkitGTK+
Unicode.normalize: use unsigned ints for hash value hval % HSIZE for a negative hval will result in a negative htable index. this is triggered by characters in 32 bit strings which are represented by negative 32 bit signed integers
Crypto.ECC.Curve: Fixed pkcs_ec_parameters(). The curve identifier should not be wrapped in a sequence. Fixes interoperability with OpenSSL and GNUTLS.
Merge branch '8.0' into gobject-introspection
SSL: Improved robustness in destroy(). The embedded stream may still be registered with a backend when the sslfile object loses its last reference. Make sure not to trigger the "In callback mode in a different backend." error in that case. Fixes [bug 6958 (#6958)].
Add class Standards.JSON.Validator which can be used to validate json with a schema The Standards.JSON.Validator class does not yet implement the full set of schema validations. It does not yet handle dependencies nor references. The regular expressions (for pattern properties) are limited to those that can be handled by Regexp.SimpleRegexp. To use the validator, load and decode a JSON schema and create a validator: mixed schema = Standards.JSON.decode(schema_string); Standards.JSON.Validator validator = Standards.JSON.Validator(schema); Then load and decode some JSON data and pass it to the function Standards.JSON.Validator->validate(): mixed json_data = Standards.JSON.decode(data_string); if (string error = validator->validate(json_data)) werror("Error: %s\n", error); else write("JSON matches the schema\n"); For more information of JSON schema look at - http://json-schema.org/documentation.html "The home of JSON Schema"
Build: sprshd doesn't seem to like I/O redirection.
TURBO2-80: Do not crash when decoding certain PNG files. The aggregate and n++ was not done if the PNG was (slightly) truncated
release number bumped to 784 by export.pike
Calendar.Timezone.Runtime_timezone_compiler: Improve reentrancy. The runtime timezone compiler was not thread safe, and could fail with the compiler error "Undefined identifier forever." when multiple concurrent threads compiled the same timezone. Potentially fixes [bug 6816 (#6816)] #1:1.
Image: Fixed some AutoDoc markup bugs.
Image: Improved documentation.
Pike.gc_parameters(): Added some gc callbacks. Adds callbacks that are called from the gc to simplify debugging of memory leaks and similar.
Merge remote-tracking branch 'origin/7.9' into pdf
Move the documentation into Image.JPEG.
Image.AVS: Enable support for alpha channel in encode().
Image.Image: The Image object can now be initialized from another Image object.
Fix a couple of typos in PSD docs
Added support for the WebP image format (google sponsored VP8 based, RIFF header.)
Fixed typo.
Merge branch 'pike-modules/whitefish/4.5' into 7.4
Added paranoia check for detecting some broken backports from Pike 7.8.
Add support for Photoshop files. Rev: lib/modules/_Image.pmod/Dims.pmod:1.11
Some Autodoc mk II markup fixes. Rev: src/modules/_Image_TIFF/module.pmod.in:1.3
Added decode_header() methods for TIFF and PS. Added these two to Image.ANY.decode_header(). Converted old style autodoc to new style. Rev: lib/modules/_Image_PS.pmod:1.16 Rev: src/modules/Image/encodings/any.c:1.35 Rev: src/modules/_Image_TIFF/module.pmod.in:1.1
Backported do_async_method() from Pike 7.8. Rev: lib/modules/Protocols.pmod/HTTP.pmod/module.pmod:1.36
Added support for sending Color objects to the color() function. Rev: src/modules/Image/image.c:1.236
Some minor documentation updates. Rev: src/modules/Image/encodings/bmp.c:1.47 Rev: src/modules/Image/encodings/pnm.c:1.35 Rev: src/modules/_Roxen/roxen.c:1.54 Rev: src/modules/files/termios.c:1.25
Support Calendar objects in the input too. Fixed bug when string values were returned using "<string/>". Only try to parse the result if we get a 200 OK status back, otherwise the parser will probably fail internally trying to parse the 404 page or whatever. Rev: lib/modules/Protocols.pmod/XMLRPC.pmod/module.pmod:1.25
At least this doesn't break 'make doc'. Unknown if it was the authc'. Rev: lib/modules/_Image_PS.pmod:1.14
typo Rev: lib/modules/_Image_PS.pmod:1.13
Added option "file" to decode(). decode() now reads nonblocking from the pipes. Rev: lib/modules/_Image_PS.pmod:1.13
Added option "file" to decode(). decode() now reads nonblocking from the pipes. Rev: lib/modules/_Image_PS.pmod:1.12
Added support to force use of Ghostscript and some options. Rev: lib/modules/_Image_PS.pmod:1.12
Added support to force use of Ghostscript and some options. Rev: lib/modules/_Image_PS.pmod:1.11
Added adjusted_cmyk mode. Rev: src/modules/Image/image.c:1.233
Added support for TIFF. Rev: lib/modules/_Image.pmod/Dims.pmod:1.4
Added support for TIFF. Rev: lib/modules/_Image.pmod/Dims.pmod:1.9
Fixed double free in colortable reduction code. The code is possibly still bugged though. Added greyp() to check if the colortable is greyscale. Rev: src/modules/Image/colortable.c:1.127
Added the possibility to select LZ77 strategy. Rev: src/modules/Image/encodings/png.c:1.84
Unbreaking autodocs generation Rev: refdoc/structure/traditional.xml:1.24 Rev: src/modules/Image/buggy_testsuite:1.2 Rev: src/modules/Image/image.c:1.227 Rev: src/modules/_Image_GIF/image_gif.c:1.26 Rev: src/post_modules/GL/auto.c.in:1.53 Rev: src/post_modules/GTK/examples/low_level/psnow/psnow.pike:1.5 Rev: src/post_modules/GTK/examples/pv:1.3 Rev: src/post_modules/GTK/examples/testdnd.pike:1.2 Rev: src/post_modules/GTK/refdoc/GDK.pmod/Bitmap.pike:1.4 Rev: src/post_modules/GTK/refdoc/GDK.pmod/Pixmap.pike:1.4 Rev: src/post_modules/GTK/refdoc/GTK.pmod/Button.pike:1.7 Rev: src/post_modules/GTK/refdoc/GTK.pmod/Image.pike:1.6 Rev: src/post_modules/GTK/refdoc/GTK.pmod/Pixmap.pike:1.6
Redundant. Rev: src/post_modules/COM/module.pmod.in.in:1.2(DEAD)
Added timed_async_fetch(). Thanks to Tobias Liin <liin@roxen.com>. Rev: lib/modules/Protocols.pmod/HTTP.pmod/Query.pike:1.50
Documentation fix for skew methods. No longer allocate unused space for terminating char. Rev: src/modules/Image/matrix.c:1.50
Backported fixes in the handling of the close status from 7.6: revision 1.30 date: 2003/10/24 18:26:55; author: mast; state: Exp; lines: +45 -13 Fixed bugs in close handling - the receive queue will now be properly emptied from application data before a close is signalled. revision 1.36 date: 2005/02/08 20:01:42; author: mast; state: Exp; lines: +3 -5 Don't automatically send a close reply when a close is received (introduced in rev 1.30) - the app might need to send it separately to correctly ignore errors when that should be done. Separate the close status in each direction better. Rev: lib/modules/SSL.pmod/connection.pike:1.23
Made API change compatible. Rev: lib/modules/_Image.pmod/Dims.pmod:1.7
Conversion functions to/from YUV added. Rev: src/modules/Image/image.c:1.216
Some more fixes. Rev: lib/modules/_Image.pmod/Dims.pmod:1.5
Optimized a bit. Now also returns the type of image. Rev: lib/modules/_Image.pmod/Dims.pmod:1.4
Deprecate select_colors, map_closest, map_fast and map_fs for real. Fixed some error messages. Rev: src/modules/Image/image.c:1.212
Fixed a few bugs Rev: src/modules/Image/search.c:1.28
Documentation fix Rev: src/modules/Image/dct.c:1.26
Fixed a few memory leaks. Rev: src/modules/Image/image.c:1.211
Fixed typo in AutoDoc mk II markup. Rev: src/modules/Image/encodings/png.c:1.63
(string)Image.Layer Rev: src/modules/Image/layers.c:1.97
Mirardoc to autodoc Rev: src/modules/_Image_TIFF/image_tiff.c:1.39
Narrower Rev: lib/modules/_Image_DWG.pmod:1.4
My last commit made the decoding failed when there is some data between value and the inner container. Rev: lib/modules/Protocols.pmod/XMLRPC.pmod/module.pmod:1.22
Bugfix: Only the first 2/3 of a grayscale PNG image was decoded before. Rev: src/modules/Image/encodings/png.c:1.58
We must create all the colorcycle images at this point, since several palette colors might have the same color value and thus doesn't survive in the pixel value world. Rev: src/modules/Image/encodings/neo.c:1.9
Documentation. Rev: src/modules/Image/encodings/neo.c:1.8
Added missing doc prototype for setpixel. Rev: src/modules/Image/image.c:1.208
Fixed references. Rev: lib/modules/Graphics.pmod/Graph.pmod/module.pmod:1.7 Rev: lib/modules/Parser.pmod/C.pmod:1.40 Rev: lib/modules/Parser.pmod/module.pmod:1.20 Rev: lib/modules/SSL.pmod/sslfile.pike:1.64 Rev: src/modules/Image/encodings/png.c:1.55 Rev: src/post_modules/Bz2/libbzip2mod.cmod:1.13
Fixed autodoc prototype. Rev: src/modules/_Image_GIF/image_gif.c:1.17
No more appendices Rev: lib/modules/Tools.pmod/AutoDoc.pmod/MirarDocParser.pike:1.25 Rev: lib/modules/Tools.pmod/AutoDoc.pmod/ProcessXML.pmod:1.58 Rev: lib/modules/Tools.pmod/Standalone.pmod/assemble_autodoc.pike:1.28 Rev: refdoc/chapters/appendix_bnf.xml:1.5(DEAD) Rev: refdoc/presentation/make_html.pike:1.64 Rev: refdoc/presentation/tree-split-autodoc.pike:1.54 Rev: refdoc/structure/onepage.xml:1.4 Rev: refdoc/structure/traditional.xml:1.21 Rev: src/modules/Image/colors.c:1.68 Rev: src/modules/Image/layers.c:1.91
Illustration. Rev: src/modules/Image/polyfill.c:1.44
Autodoc fixes Rev: src/modules/Image/encodings/_xpm.c:1.30
Fixed autodoc and some details. Rev: src/modules/Image/encodings/_xpm.c:1.28
changing my mail address Rev: COMMITTERS:1.7 Rev: lib/modules/Calendar.pmod/FAQ:1.8 Rev: lib/modules/Calendar.pmod/Timezone.pmod:1.31 Rev: src/modules/Image/encodings/bmp.c:1.41 Rev: src/modules/Image/encodings/xwd.c:1.25
Autodoc Rev: src/modules/Image/encodings/neo.c:1.2
Autodocs Fixes Rev: lib/modules/Protocols.pmod/DNS.pmod:1.71 Rev: lib/modules/Web.pmod/Crawler.pmod:1.15
Fixed mirardoc type Rev: src/modules/Image/layers.c:1.88
Forwardported changes in 7.2 \"Use the global functions in Protocols.DNS\". This means an incompatible change where the possibility to set the array async_dns to an array of Protocols.DNS.async_client is removed. (The change was incompatible in the same way in 7.2 when it was made there.) Rev: lib/modules/Protocols.pmod/HTTP.pmod/Query.pike:1.48
More documentation Rev: lib/modules/_Image_PSD.pmod:1.20
A few more examples. Rev: src/modules/Image/image.c:1.203
Fixed bug where masks smaller than the layer itself was padded incorrectly. Implemented a way to crop decoded layers to the global image bounds when calling decode_layers() by setting the "crop_to_bounds" flag in the options mapping. Rev: lib/modules/_Image_PSD.pmod:1.19
Added doc for grey_blur and blur. Rev: src/modules/Image/image.c:1.202
Fixed typo. Rev: lib/modules/_Image.pmod/module.pmod:1.36
Fixed an autodoc reference. Rev: lib/modules/_Image.pmod/module.pmod:1.35
Fixed typos wierd -> weird. Rev: lib/modules/Calendar.pmod/Julian.pmod:1.8 Rev: lib/modules/Calendar.pmod/TimeRanges.pmod:1.21 Rev: lib/modules/Stdio.pmod/Terminfo.pmod:1.15 Rev: lib/modules/Tools.pmod/AutoDoc.pmod/MirarDocParser.pike:1.20 Rev: lib/modules/_Image.pmod/module.pmod:1.34 Rev: src/modules/Image/colortable.c:1.117 Rev: src/modules/Image/encodings/bmp.c:1.40 Rev: src/modules/Image/encodings/png.c:1.54 Rev: src/modules/Parser/html.c:1.162 Rev: src/modules/_Image_GIF/image_gif.c:1.15 Rev: src/modules/_Image_TTF/image_ttf.c:1.49 Rev: src/modules/files/acconfig.h:1.19 Rev: src/modules/files/configure.in:1.82 Rev: src/modules/files/file.c:1.258 Rev: src/modules/files/file_functions.h:1.25 Rev: src/modules/system/memory.c:1.20
Added preprocessor chapter Rev: refdoc/structure/traditional.xml:1.19
Fix Rev: lib/modules/SSL.pmod/cipher.pike:1.23
Stricter types Rev: lib/modules/SSL.pmod/session.pike:1.24
Strict types Rev: lib/modules/SSL.pmod/context.pike:1.19
More types. Rev: lib/modules/SSL.pmod/Cipher.pmod:1.1 Rev: lib/modules/SSL.pmod/Constants.pmod:1.1 Rev: lib/modules/SSL.pmod/alert.pike:1.9 Rev: lib/modules/SSL.pmod/client.pike:1.5 Rev: lib/modules/SSL.pmod/connection.pike:1.26 Rev: lib/modules/SSL.pmod/constants.pike:1.11(DEAD) Rev: lib/modules/SSL.pmod/constants.pmod:1.1 Rev: lib/modules/SSL.pmod/context.pike:1.18 Rev: lib/modules/SSL.pmod/handshake.pike:1.32 Rev: lib/modules/SSL.pmod/packet.pike:1.14 Rev: lib/modules/SSL.pmod/session.pike:1.23 Rev: lib/modules/SSL.pmod/sslfile.pike:1.53 Rev: lib/modules/SSL.pmod/state.pike:1.17
Grouped the T_* and C_* constants into the enums ResourceClass and EntryType. Rev: lib/modules/Protocols.pmod/DNS.pmod:1.70
finally the right code version Rev: lib/modules/Protocols.pmod/SNMP.pmod/agent.pike:1.4
ok, the right version now. Rev: lib/modules/Protocols.pmod/SNMP.pmod/agent.pike:1.4
hmm. forgot these changes at home before the split. they fix some unintended behaviour Rev: lib/modules/Protocols.pmod/SNMP.pmod/agent.pike:1.3
hmmm. code from home before the split. fixes some nonintended behavior Rev: lib/modules/Protocols.pmod/SNMP.pmod/agent.pike:1.3
Removed symbol renaming kludge. Rev: lib/modules/SSL.pmod/connection.pike:1.23
Updated Rev: src/export_list:1.4
here we go... more autodocs Rev: lib/modules/ADT.pmod/struct.pike:1.10 Rev: lib/modules/Protocols.pmod/SNMP.pmod/module.pmod:1.2 Rev: lib/modules/Standards.pmod/ASN1.pmod/Decode.pmod:1.13 Rev: lib/modules/Standards.pmod/ASN1.pmod/Types.pmod:1.20
autodoc oopsie Rev: lib/modules/Protocols.pmod/HTTP.pmod/module.pmod:1.32
Autodocs. Rev: lib/modules/Protocols.pmod/HTTP.pmod/Server.pmod/module.pmod:1.10
Added autodocs for http_encode_cookie and a missing character that was missing to the encode string. Rev: lib/modules/Protocols.pmod/HTTP.pmod/module.pmod:1.30