<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/python-packages/qpid-python.git/cpp/src/tests, branch QPID-3799-acl</title>
<subtitle>git.apache.org: qpid.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/qpid-python.git/'/>
<entry>
<title>QPID-3799-acl acl fixup - whitespace</title>
<updated>2012-03-01T15:25:33+00:00</updated>
<author>
<name>Charles E. Rolke</name>
<email>chug@apache.org</email>
</author>
<published>2012-03-01T15:25:33+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/qpid-python.git/commit/?id=a2cfd7de28cc3deae1481c7018c162fed2c3eef6'/>
<id>a2cfd7de28cc3deae1481c7018c162fed2c3eef6</id>
<content type='text'>
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/QPID-3799-acl@1295616 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/qpid/branches/QPID-3799-acl@1295616 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge from trunk into branch</title>
<updated>2012-02-27T19:31:46+00:00</updated>
<author>
<name>Charles E. Rolke</name>
<email>chug@apache.org</email>
</author>
<published>2012-02-27T19:31:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/qpid-python.git/commit/?id=5e47b4c0bd930bd3d672290a04f7b38fb98283be'/>
<id>5e47b4c0bd930bd3d672290a04f7b38fb98283be</id>
<content type='text'>
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/QPID-3799-acl@1294294 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/qpid/branches/QPID-3799-acl@1294294 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge from trunk into branch</title>
<updated>2012-02-27T17:40:42+00:00</updated>
<author>
<name>Charles E. Rolke</name>
<email>chug@apache.org</email>
</author>
<published>2012-02-27T17:40:42+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/qpid-python.git/commit/?id=c3a0c2ec78970005da38d524f38939cc7f2fb3a7'/>
<id>c3a0c2ec78970005da38d524f38939cc7f2fb3a7</id>
<content type='text'>
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/QPID-3799-acl@1294242 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/qpid/branches/QPID-3799-acl@1294242 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>QPID-3799 ACL processing</title>
<updated>2012-02-24T20:53:26+00:00</updated>
<author>
<name>Charles E. Rolke</name>
<email>chug@apache.org</email>
</author>
<published>2012-02-24T20:53:26+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/qpid-python.git/commit/?id=46ca717a2d5b19bb293b40c6eb81f83909640e50'/>
<id>46ca717a2d5b19bb293b40c6eb81f83909640e50</id>
<content type='text'>
Remove unnecessary #include AclModule.h in some broker .h files
  that cause overly aggressive recompilation.
Rename acl file maxqueuesize keyword to queuemaxsizeupperlimit
            and maxqueuecount        to queuemaxcountupperlimit.
Keep maxqueuesize and maxqueuecount as aliases so old ACL files work.
Add new queuemaxsizelowerlimit and queuemaxsizelowercount keywords
  to work in concert with the corresponding upperlimit settings.
Add a MIN int limit check to prevent values being too small.
Add a SpecProperty enumeration to define what is allowed in ACL
  files. This list is different from the Property enum that
  defines how run-time interfaces to ACL to authorize something.
  The two enums are needed as now a single run-time value such as
  qpid.max_size may be limit checked against two ACL rule settings
  queuemaxsizeupperlimit and queuemaxsizelowerlimit.
Modify code to use SpecProperty where needed.
Add comments.
Reformat to reduce overall text width.
Add use case tests to acl.py to exercise new code.



git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/QPID-3799-acl@1293411 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Remove unnecessary #include AclModule.h in some broker .h files
  that cause overly aggressive recompilation.
Rename acl file maxqueuesize keyword to queuemaxsizeupperlimit
            and maxqueuecount        to queuemaxcountupperlimit.
Keep maxqueuesize and maxqueuecount as aliases so old ACL files work.
Add new queuemaxsizelowerlimit and queuemaxsizelowercount keywords
  to work in concert with the corresponding upperlimit settings.
