Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Some cleanup. #168

Merged
merged 6 commits into from
Jan 6, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,22 @@ NEWS
====

:Authors: Toshio Kuratomi, Luke Macken, Ricky Elrod, Patrick Uiterwijk, Ralph Bean
:Date: 13 Oct 2015
:Date: 01 Dec 2015
:Version: 0.6.x

-----
0.6.4
-----

* Bodhi2Client query: document new _before query params
* Also perform request retries for failed POST requests.

-----
0.6.3
-----

* Adjust download URL for pypi.

-----
0.6.2
-----
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Python Fedora Module
====================

:Author: Toshio Kuratomi
:Date: 13 October 2015
:Date: 01 December 2015
:Version: 0.6.x

The Fedora module provides a python API for building `Fedora Services`_ and
Expand Down
2 changes: 1 addition & 1 deletion doc/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Client
.. automodule:: fedora.client
:members: FedoraServiceError, ServerError, AuthError, AppError,
FedoraClientError, FASError, CLAError, BodhiClientException,
PackageDBError, DictContainer
DictContainer

Generic Clients
===============
Expand Down
20 changes: 0 additions & 20 deletions doc/existing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -43,26 +43,6 @@ fas from a multithreaded webserver.
:members:
:undoc-members:

.. _`Package-Database`:
.. _`Pkgdb`:

----------------
Package Database
----------------

The Package Database holds information about packages in Fedora. It currently
has a developer-centric view of packages that concentrates on who the owner is
of a particular package.

Plans to add an end-user view to packages is ongoing.

.. toctree::
:maxdepth: 2

.. autoclass:: fedora.client.PackageDB
:members:
:undoc-members:

.. _`Bodhi`:

------------------------
Expand Down
5 changes: 2 additions & 3 deletions fedora/client/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,13 @@ def __init__(self, *args, **kwargs):
from fedora.client.openidproxyclient import OpenIdProxyClient
from fedora.client.openidbaseclient import OpenIdBaseClient
from fedora.client.fas2 import AccountSystem, FASError, CLAError
from fedora.client.pkgdb import PackageDB, PackageDBError
from fedora.client.bodhi import BodhiClient, BodhiClientException
from fedora.client.wiki import Wiki
# pylint: enable-msg=W0611

__all__ = ('FedoraServiceError', 'ServerError', 'AuthError', 'AppError',
'FedoraClientError', 'LoginRequiredError', 'DictContainer',
'FASError', 'CLAError', 'BodhiClientException', 'PackageDBError',
'FASError', 'CLAError', 'BodhiClientException',
'ProxyClient', 'FasProxyClient', 'BaseClient', 'OpenIdProxyClient',
'OpenIdBaseClient', 'AccountSystem', 'PackageDB', 'BodhiClient',
'OpenIdBaseClient', 'AccountSystem', 'BodhiClient',
'Wiki')
Loading