<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-neutronclient.git/quantumclient/quantum, branch 2.2.2a</title>
<subtitle>opendev.org: openstack/python-neutronclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/'/>
<entry>
<title>Merge "Avoid error 414 when retrieving subnet cidrs for ListNetworks"</title>
<updated>2013-05-22T08:58:37+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2013-05-22T08:58:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=5011a21cb3d149181d9c42d75096f3dc1bc7b62a'/>
<id>5011a21cb3d149181d9c42d75096f3dc1bc7b62a</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Add update method of security group name and description</title>
<updated>2013-05-15T09:36:37+00:00</updated>
<author>
<name>Zhenguo Niu</name>
<email>Niu.ZGlinux@gmail.com</email>
</author>
<published>2013-05-14T07:25:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=9dbc2c799763f2ea655547ea09abcb816e7163b7'/>
<id>9dbc2c799763f2ea655547ea09abcb816e7163b7</id>
<content type='text'>
make it possible to edit the name and description of security groups.

Fixes: bug #918393

Change-Id: I7b9dd3f9ad2f59aee1b37e06350ce8f5e3a40f64
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
make it possible to edit the name and description of security groups.

Fixes: bug #918393

Change-Id: I7b9dd3f9ad2f59aee1b37e06350ce8f5e3a40f64
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Change variable name of admin_state_down to admin_state"</title>
<updated>2013-05-10T10:29:04+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2013-05-10T10:29:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=df1ab479b3456f6cab87ea7e3b699d647be4af6c'/>
<id>df1ab479b3456f6cab87ea7e3b699d647be4af6c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Avoid error 414 when retrieving subnet cidrs for ListNetworks</title>
<updated>2013-05-03T20:44:22+00:00</updated>
<author>
<name>Salvatore Orlando</name>
<email>salv.orlando@gmail.com</email>
</author>
<published>2013-05-03T17:46:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=7c6327e06207ea2107ba15deda76acd764d9d6ad'/>
<id>7c6327e06207ea2107ba15deda76acd764d9d6ad</id>
<content type='text'>
Bug 1172537

In order to avoif 414 the list subnet requests will be split in
multiple requests. The total URI len for each of these requests
will be lower than 8K (the default maximum for eventlet.wsgi.server).
The patch tries to submit a single request, and if the URI is too
long an exception is raised before the request is sent over the
wire; the exception handler will split the subnet id list, and
submit the new requests.

This patch does not address the case in which the server is
configured with a maximum URI length different from 8K.

Change-Id: Ia2414cd5374a91d3d12215807037a5d46b836ad6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Bug 1172537

In order to avoif 414 the list subnet requests will be split in
multiple requests. The total URI len for each of these requests
will be lower than 8K (the default maximum for eventlet.wsgi.server).
The patch tries to submit a single request, and if the URI is too
long an exception is raised before the request is sent over the
wire; the exception handler will split the subnet id list, and
submit the new requests.

This patch does not address the case in which the server is
configured with a maximum URI length different from 8K.

Change-Id: Ia2414cd5374a91d3d12215807037a5d46b836ad6
</pre>
</div>
</content>
</entry>
<entry>
<title>Enable automatic validation of many HACKING rules.</title>
<updated>2013-04-08T23:10:35+00:00</updated>
<author>
<name>Maru Newby</name>
<email>marun@redhat.com</email>
</author>
<published>2013-04-05T23:20:45+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=3c193c9387308af6153c0e6e3d751b6672667c82'/>
<id>3c193c9387308af6153c0e6e3d751b6672667c82</id>
<content type='text'>
 * Add hacking to the tox build - a set of flake8 plugins that
   perform automatic validation of many HACKING.rst rules.
 * This patch configures hacking in the tox build and performs
   the mechanical cleanup required to allow the checks to pass.
 * See https://pypi.python.org/pypi/hacking

Change-Id: Ib41313b5aae991e6ffef2a89dd69e83985bdc36d
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * Add hacking to the tox build - a set of flake8 plugins that
   perform automatic validation of many HACKING.rst rules.
 * This patch configures hacking in the tox build and performs
   the mechanical cleanup required to allow the checks to pass.
 * See https://pypi.python.org/pypi/hacking