Add a MIN int limit check to prevent values being too small.
Add a SpecProperty enumeration to define what is allowed in ACL
  files. This list is different from the Property enum that
  defines how run-time interfaces to ACL to authorize something.
  The two enums are needed as now a single run-time value such as
  qpid.max_size may be limit checked against two ACL rule settings
  queuemaxsizeupperlimit and queuemaxsizelowerlimit.
Modify code to use SpecProperty where needed.
Add comments.
Reformat to reduce overall text width.
Add use case tests to acl.py to exercise new code.



git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/QPID-3799-acl@1293411 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix minor typos.</title>
<updated>2012-02-23T19:06:52+00:00</updated>
<author>
<name>Charles E. Rolke</name>
<email>chug@apache.org</email>
</author>
<published>2012-02-23T19:06:52+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/qpid-python.git/commit/?id=d4c1e8dbd039ff00e10258f97c00f571d21a2169'/>
<id>d4c1e8dbd039ff00e10258f97c00f571d21a2169</id>
<content type='text'>
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/QPID-3799-acl@1292902 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/qpid/branches/QPID-3799-acl@1292902 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>QPID-3603: Add HA tests to automake and cmake.</title>
<updated>2012-02-17T19:04:32+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2012-02-17T19:04:32+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/qpid-python.git/commit/?id=9cd34b79c2cba12e341e7e246cbe41841fb6e6a3'/>
<id>9cd34b79c2cba12e341e7e246cbe41841fb6e6a3</id>
<content type='text'>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1245706 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/qpid/trunk/qpid@1245706 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>QPID-3603: Merge new HA foundations.</title>
<updated>2012-02-17T14:54:46+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2012-02-17T14:54:46+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/qpid-python.git/commit/?id=0a8773c335509c2b9e9b96df360de190a266dcad'/>
<id>0a8773c335509c2b9e9b96df360de190a266dcad</id>
<content type='text'>
Merged from qpid-3603-7. This is basic support for the new HA approach.
For information &amp; limitations see qpid/cpp/design_docs/new-ha-design.txt.

git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1245587 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Merged from qpid-3603-7. This is basic support for the new HA approach.
For information &amp; limitations see qpid/cpp/design_docs/new-ha-design.txt.

git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1245587 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>QPID-3787 - Fixed shutdown crash in SslPlugin, Fixed problem with sasl_mux test.</title>
<updated>2012-01-27T20:03:54+00:00</updated>
<author>
<name>Ted Ross</name>
<email>tross@apache.org</email>
</author>
<published>2012-01-27T20:03:54+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/qpid-python.git/commit/?id=ab01c9c19e109b2f91cb505f53497592c52ca88d'/>
<id>ab01c9c19e109b2f91cb505f53497592c52ca88d</id>
<content type='text'>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1236864 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/qpid/trunk/qpid@1236864 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>QPID-3603: Merge SemanticState unsubscribe with cancel.</title>
<updated>2012-01-18T22:08:53+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2012-01-18T22:08:53+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/qpid-python.git/commit/?id=b5c926711d6ebc66a82acf9e4b0db3689178b73c'/>
<id>b5c926711d6ebc66a82acf9e4b0db3689178b73c</id>
<content type='text'>
Simplyfig the code, there is no need for these to be separate functions.

git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1233087 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Simplyfig the code, there is no need for these to be separate functions.

git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1233087 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
<entry>
<title>QPID-3603: Replace public broker::Consumer::position variable with get/set function pair.</title>
<updated>2012-01-18T22:07:58+00:00</updated>
<author>
<name>Alan Conway</name>
<email>aconway@apache.org</email>
</author>
<published>2012-01-18T22:07:58+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/python-packages/qpid-python.git/commit/?id=95d12bc60580be2acf85af1ec8cb13ed46ddc7a9'/>
<id>95d12bc60580be2acf85af1ec8cb13ed46ddc7a9</id>
<content type='text'>
Public member variables are not good sytle.

git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1233080 13f79535-47bb-0310-9956-ffa450edef68
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Public member variables are not good sytle.

git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1233080 13f79535-47bb-0310-9956-ffa450edef68
</pre>
</div>
</content>
</entry>
</feed>
