Skip to content

Commit

Permalink
Merge pull request #168 from fedora-infra/feature/cleaning
Browse files Browse the repository at this point in the history
Some cleanup.
  • Loading branch information
ralphbean committed Jan 6, 2016
2 parents 7af93cb + cbe2024 commit 0320320
Show file tree
Hide file tree
Showing 9 changed files with 20 additions and 1,212 deletions.
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

0 comments on commit 0320320

Please sign in to comment.