summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Drop version requirement for argparse2.1.0Douglas Mendizabal2014-01-221-1/+1
| | | | | | | argparse 1.2.1 is not verified in PyPI, which causes pip 1.5 to fail when installing the dependencies. Change-Id: I61658ad8a40bb5caff095ddd698e65962ab3c1b2
* Remove version from setup.cfg2.0.0Donald Stufft2014-01-201-1/+0
| | | | | | | This will be generated dynamically from git tags instead of being hardwritten into the setup.cfg. Change-Id: Ia81aabd11e8202dfb88f11348d453193a0819525
* Merge "Switch README.md to README.rst"Jenkins2014-01-203-85/+95
|\
| * Switch README.md to README.rstDonald Stufft2014-01-203-85/+95
| | | | | | | | Change-Id: I0fd5d1efacada53260097d18405dc863110c89ae
* | Use summary not description for the short summaryDonald Stufft2014-01-201-1/+1
|/ | | | Change-Id: I3ab302187221f890e90dc7db3c070cf2e1554c34
* Migrate to pbrDonald Stufft2014-01-037-63/+44
| | | | Change-Id: Id914183a5098e2fdc3f325fc83ecc5161886733d
* Merge "Rename the command line client to barbican"Jenkins2014-01-014-22/+23
|\
| * Rename the command line client to barbicanDonald Stufft2013-12-314-22/+23
| | | | | | | | Change-Id: I7695365dd5fe2504f3d267012ac6717790e97541
* | Add auth plugin for Rackspace IdentityDouglas Mendizabal2013-12-212-4/+198
|/ | | | Change-Id: I2f99a209eec3ee8beb9dd394f43849901c98044a
* Removing conditional around client status code checkJohn Vrbanac2013-12-182-7/+11
| | | | | | The response object should always have a status_code on it. Change-Id: I341c6297a199ced88df2a39c9c8d6a4bbb5c057f
* Add filtering CLI options to 'secrets list' sub command.Wyllys Ingersoll2013-12-162-2/+29
| | | | | Change-Id: I14265ad277a02f93af98312e139dc19e23382edd Implements: blueprint secret-list-add-criteria
* secrets.get should verify that the request is for a single secretWyllys Ingersoll2013-12-103-3/+24
| | | | | | | | Added sanity checking to the requested URI path to make sure it is a properly formed secret UUID value. Change-Id: Ie6598303e502cd19458e0beef24d7fd032f9f14a Closes-Bug: #1259654
* Add .gitreview file for StackForge.Douglas Mendizabal2013-12-061-0/+5
| | | | Change-Id: Ia16bb570b70f238225f9d4fdbacaea4f13eaeb9a
* Merge pull request #36 from dmend/masterv1.0.0John Wood2013-12-052-2/+2
|\ | | | | Version bump for Icehouse M1
| * Version bump for Icehouse M1.Douglas Mendizabal2013-12-052-2/+2
|/
* Merge pull request #34 from dmend/masterPaul Kehrer2013-12-031-0/+3
|\ | | | | Add mailmap file.
| * Add mailmap file.Douglas Mendizabal2013-12-031-0/+3
| |
* | Merge pull request #33 from dmend/masterJohn Wood2013-12-031-3/+4
|\ \ | |/ | | Remove extra header (H2) in the readme
| * Remove extra header (H2) in the readmeDouglas Mendizabal2013-12-031-3/+4
|/
* Merge pull request #32 from jfwood/masterPaul Kehrer2013-12-031-5/+14
|\ | | | | Update README.md to mention the pypi location, and to add verification i...
| * Update README.md to mention the pypi location, and to add verification ↵jfwood2013-12-031-5/+14
|/ | | | information.
* Merge pull request #28 from jfwood/masterJohn Wood2013-12-0315-92/+848
|\ | | | | Add verifications entity logic to the client library.
| * Add mods per peer review; Added new testing log files to gitignore file;jfwood2013-11-263-22/+12
| |
| * Remove unused utils file.jfwood2013-11-251-10/+0
| |
| * Fix merge conflicts.jfwood2013-11-255-34/+71
| |\
| * | Add remaining verification unit test and keep files/mods.jfwood2013-11-2510-291/+233
| | |
| * | Revamped unit tests to remove redundant testing, added some tests for the ↵jfwood2013-11-255-69/+540
| | | | | | | | | | | | verification service.
| * | Add unit tests for secrets.jfwood2013-11-223-9/+190
| | |
| * | Add verifications resourcejfwood2013-11-205-8/+177
| | |
* | | Merge pull request #29 from wyllys66/masterJohn Wood2013-12-031-1/+8
|\ \ \ | |_|/ |/| | Client should use endpoint from command line if it is not found in the auth catalog
| * | Client should use endpoint from command line if it is not found in the auth ↵Wyllys Ingersoll2013-12-031-1/+8
|/ / | | | | | | catalog
* | Merge pull request #26 from craigtracey/improve-loggingPaul Kehrer2013-11-255-4/+12
|\ \ | | | | | | Rework logging to support importing externally
| * | Rework logging to support importing externallyCraig Tracey2013-11-255-4/+12
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Right now barbican client is not usable when importing from other OpenStack modules. This is due to the fact that logging under barbican.openstack.common wants to do things like register default CONF options. And, as these have already been registered, this will fail with exceptions like ArgsAlreadyParsedError. Therefore, move this client to follow the examples provided by the other python-*client modules. Namely, import standard logging module and move the setup into the keep client itself. Now when called from places like Nova, we will not encounter import issues. Additionally, this change fixes a bug in barbicanclient.common.auth where LOG was used but not defined.
* | Merge pull request #25 from craigtracey/insecureDouglas Mendizabal2013-11-213-10/+26
|\ \ | |/ |/| Adding the --insecure cli argument
| * Adding the --insecure cli argumentCraig Tracey2013-11-203-10/+26
|/ | | | | | There are times when testing against insecure endpoints makes sense. Therefore, provide a mechanism similar to how the other OpenStack cli tools allow for insecure SSL connections.
* Merge pull request #23 from jmvrbanac/fixing_typoPaul Kehrer2013-11-181-1/+1
|\ | | | | Fixing typo in exception message
| * Fixing typo in exception messageJohn Vrbanac2013-11-181-1/+1
|/
* Merge pull request #22 from wyllys66/masterJohn Wood2013-11-131-1/+1
|\ | | | | Fixed typo in keep Client initialization
| * Fixed typo in keep Client initializationWyllys Ingersoll2013-11-131-1/+1
|/
* Merge pull request #20 from dmend/masterJohn Wood2013-09-112-4/+4
|\ | | | | Fix a couple of bugs caused by typos.
| * Version bump.Douglas Mendizabal2013-09-111-1/+1
| |
| * Fix a couple of bugs caused by typos.Douglas Mendizabal2013-09-111-3/+3
|/
* Merge pull request #17 from dmend/masterJohn Wood2013-09-0521-1089/+878
|\ | | | | Client refactor for M3
| * Version bump.v0.4.0Douglas Mendizabal2013-09-051-1/+1
| |
| * Remove unused exception.Douglas Mendizabal2013-09-052-16/+0
| |
| * Update unit tests for ClientDouglas Mendizabal2013-09-052-327/+63
| |
| * Add total() to both secrets and orders.Douglas Mendizabal2013-09-051-0/+10
| |
| * pep-8 fixes.Douglas Mendizabal2013-09-043-10/+13
| |
| * Update README.mdDouglas Mendizabal2013-09-041-19/+17
| |
| * Rename KeystoneAuth to KeystoneAuthV2Douglas Mendizabal2013-09-043-6/+8
| | | | | | | | | | This makes it more explicit that we're using keystone authentication v2.0