commit cf6a373f0c3f5e60dc72f4de44b11866d5b986af Author: Galen Charlton Date: Tue Feb 21 17:26:20 2017 -0500 udpate version stamps for 2.5.0-beta Signed-off-by: Galen Charlton 7 7 README 2 2 src/perl/lib/OpenSRF.pm 1 1 src/python/setup.py 1 1 version.m4 commit 5d552226c08385bda3ece8ac308329ba423af76b Author: Galen Charlton Date: Tue Feb 21 17:25:00 2017 -0500 update release notes for 2.5-beta Signed-off-by: Galen Charlton 13 2 doc/RELEASE_NOTES.txt commit 3d1aae3f88a547fb76754085e062de3f139246ba Author: Galen Charlton Date: Tue Feb 21 16:21:23 2017 -0500 LP#1666706: add --with-websockets-port configure option This patch adds the ability to specify the WebSockets port as a configure option, avoiding the need to manually edit a couple JavaScript files if one chooses to proxy WS traffic. This patch also cleans up the set of JavaScript files that are installed so that some test case files are not installed by default. Signed-off-by: Galen Charlton 2 0 .gitignore 7 1 README 8 0 configure.ac 1 2 src/Makefile.am 0 104 src/javascript/opensrf_ws.js 104 0 src/javascript/opensrf_ws.js.in 0 248 src/javascript/opensrf_ws_shared.js 248 0 src/javascript/opensrf_ws_shared.js.in delete mode 100644 src/javascript/opensrf_ws.js create mode 100644 src/javascript/opensrf_ws.js.in delete mode 100644 src/javascript/opensrf_ws_shared.js create mode 100644 src/javascript/opensrf_ws_shared.js.in commit 21c1412b408943cc4425dce2e9cc9222faf4fa78 Author: Mike Rylander Date: Thu Aug 4 08:57:44 2016 -0400 LP#1616501: teach mod_perl handlers how to detect client disconnects This patch provides an API so that mod_perl handlers that act as OpenSRF clients have a way to specify that if the browser disconnects, to stop trying to receive results from an XMPP request. To invoke it, mod_perl handlers can add the following: use OpenSRF; ... sub hander { ... my $r = shift; OpenSRF->OSRF_APACHE_REQUEST_OBJ($r); ... Signed-off-by: Mike Rylander Signed-off-by: Galen Charlton 17 0 src/perl/lib/OpenSRF.pm 25 1 src/perl/lib/OpenSRF/Transport/SlimJabber/XMPPReader.pm