Update of /cvsroot/jungerl/jungerl/lib/ibrowse
In directory fdv4jf1.ch3.sourceforge.com:/tmp/cvs-serv26761
Modified Files:
README vsn.mk
Added Files:
Makefile
Log Message:
ibrowse-1.5.0 - Use binaries internally. Lots of other changes. See README
Index: README
===================================================================
RCS file: /cvsroot/jungerl/jungerl/lib/ibrowse/README,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- README 21 May 2008 15:28:11 -0000 1.16
+++ README 1 Jul 2009 22:43:19 -0000 1.17
@@ -1,5 +1,3 @@
-$Id$
-
ibrowse is a HTTP client. The following are a list of features.
- RFC2616 compliant (AFAIK)
- supports GET, POST, OPTIONS, HEAD, PUT, DELETE, TRACE,
@@ -18,10 +16,37 @@
ibrowse is available under two different licenses. LGPL and the BSD license.
-Comments to : Chandrashekhar.Mullaparthi@...
+Comments to : Chandrashekhar.Mullaparthi@...
+
+Version : 1.5.0
+
+Latest version : git://github.com/cmullaparthi/ibrowse.git
CONTRIBUTIONS & CHANGE HISTORY
==============================
+29-06-2009 - * Fixed following issues reported by Oscar Hellström
+ - Use {active, once} instead of {active, true}
+ - Fix 'dodgy' timeout handling
+ - Use binaries internally instead of lists to reduce memory
+ consumption on 64 bit platforms. The default response format
+ is still 'list' to maintain backwards compatibility. Use the
+ option {response_format, binary} to get responses as binaries.
+ * Fixed chunking bug (reported by Adam Kocoloski)
+ * Added new option {inactivity_timeout, Milliseconds} to timeout
+ requests if no data is received on the link for the specified
+ interval. Useful when responses are large and links are flaky.
+ * Added ibrowse:all_trace_off/0 to turn off all tracing
+ * Change to the way responses to asynchronous requests are
+ returned. The following messages have been removed.
+ * {ibrowse_async_response, Req_id, {chunk_start, Chunk_size}}
+ * {ibrowse_async_response, Req_id, chunk_end}
+ * Fixed Makefiles as part of Debian packaging
+ (thanks to Thomas Lindgren)
+ * Moved repository from Sourceforge to Github
+
+11-06-2009 - * Added option to control size of streamed chunks. Also added
+ option for the client to receive responses in binary format.
+
21-05-2008 - * Fixed bug in reading some options from the ibrowse.conf file.
Reported by Erik Reitsma on the erlyaws mailing list
* Fixed bug when cleaning up closing connections
--- NEW FILE: Makefile ---
include vsn.mk
all:
(cd src ; make)
clean:
(cd src ; make clean)
install: all
mkdir -p $(DESTDIR)/lib/ibrowse-$(IBROWSE_VSN)/
cp -r ebin $(DESTDIR)/lib/ibrowse-$(IBROWSE_VSN)/
Index: vsn.mk
===================================================================
RCS file: /cvsroot/jungerl/jungerl/lib/ibrowse/vsn.mk,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- vsn.mk 21 May 2008 15:28:11 -0000 1.14
+++ vsn.mk 1 Jul 2009 22:43:19 -0000 1.15
@@ -1,2 +1,2 @@
-IBROWSE_VSN = 1.4.1
+IBROWSE_VSN = 1.5.0
|