<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-glanceclient.git/glanceclient/client.py, branch kilo-eol</title>
<subtitle>opendev.org: openstack/python-glanceclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/'/>
<entry>
<title>Don't require version to create Client instance</title>
<updated>2014-12-09T14:45:06+00:00</updated>
<author>
<name>Flavio Percoco</name>
<email>flaper87@gmail.com</email>
</author>
<published>2014-11-24T14:12:39+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=9829d7b6b9f2232bda8039b6db54be1d8885e7a0'/>
<id>9829d7b6b9f2232bda8039b6db54be1d8885e7a0</id>
<content type='text'>
We currently require a version to always be passed to discover the
client version that should be loaded. However, this information is
commonly present in the URL instead. The current behavior forces
consumers of the library to keep the required version around and/or to
strip it themselves from the URL.

This patch relaxes that requirement by making the version a keyword and
requesting instead an endpoint to be passed. The patch gives priority to
the version in the endpoint and falls back to the keyword if the later is
not present.

Follow-up patches will improve this code making it interact a bit more
with the endpoint's catalog.

Closes-bug: #1395714
Change-Id: I4ada9e724ac4709429e502b5a006604ca0453f61</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We currently require a version to always be passed to discover the
client version that should be loaded. However, this information is
commonly present in the URL instead. The current behavior forces
consumers of the library to keep the required version around and/or to
strip it themselves from the URL.

This patch relaxes that requirement by making the version a keyword and
requesting instead an endpoint to be passed. The patch gives priority to
the version in the endpoint and falls back to the keyword if the later is
not present.

Follow-up patches will improve this code making it interact a bit more
with the endpoint's catalog.

Closes-bug: #1395714
Change-Id: I4ada9e724ac4709429e502b5a006604ca0453f61</pre>
</div>
</content>
</entry>
<entry>
<title>Replace OpenStack LLC with OpenStack Foundation</title>
<updated>2013-09-19T20:05:51+00:00</updated>
<author>
<name>ZhiQiang Fan</name>
<email>aji.zqfan@gmail.com</email>
</author>
<published>2013-09-19T20:05:51+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=25172039759ab1013ccf00a2c1bec93db76a23ff'/>
<id>25172039759ab1013ccf00a2c1bec93db76a23ff</id>
<content type='text'>
Change-Id: I38dcbcf1a6c8efe540fcf5f29e782cb3826e583d
Fixes-Bug: #1214176
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I38dcbcf1a6c8efe540fcf5f29e782cb3826e583d
Fixes-Bug: #1214176
</pre>
</div>
</content>
</entry>
<entry>
<title>Add minimal support for the v2 API</title>
<updated>2012-06-04T15:49:26+00:00</updated>
<author>
<name>Brian Waldon</name>
<email>bcwaldon@gmail.com</email>
</author>
<published>2012-05-17T21:33:43+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=4b62848a4cbfe8d270a3386fcd43393bbefb973f'/>
<id>4b62848a4cbfe8d270a3386fcd43393bbefb973f</id>
<content type='text'>
This only allows you to run image-list, but sets up a framework
that we can use to fill in the rest of the v2 functionality.

* Related to bp glance-client-v2

Change-Id: I8827e36fdcf79fe402990a6d05898ec00cbd54c6
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This only allows you to run image-list, but sets up a framework
that we can use to fill in the rest of the v2 functionality.

* Related to bp glance-client-v2

Change-Id: I8827e36fdcf79fe402990a6d05898ec00cbd54c6
</pre>
</div>
</content>
</entry>
<entry>
<title>Basic get/list operations work</title>
<updated>2012-03-27T05:48:48+00:00</updated>
<author>
<name>Brian Waldon</name>
<email>bcwaldon@gmail.com</email>
</author>
<published>2012-03-27T05:48:48+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=c530de638916d29c609f66194569f57234a68289'/>
<id>c530de638916d29c609f66194569f57234a68289</id>
<content type='text'>
* 'glance image-list' and 'glance image-show' work
* Set up tests, pep8, venv
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
* 'glance image-list' and 'glance image-show' work
* Set up tests, pep8, venv
</pre>
</div>
</content>
</entry>
<entry>
<title>Initial checkin for new CLI and client package</title>
<updated>2012-02-29T21:42:26+00:00</updated>
<author>
<name>Jay Pipes</name>
<email>jaypipes@gmail.com</email>
</author>
<published>2012-02-29T21:42:26+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-glanceclient.git/commit/?id=972677fc3dc24a5084657fc337fb2b2981a30e0c'/>
<id>972677fc3dc24a5084657fc337fb2b2981a30e0c</id>
<content type='text'>
Copied mostly from python-keystoneclient with
some Glance-specific stuff. README.rst shows what
WILL be the way to do things, not what is currently coded :)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Copied mostly from python-keystoneclient with
some Glance-specific stuff. README.rst shows what
WILL be the way to do things, not what is currently coded :)
</pre>
</div>
</content>
</entry>
</feed>