Change-Id: Ib41313b5aae991e6ffef2a89dd69e83985bdc36d
</pre>
</div>
</content>
</entry>
<entry>
<title>Add custom TableFormater for keep same empty list behavior as prettytable 0.6</title>
<updated>2013-04-08T09:14:49+00:00</updated>
<author>
<name>He Jie Xu</name>
<email>xuhj@linux.vnet.ibm.com</email>
</author>
<published>2013-04-08T06:14:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=e901c5fe8071914a867bbb981da5773ff2a1db6e'/>
<id>e901c5fe8071914a867bbb981da5773ff2a1db6e</id>
<content type='text'>
Fix bug 1165962

And upgrade cliff to 1.3.2, because cliff 1.3.1 depends on prettytable&lt;0.7

Change-Id: I6b38a2d77f6b9bf88d6d64f6c02b98b6c21fda3a
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix bug 1165962

And upgrade cliff to 1.3.2, because cliff 1.3.1 depends on prettytable&lt;0.7

Change-Id: I6b38a2d77f6b9bf88d6d64f6c02b98b6c21fda3a
</pre>
</div>
</content>
</entry>
<entry>
<title>Change variable name of admin_state_down to admin_state</title>
<updated>2013-04-08T01:31:14+00:00</updated>
<author>
<name>Akihiro MOTOKI</name>
<email>motoki@da.jp.nec.com</email>
</author>
<published>2013-03-28T18:15:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=ad7caef9c302575427dfc46cea1c5b84fef8e061'/>
<id>ad7caef9c302575427dfc46cea1c5b84fef8e061</id>
<content type='text'>
It is confusing that admin_state_down=False means admin-state is DOWN.
It is easy to understand if the variable name matches its value.

Also removes 'default=xxx' from options with store_true/false action
since store_true/false sets the default value implicitly.

Fixes bug 1161853

Change-Id: I3146dd8974990c94e5f9b3b5bf6a8b28a245d64e
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
It is confusing that admin_state_down=False means admin-state is DOWN.
It is easy to understand if the variable name matches its value.

Also removes 'default=xxx' from options with store_true/false action
since store_true/false sets the default value implicitly.

Fixes bug 1161853

Change-Id: I3146dd8974990c94e5f9b3b5bf6a8b28a245d64e
</pre>
</div>
</content>
</entry>
<entry>
<title>Switch to flake8 from pep8.</title>
<updated>2013-04-05T17:27:04+00:00</updated>
<author>
<name>Maru Newby</name>
<email>marun@redhat.com</email>
</author>
<published>2013-04-05T17:26:00+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=d41d223e465dfdcb4c7d2a2f5dc55652bbf32bf7'/>
<id>d41d223e465dfdcb4c7d2a2f5dc55652bbf32bf7</id>
<content type='text'>
 * flake8 supports more checks than pep8 (e.g. detection of
   unused imports and variables), and has an extension mechanism.
   A plugin to support automatic HACKING validation is planned.
 * See: http://flake8.readthedocs.org/

Change-Id: I1cba551fadf87f3dbc40a002736c1009e7b9d5b5
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
 * flake8 supports more checks than pep8 (e.g. detection of
   unused imports and variables), and has an extension mechanism.
   A plugin to support automatic HACKING validation is planned.
 * See: http://flake8.readthedocs.org/

Change-Id: I1cba551fadf87f3dbc40a002736c1009e7b9d5b5
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Reordering of optional and required args in lbaas commands help"</title>
<updated>2013-04-04T09:29:55+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2013-04-04T09:29:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=22fd45281c65a03fb75ceb0536fef1ee2fb182c9'/>
<id>22fd45281c65a03fb75ceb0536fef1ee2fb182c9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Don't query the agent with name"</title>
<updated>2013-03-27T06:52:28+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2013-03-27T06:52:28+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=00142f7a015a5d79723f0cd0426d97fa84ed43f9'/>
<id>00142f7a015a5d79723f0cd0426d97fa84ed43f9</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
