<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/qpid-python.git/cpp/docs, branch client_restructure</title>
<subtitle>git.apache.org: qpid.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/qpid-python.git/'/>
<entry>
<title>Merged revisions 499049 via svnmerge from </title>
<updated>2007-03-13T21:55:02+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2007-03-13T21:55:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=063fb8c69653d24c958dcb961312b921a308b9ad'/>
<id>063fb8c69653d24c958dcb961312b921a308b9ad</id>
<content type='text'>
https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid

........
  r499049 | gsim | 2007-01-23 10:12:27 -0500 (Tue, 23 Jan 2007) | 34 lines
  
  Patch from Jim Meyering (jim@meyering.net) submitted on dev list.
  
  Instrument all tests so that they are run via valgrind:
  check for both errors and leaks.
  
  * configure.ac: Add new configure options: --enable-valgrind
  and --disable-valgrind.  For now, the latter is the default.
  * README-dev: Document (and recommend) --enable-valgrind.
  * tests/.vg-supp: Add many more, from Gordon Sim for FC5.
  
  * configure.ac: Check for valgrind.
  * tests/Makefile.am (TESTS_ENVIRONMENT): Export VALGRIND.
  * tests/setup: New file.
  * tests/run-unit-tests: Use new "setup" file.
  Invoke DllPlugInTester via $vg (aka valgrind).
  Refer to the source directory using $pwd, since we're now running
  from a temporary subdirectory.
  * tests/run-python-tests: Remove traps. That is now done by "setup".
  [VERBOSE]: Print qpidd --version.
  Invoke qpidd via $vg and its absolute name.
  Add a kludgey "sleep 3", because it can take a while for libtool
  to start valgrind to start qpidd, in the background.
  Ideally, the python script would simply sleep-0.3-and-retry for
  a couple seconds, upon failure of the initial connection attempt.
  * tests/.vg-supp: New file, exempting known leaks on Debian/unstable.
  Some of these leaks appear to be legitimate.
  * tests/Makefile.am (EXTRA_DIST): Add .vg-supp and setup.
  
  * qpid-autotools-install (usage): Add a missing backslash.
  
  Fix "make distcheck" failure.
  * docs/api/Makefile.am (EXTRA_DIST): Add user.doxygen
........


git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@517892 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid

........
  r499049 | gsim | 2007-01-23 10:12:27 -0500 (Tue, 23 Jan 2007) | 34 lines
  
  Patch from Jim Meyering (jim@meyering.net) submitted on dev list.
  
  Instrument all tests so that they are run via valgrind:
  check for both errors and leaks.
  
  * configure.ac: Add new configure options: --enable-valgrind
  and --disable-valgrind.  For now, the latter is the default.
  * README-dev: Document (and recommend) --enable-valgrind.
  * tests/.vg-supp: Add many more, from Gordon Sim for FC5.
  
  * configure.ac: Check for valgrind.
  * tests/Makefile.am (TESTS_ENVIRONMENT): Export VALGRIND.
  * tests/setup: New file.
  * tests/run-unit-tests: Use new "setup" file.
  Invoke DllPlugInTester via $vg (aka valgrind).
  Refer to the source directory using $pwd, since we're now running
  from a temporary subdirectory.
  * tests/run-python-tests: Remove traps. That is now done by "setup".
  [VERBOSE]: Print qpidd --version.
  Invoke qpidd via $vg and its absolute name.
  Add a kludgey "sleep 3", because it can take a while for libtool
  to start valgrind to start qpidd, in the background.
  Ideally, the python script would simply sleep-0.3-and-retry for
  a couple seconds, upon failure of the initial connection attempt.
  * tests/.vg-supp: New file, exempting known leaks on Debian/unstable.
  Some of these leaks appear to be legitimate.
  * tests/Makefile.am (EXTRA_DIST): Add .vg-supp and setup.
  
  * qpid-autotools-install (usage): Add a missing backslash.
  
  Fix "make distcheck" failure.
  * docs/api/Makefile.am (EXTRA_DIST): Add user.doxygen
........


git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@517892 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>* cpp/lib/client/ClientMessage.h/.cpp: Added Message constructor taking data.</title>
<updated>2007-02-17T03:46:44+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2007-02-17T03:46:44+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=f972bfa6c7c9a1b3d5f5fe4753dce7358b6b0215'/>
<id>f972bfa6c7c9a1b3d5f5fe4753dce7358b6b0215</id>
<content type='text'>
* cpp/lib/client/IncomingMessage.cpp: Simplified message aggregation.
* cpp/lib/common/framing/AMQ*Body.h: remove unnecessary virtual inheritance.
* cpp/lib/common/framing/AMQMethodBody.h: add bool isRequest, isResponse
* cpp/lib/common/sys/Mutex.h (class ScopedUnlock): Added ScopedUnlock
* cpp/lib/common/sys/ThreadSafeQueue.h: Thread-safe queue template.
* cpp/tests/BrokerChannelTest.cpp: Renamed from ChannelTest.
* cpp/tests/ClientChannelTest.cpp: Test client API.
* cpp/tests/RequestResponseTest.cpp: Removed empty test.
* cpp/lib/client/Connection.h,.cpp:
 - non-static channelIdCounter
 - No close() in dtor.


