summaryrefslogtreecommitdiff
path: root/keystoneclient/generic/shell.py
Commit message (Collapse)AuthorAgeFilesLines
* python3: Add basic compatibility supportChuck Short2013-08-041-2/+4
| | | | | | | | Use six.iteritems to replace dictionary.iteritems() on python2 or dictionary.items() on python3. Change-Id: I623009200f3a90985a2c0178673df7d54b36a686 Signed-off-by: Chuck Short <chuck.short@canonical.com>
* flake8: fix alphabetical imports and enable H306Dolph Mathews2013-08-011-1/+1
| | | | Change-Id: I0f4fcc9796e8529e7217dc24abe95660633cad33
* Use Python 3.x compatible print syntaxDirk Mueller2013-06-231-2/+2
| | | | | | | | Adding an extra pair of braces helps here to let Python 3.x interpret it as print function, while not confusing the Python 2.x print operator. Change-Id: I05af267ecfbcc80753726743fdf82c330350afcb
* Fix incomplete sentence in helpDolph Mathews2013-02-061-3/+1
| | | | | | | `keystone help` only pulls a one line summary from docstrings, so this summary needed to be condensed. Change-Id: I9b08c6a8153101b1cc338955078d0d3b6a0aa02e
* updating keystoneclient doc themeJoe Heck2012-10-011-7/+9
| | | | | | | | | | adding in openstack theming enabling last update from git removing old manual references to API, converted entirely to autodoc updated .gitignore fixed docstring warnings and errors Change-Id: Id22ddc446331d52cbf56c3462d8b532fc37f64ac
* Backslash continuations (python-keystoneclient)Zhongyue Luo2012-03-171-4/+4
| | | | | | | | Fixes bug #940023 Backslash continuations removal for python-keystoneclient Change-Id: I816fc39ced20bb8ba8a42d3f07a03da94a76f8ea
* Support for version and extension discoveryessex-3Ziad Sawalha2012-01-201-0/+59
- Supports unauthenticated call to Keystone to discover supported API versions - Added command-line support (usage: keystone discover) - Added client support (keystoneclient.genenric client). Client returns dicts, whereas shell command prints formated output. - Added tests for genenric client - Replicates 'nove discover' in python-novaclient - Starts to address blueprint keystone-client - keystone discover output looks like this: $ keystone discover Keystone found at http://localhost:35357 - supports version v1.0 (DEPRECATED) here http://localhost:35357/v1.0 - supports version v1.1 (CURRENT) here http://localhost:35357/v1.1 - supports version v2.0 (BETA) here http://localhost:35357/v2.0 - and HP-IDM: HP Token Validation Extension - and OS-KSADM: Openstack Keystone Admin - and OS-KSCATALOG: Openstack Keystone Catalog Change-Id: Id16d34dac094c780d36afb3e31c98c318b6071ac