<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-neutronclient.git/quantumclient/quantum/v2_0/network.py, branch 2.2.2</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>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>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>Add pagination support for client</title>
<updated>2013-03-01T04:43:25+00:00</updated>
<author>
<name>He Jie Xu</name>
<email>xuhj@linux.vnet.ibm.com</email>
</author>
<published>2013-01-17T11:38:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=49982a3aeab3445b2f99bedd21935710e0ddef5a'/>
<id>49982a3aeab3445b2f99bedd21935710e0ddef5a</id>
<content type='text'>
Fixes bug 1130625

Add pagination params: -P, --page-size SIZE
Add sorting params: --sort-key FIELD --sort-dir {asc,desc}
Add xml support

Change-Id: I76abb6335f53176feade216413a8cabaaefe42be
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fixes bug 1130625

Add pagination params: -P, --page-size SIZE
Add sorting params: --sort-key FIELD --sort-dir {asc,desc}
Add xml support

Change-Id: I76abb6335f53176feade216413a8cabaaefe42be
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow known options after unknown ones in list and update command</title>
<updated>2013-02-19T07:25:09+00:00</updated>
<author>
<name>gongysh</name>
<email>gongysh@linux.vnet.ibm.com</email>
</author>
<published>2013-01-28T04:19:22+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=73b93725fee0383c2b0ac73a309dc95063f12d48'/>
<id>73b93725fee0383c2b0ac73a309dc95063f12d48</id>
<content type='text'>
blueprint known-options-location-in-list-update-commands

Change-Id: Icad4fbc0d9f1751bd36573b37ac7fe32987fada9
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
blueprint known-options-location-in-list-update-commands

Change-Id: Icad4fbc0d9f1751bd36573b37ac7fe32987fada9
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Display subnet cidr information in net-list"</title>
<updated>2013-01-14T09:08:18+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2013-01-14T09:08:18+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=d9357574287afdb8bc3c9316d84a972b4a429318'/>
<id>d9357574287afdb8bc3c9316d84a972b4a429318</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Allow known options defined after position arguments.</title>
<updated>2013-01-13T14:09:08+00:00</updated>
<author>
<name>gongysh</name>
<email>gongysh@cn.ibm.com</email>
</author>
<published>2012-12-11T15:40:16+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-neutronclient.git/commit/?id=ee3ab2d7afb57abf574a31bbb72e4c94dde099df'/>
<id>ee3ab2d7afb57abf574a31bbb72e4c94dde099df</id>
<content type='text'>
We run the argument parser to split known options and unknown options.
Make '-' work and have the same effect as '_' in both known and unknown
option parts.
Make metavar Uppercase.

blueprint options-location

Change-Id: Ic27b278484133c8b83e3b031a0810a76b050219f
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We run the argument parser to split known options and unknown options.
Make '-' work and have the same effect as '_' in both known and unknown
option parts.
Make metavar Uppercase.

blueprint options-location

Change-Id: Ic27b278484133c8b83e3b031a0810a76b050219f
</pre>
</div>
</content>
</entry>
</feed>