git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@508705 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* cpp/lib/client/IncomingMessage.cpp: Simplified message aggregation.
* cpp/lib/common/framing/AMQ*Body.h: remove unnecessary virtual inheritance.
* cpp/lib/common/framing/AMQMethodBody.h: add bool isRequest, isResponse
* cpp/lib/common/sys/Mutex.h (class ScopedUnlock): Added ScopedUnlock
* cpp/lib/common/sys/ThreadSafeQueue.h: Thread-safe queue template.
* cpp/tests/BrokerChannelTest.cpp: Renamed from ChannelTest.
* cpp/tests/ClientChannelTest.cpp: Test client API.
* cpp/tests/RequestResponseTest.cpp: Removed empty test.
* cpp/lib/client/Connection.h,.cpp:
 - non-static channelIdCounter
 - No close() in dtor.


git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@508705 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>* Refactor: Moved major broker components (exchanges, queues etc.) from</title>
<updated>2007-01-15T18:28:29+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2007-01-15T18:28:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=87d97b5bcc5b7fe44cfc71ce28ccfeae1d9b2274'/>
<id>87d97b5bcc5b7fe44cfc71ce28ccfeae1d9b2274</id>
<content type='text'>
  class SessionHandlerImplFactory to more logical class Broker.


git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@496425 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
  class SessionHandlerImplFactory to more logical class Broker.


git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@496425 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>Include *.cpp in developer doxygen to get calls/called-by links.</title>
<updated>2007-01-11T19:32:46+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2007-01-11T19:32:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=cd561aa4c9a800ba61a47d0cafbbc120792bfda6'/>
<id>cd561aa4c9a800ba61a47d0cafbbc120792bfda6</id>
<content type='text'>
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@495345 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@495345 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title> * Build order - src before tests.</title>
<updated>2007-01-11T15:25:54+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2007-01-11T15:25:54+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=61c45840822bd93b5df9bf8f0be7c9f9549f6ec3'/>
<id>61c45840822bd93b5df9bf8f0be7c9f9549f6ec3</id>
<content type='text'>
 * docs/api/developer.doxygen: Generate for all classes, private members etc.


git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@495254 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * docs/api/developer.doxygen: Generate for all classes, private members etc.


git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/qpid.0-9@495254 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>- rpm: make rpm now builds RPMs under rpm/ directory.</title>
<updated>2006-12-23T17:20:37+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2006-12-23T17:20:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=6536407690660e10529c826ab3aa21baaa121ea1'/>
<id>6536407690660e10529c826ab3aa21baaa121ea1</id>
<content type='text'>
- src/qpidd.cpp: added --daemon option to run as daemon.
- etc/qpidd: fixed bugs in init.rc script.
- qpidc.spec: fixed rpmlint warnings, added apache URL


git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@489905 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- src/qpidd.cpp: added --daemon option to run as daemon.
- etc/qpidd: fixed bugs in init.rc script.
- qpidc.spec: fixed rpmlint warnings, added apache URL


git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@489905 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>make rpm in cpp directory builds qpidc RPMs in default locations.</title>
<updated>2006-12-20T14:40:09+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2006-12-20T14:40:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=7ec92c0a43be9e5934b35565a7f46eb83e36f6d1'/>
<id>7ec92c0a43be9e5934b35565a7f46eb83e36f6d1</id>
<content type='text'>
Note: you need to chown or chmod the directories under
/usr/src/redhat/RPMS/i386 to be writable for this to work, there is
probably a better solution. Building RPMs as root is a Bad Idea.


git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@489103 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Note: you need to chown or chmod the directories under
/usr/src/redhat/RPMS/i386 to be writable for this to work, there is
probably a better solution. Building RPMs as root is a Bad Idea.


git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@489103 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>Sundry fixes to spec and build system for RPM packaging.</title>
<updated>2006-12-13T00:26:30+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2006-12-13T00:26:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=f6f325b0101da7d1f42a0a3766537bb7745d8330'/>
<id>f6f325b0101da7d1f42a0a3766537bb7745d8330</id>
<content type='text'>
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@486428 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@486428 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>2006-12-11  Alan Conway  &lt;aconway@redhat.com&gt;</title>
<updated>2006-12-12T16:05:01+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2006-12-12T16:05:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=7d0a7581134379324b36d78f8c49dcd793d1ab1e'/>
<id>7d0a7581134379324b36d78f8c49dcd793d1ab1e</id>
<content type='text'>
	* SPECS/qpid-cpp.spec: Draft RPM spec file for C++. Based on
	  initial draft provided by David Lutterkort &lt;dlutter@redhat.com&gt;
	* cpp Makefiles: Renamed libraries with qpid prefix: libqpidclient etc.
	* cpp/man/: moved to docs/man/
	* docs/api/usr.doxygen: more restricted, user-oriented doc settings.


git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@486207 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	* SPECS/qpid-cpp.spec: Draft RPM spec file for C++. Based on
	  initial draft provided by David Lutterkort &lt;dlutter@redhat.com&gt;
	* cpp Makefiles: Renamed libraries with qpid prefix: libqpidclient etc.
	* cpp/man/: moved to docs/man/
	* docs/api/usr.doxygen: more restricted, user-oriented doc settings.


git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@486207 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>Added "make html" target to build doxygen documentation in docs/api/html.</title>
<updated>2006-12-07T18:40:06+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2006-12-07T18:40:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/python-packages/qpid-python.git/commit/?id=8acccbfa9493064e2bb6d38b830c1814ca0dc463'/>
<id>8acccbfa9493064e2bb6d38b830c1814ca0dc463</id>
<content type='text'>
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@483600 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@483600 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
</feed>
