<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-ceilometerclient.git/ceilometerclient/v1, branch 1.0.10</title>
<subtitle>opendev.org: openstack/python-ceilometerclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/'/>
<entry>
<title>Replace inheritance hierarchy with composition</title>
<updated>2014-01-15T08:13:55+00:00</updated>
<author>
<name>Andrey Kurilin</name>
<email>akurilin@mirantis.com</email>
</author>
<published>2013-12-09T15:27:15+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=9550f7cc58d907eddd6ffc6c26b939bcccd8d05a'/>
<id>9550f7cc58d907eddd6ffc6c26b939bcccd8d05a</id>
<content type='text'>
In the process of unification of the clients code we should use
composition to allow easier replacement with common HTTPClient.

bp common-client-library-2

Change-Id: I98d2bc89d5b1a36c30771923cd1cda7925e563d5
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
In the process of unification of the clients code we should use
composition to allow easier replacement with common HTTPClient.

bp common-client-library-2

Change-Id: I98d2bc89d5b1a36c30771923cd1cda7925e563d5
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace unicode() with six.u()</title>
<updated>2013-10-14T09:48:13+00:00</updated>
<author>
<name>Kui Shi</name>
<email>skuicloud@gmail.com</email>
</author>
<published>2013-10-14T09:48:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=d0a3dc68ac8d5caa6e33434d78f46b80efdcb7b1'/>
<id>d0a3dc68ac8d5caa6e33434d78f46b80efdcb7b1</id>
<content type='text'>
six.u(text)
A fake unicode literal. text should always be a normal string literal.
In Python 2, u() returns unicode, and in Python 3, a string.

Partial Implement: blueprint py33-support

Change-Id: I02849e540c1fbb1f8b02bcbfa4d9be4f60279926
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
six.u(text)
A fake unicode literal. text should always be a normal string literal.
In Python 2, u() returns unicode, and in Python 3, a string.

Partial Implement: blueprint py33-support

Change-Id: I02849e540c1fbb1f8b02bcbfa4d9be4f60279926
</pre>
</div>
</content>
</entry>
<entry>
<title>Use six.iteritems() for dict</title>
<updated>2013-10-14T09:25:58+00:00</updated>
<author>
<name>Kui Shi</name>
<email>skuicloud@gmail.com</email>
</author>
<published>2013-10-14T08:57:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=38e1ee4632e955e3b8d3643b9d842675c6d15437'/>
<id>38e1ee4632e955e3b8d3643b9d842675c6d15437</id>
<content type='text'>
Fix the error:
AttributeError: 'dict' object has no attribute 'iteritems'

Partial Implement: blueprint py33-support

Change-Id: I5dff17d1df01d6583f882f818434804d65726c51
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Fix the error:
AttributeError: 'dict' object has no attribute 'iteritems'

Partial Implement: blueprint py33-support

Change-Id: I5dff17d1df01d6583f882f818434804d65726c51
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace OpenStack LLC with OpenStack Foundation</title>
<updated>2013-09-19T19:58:04+00:00</updated>
<author>
<name>ZhiQiang Fan</name>
<email>aji.zqfan@gmail.com</email>
</author>
<published>2013-09-19T19:14:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=fb1ff39d53826b94c3c04645d972a0a96dc8225a'/>
<id>fb1ff39d53826b94c3c04645d972a0a96dc8225a</id>
<content type='text'>
Change-Id: Ia007da282714d8ee7337fd3b51f6dcc3b64d7ec3
Fixes-Bug: #1214176
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ia007da282714d8ee7337fd3b51f6dcc3b64d7ec3
Fixes-Bug: #1214176
</pre>
</div>
</content>
</entry>
<entry>
<title>Ensure keystoneclient.auth_token is re-evaluated</title>
<updated>2013-08-02T07:04:42+00:00</updated>
<author>
<name>Eoghan Glynn</name>
<email>eglynn@redhat.com</email>
</author>
<published>2013-08-01T17:07:09+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=1772adf0cce19de9ef151c24c482122f9d18507e'/>
<id>1772adf0cce19de9ef151c24c482122f9d18507e</id>
<content type='text'>
Fixes bug 1207441

Force the re-evaluation of the keystoneclient.auth_token property
so as to avoid missing out on the in-built refresh logic when expiry
is imminent.

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

Force the re-evaluation of the keystoneclient.auth_token property
so as to avoid missing out on the in-built refresh logic when expiry
is imminent.

Change-Id: I8319e9e9a71e33e089fbe2fbc812d2b6c15da927
</pre>
</div>
</content>
</entry>
<entry>
<title>Start using pyflakes</title>
<updated>2013-06-09T09:35:18+00:00</updated>
<author>
<name>Dirk Mueller</name>
<email>dirk@dmllr.de</email>
</author>
<published>2013-06-09T09:34:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=d00756acfd95785390132221edbdebe5f8c1599f'/>
<id>d00756acfd95785390132221edbdebe5f8c1599f</id>
<content type='text'>
Enable Pyflakes tests. Fix those warnings that occur.
Also explicitely list the pep8 warnings that currently
fail.

Change-Id: Icfd7bf23007a99187cfee66cbd630e0e885bf7d3
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Enable Pyflakes tests. Fix those warnings that occur.
Also explicitely list the pep8 warnings that currently
fail.

Change-Id: Icfd7bf23007a99187cfee66cbd630e0e885bf7d3
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix pep H402 and H401 errors</title>
<updated>2013-05-20T03:08:31+00:00</updated>
<author>
<name>Angus Salkeld</name>
<email>asalkeld@redhat.com</email>
</author>
<published>2013-05-20T02:52:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=ae142c0ffe0c10348ef3e6ff38bbffae5cdd6f59'/>
<id>ae142c0ffe0c10348ef3e6ff38bbffae5cdd6f59</id>
<content type='text'>
This is an effort to get the pep ignores to be closer to nova.

Change-Id: I451df579bbead00a8ff2c301c1a84e7c0a896002
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This is an effort to get the pep ignores to be closer to nova.

Change-Id: I451df579bbead00a8ff2c301c1a84e7c0a896002
</pre>
</div>
</content>
</entry>
<entry>
<title>Correct the help info of resource-list sub-command.</title>
<updated>2013-02-27T02:35:35+00:00</updated>
<author>
<name>Jason Zhang</name>
<email>zhesen@nttmcl.com</email>
</author>
<published>2013-02-27T02:14:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=dde86a38144a549efa080c4f77c1aa95a5fbface'/>
<id>dde86a38144a549efa080c4f77c1aa95a5fbface</id>
<content type='text'>
Fixes: bug #1133823

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

Change-Id: I98691379c9c0adf78ef9ab761c2f2b203cd1ee6c
</pre>
</div>
</content>
</entry>
<entry>
<title>v1-api: Added timestamp support.</title>
<updated>2013-02-20T08:03:25+00:00</updated>
<author>
<name>Lianhao Lu</name>
<email>lianhao.lu@intel.com</email>
</author>
<published>2013-02-20T07:57:50+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=8b3ef28c752fa96a1019900d3b9b9a80ede3eeec'/>
<id>8b3ef28c752fa96a1019900d3b9b9a80ede3eeec</id>
<content type='text'>
Added timestamp support for resource/sample api. Fixed bug #1118542.

Change-Id: I644c480ca00f57549dc66bd387721c25d3b353c4
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added timestamp support for resource/sample api. Fixed bug #1118542.

Change-Id: I644c480ca00f57549dc66bd387721c25d3b353c4
</pre>
</div>
</content>
</entry>
<entry>
<title>v1-api: Adapted resouce/user api.</title>
<updated>2013-02-20T08:02:35+00:00</updated>
<author>
<name>Lianhao Lu</name>
<email>lianhao.lu@intel.com</email>
</author>
<published>2013-02-20T05:38:14+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-ceilometerclient.git/commit/?id=feb4bcc6148a166676bbff2718590ea2291a2de5'/>
<id>feb4bcc6148a166676bbff2718590ea2291a2de5</id>
<content type='text'>
Added project-id support in resource api and source-id support in user
api.

Change-Id: I3295a36a4b3a57e9451cc042d542ead1354f8e61
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Added project-id support in resource api and source-id support in user
api.

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