commit e1ce4162e48c9de2e1b4edee2d66467e6c3793e6
Author: Steve Baker <sbaker@redhat.com>
Date:   Tue Dec 4 13:15:33 2012 +1300

    Fix git repo url
    
    Change-Id: I81e02b80445b4a5a277f94e01478a156e56fd071

 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 85b8a6e7524381a58a6b8610f8133b61825e970a
Merge: 8179af9 03f9f84
Author: Jenkins <jenkins@review.openstack.org>
Date:   Mon Dec 3 23:26:30 2012 +0000

    Merge "Deprecate commands and add unified cli replacements."

commit 8179af9b50ec2f82a6a28192bf756d2d3d231415
Merge: 400553e 727d07e
Author: Jenkins <jenkins@review.openstack.org>
Date:   Mon Dec 3 23:26:04 2012 +0000

    Merge "remove some glanceisms from the docs"

commit 03f9f84abfa348bed08ee39d4d0ae1bc8ace5355
Author: Steve Baker <sbaker@redhat.com>
Date:   Tue Dec 4 11:47:02 2012 +1300

    Deprecate commands and add unified cli replacements.
    
    This is to bring into line with
    http://wiki.openstack.org/UnifiedCLI/Mapping
    
    Here is the mapping, as displayed by 'heat help'
        create              DEPRECATED! Use stack-create instead
        delete              DEPRECATED! Use stack-delete instead
        describe            DEPRECATED! Use stack-show instead
        event               DEPRECATED! Use event-show instead
        event-list          List events for a stack
        event-show          Describe the event
        gettemplate         DEPRECATED! Use template-show instead
        list                DEPRECATED! Use stack-list instead
        resource            DEPRECATED! Use resource-show instead
        resource-list       Show list of resources belonging to a stack
        resource-metadata   List resource metadata
        resource-show       Describe the resource
        stack-create        Create the stack
        stack-delete        Delete the stack
        stack-list          List the user's stacks
        stack-show          Describe the stack
        stack-update        Update the stack
        template-show       Get the template for the specified stack
        template-validate   Validate a template with parameters
        update              DEPRECATED! Use stack-update instead
        validate            DEPRECATED! Use template-validate instead
        help                Display help about this program or one of its
                            subcommands.
    
    Change-Id: I1a296de2b935be6cc28fcc49ef8ee7ae333abf1a

 heatclient/v1/shell.py | 97 ++++++++++++++++++++++++++++++++++++++++++++++++--
 tests/test_shell.py    |  4 +--
 2 files changed, 96 insertions(+), 5 deletions(-)

commit 727d07e667b371bc4a27fe1667c47e907b5d04c4
Author: Steve Baker <sbaker@redhat.com>
Date:   Tue Dec 4 11:46:40 2012 +1300

    remove some glanceisms from the docs
    
    Change-Id: Iee3eb218086d3a9810d7f7e0e92500293b90a1f1

 heatclient/exc.py   | 2 +-
 heatclient/shell.py | 6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

commit 400553ead101c4de2666e7ab5476b35a5932bc61
Author: Steve Baker <sbaker@redhat.com>
Date:   Tue Dec 4 10:54:35 2012 +1300

    add some pypi meta info
    
    Change-Id: I2a7c9e015ac7af35518c2303efcf0c40e9a0f3ee

 setup.py | 1 +
 1 file changed, 1 insertion(+)

commit 95a0894a3827f06e946c536704b20249fd52cd95
Author: Jeremy Stanley <fungi@yuggoth.org>
Date:   Sun Dec 2 17:47:28 2012 +0000

    Update .gitreview for org move.
    
    * .gitreview: The python-heatclient project moved from the heat-api
    org to openstack, so this updates the gerrit remote URL accordingly.
    
    Change-Id: I97d8433ceb61cc227ca139ec26f5e30b8daa4052

 .gitreview | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 224eafa18e51853eedb28a3a22fbc87bc9a6f330
Merge: 2347814 3d122cf
Author: Jenkins <jenkins@review.openstack.org>
Date:   Tue Nov 27 23:35:55 2012 +0000

    Merge "Pass template as a string if it is not JSON."

commit 23478147aa0c29d8c1bf86b76551b2bd6f3e108a
Author: Steve Baker <sbaker@redhat.com>
Date:   Wed Nov 28 11:55:23 2012 +1300

    Support for events list and details
    
    This also replaces resource_id with resource_name in the
    resources API.
    
    Change-Id: Ia5ccec5d94fb8106be2dfe89976db0fceeb73b58

 heatclient/v1/client.py    |  4 ++-
 heatclient/v1/events.py    | 64 ++++++++++++++++++++++++++++++++++++++++++++++
 heatclient/v1/resources.py | 40 +++++++++++------------------
 heatclient/v1/shell.py     | 62 +++++++++++++++++++++++++++++++++++---------
 heatclient/v1/stacks.py    | 14 ++++++++++
 5 files changed, 146 insertions(+), 38 deletions(-)

commit 97b24ccb279a4cb554b092589794e6b0902bccca
Author: Steve Baker <sbaker@redhat.com>
Date:   Wed Nov 28 11:57:23 2012 +1300

    Use python-keystoneclient 0.2 series
    
    This is required to not clash with keystone git master
    
    Change-Id: I775e9f1b02d4ae15323db8930b1adeb4b8296970

 tools/pip-requires | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 3d122cfb54343ce717c70d67fc0d4701927bb8ee
Author: Steve Baker <sbaker@redhat.com>
Date:   Mon Nov 26 13:50:38 2012 +1300

    Pass template as a string if it is not JSON.
    
    Test for JSON is whether the first character is '{'
    
    Change-Id: I109d5f12d3874517561631eefac514342761714b

 heatclient/v1/shell.py | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

commit 03e5e7e3c19ff6fb306dd97fc9d49d3924406a9a
Author: Steve Baker <sbaker@redhat.com>
Date:   Mon Nov 26 13:45:13 2012 +1300

    Ignore heatclient/versioninfo
    
    Change-Id: I862cbc8e6b37ea90d3e13bfba1e94a20819ccec6

 .gitignore             | 3 +--
 heatclient/versioninfo | 1 -
 2 files changed, 1 insertion(+), 3 deletions(-)

commit f5ffc5f254d58879686b3a48015c6788958b895e
Author: Steve Baker <sbaker@redhat.com>
Date:   Tue Nov 20 11:24:02 2012 +1300

    Implement client resource support.
    
    CLI now supports commands:
    resource-list
    resource
    resource-metadata
    
    Change-Id: I6c366279456f35e40928fc8f3654ab63ae0af6ca

 heatclient/common/http.py  |  3 +-
 heatclient/v1/client.py    |  2 ++
 heatclient/v1/resources.py | 80 +++++++++++++++++++++++++++++++++++++++++
 heatclient/v1/shell.py     | 89 +++++++++++++++++++++++++++++-----------------
 heatclient/versioninfo     |  2 +-
 5 files changed, 142 insertions(+), 34 deletions(-)

commit cfb2205a965c610abafe39ced35584be42e22717
Author: Dan Radez <dradez@redhat.com>
Date:   Tue Nov 13 18:24:12 2012 -0500

    adding test coverage for common/http, improving the redirect handling

 heatclient/common/http.py |   7 +-
 tests/test_common_http.py | 229 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 234 insertions(+), 2 deletions(-)

commit 116e1afd36585b72dcfef7ff8e9298eb2a24b169
Merge: b5aba71 c14e082
Author: Jenkins <jenkins@review.openstack.org>
Date:   Tue Nov 13 19:53:20 2012 +0000

    Merge "Support name or id for stack operations."

commit b5aba716477be8083d94629cb3e759120f1afa25
Merge: 2122bd1 c1dbaa9
Author: Jenkins <jenkins@review.openstack.org>
Date:   Tue Nov 13 19:49:09 2012 +0000

    Merge "Pass username and password as well as token."

commit c14e082d785d35a702e96249773e1c5ca74d28fd
Author: Steve Baker <sbaker@redhat.com>
Date:   Tue Nov 13 14:07:15 2012 +1300

    Support name or id for stack operations.
    
    Includes the followig changes:
    - move format_parameters to common/utils.py
    - Separate columns for ID and Name in list pretty print table
    - Accept ID or Name for all operations
    - Fix from radaz to correctly respond to redirects
    
    Change-Id: Ie2d7c03f682d43454cb1348188fa56ad001e1bb1

 heatclient/common/http.py  |  9 +++++++-
 heatclient/common/utils.py | 12 ++++++++++
 heatclient/v1/shell.py     | 57 +++++++++++++++++-----------------------------
 heatclient/versioninfo     |  2 +-
 tests/test_shell.py        | 34 ++++++++++++++++++---------
 tests/test_utils.py        | 31 +++++++++++++++++++++++++
 tests/v1/test_shell.py     | 31 -------------------------
 7 files changed, 96 insertions(+), 80 deletions(-)

commit c1dbaa986dfaed0d0b98e047632dceb98563d2f0
Author: Steve Baker <sbaker@redhat.com>
Date:   Wed Nov 7 16:21:23 2012 +1300

    Pass username and password as well as token.
    
    This matches the behaviour of heat-cfn.
    One day Heat will support doing all operations with only a token. Today is not that day.
    Also add a --token-only option to suppress sending username/password.
    
    Change-Id: Ib439d770e90d381ffc83babf7fca85c9f1e32e64

 heatclient/common/http.py |  6 ++++++
 heatclient/shell.py       |  9 +++++++++
 heatclient/versioninfo    |  2 +-
 tests/test_shell.py       | 19 ++++++++++++++++---
 4 files changed, 32 insertions(+), 4 deletions(-)

commit 2122bd1753f7913464133d0e2ed4ba6f0c53bb61
Author: Monty Taylor <mordred@inaugust.com>
Date:   Tue Oct 30 12:08:34 2012 +0100

    Add .gitreview file.

 .gitreview | 4 ++++
 1 file changed, 4 insertions(+)

commit 0d4f3565a89a042154bb8fdf9a85c7acea036f29
Author: Steve Baker <sbaker@redhat.com>
Date:   Sat Oct 27 06:53:56 2012 +1300

    pep8 and more tests

 heatclient/common/utils.py |   2 +-
 heatclient/shell.py        |   2 +-
 heatclient/v1/shell.py     |  23 ++++---
 heatclient/v1/stacks.py    |  14 ++---
 tests/__init__.pyc         | Bin 150 -> 0 bytes
 tests/fakes.py             |  24 ++++++++
 tests/test_shell.py        | 146 ++++++++++++++++++++++++++++++++-------------
 7 files changed, 147 insertions(+), 64 deletions(-)

commit 6499a9a834efe5a9f5b0d3f286039bc182cb2f22
Author: Steve Baker <sbaker@redhat.com>
Date:   Fri Oct 26 13:20:54 2012 +1300

    - Comment out commands that don't yet have a REST API equivalent
    - Use Name/ID when specifying a stack

 heatclient/v1/shell.py | 91 ++++++++++++++++++++++++++------------------------
 1 file changed, 47 insertions(+), 44 deletions(-)

commit 7021e3055a97bccff6062d92b539a782d7dc3561
Author: Steve Baker <sbaker@redhat.com>
Date:   Thu Oct 25 16:47:39 2012 +1300

    Feature parity with REST API
    - Give a nice message for 404 for non-existent stack id
    - implement delete, gettemplate, validate
    - run do_list after create, delete
    - don't encode the json template as a json string

 heatclient/v1/shell.py  | 88 ++++++++++++++++++++++++++++++++-----------------
 heatclient/v1/stacks.py | 72 +++++++++-------------------------------
 tests/test_shell.py     | 14 ++++----
 3 files changed, 79 insertions(+), 95 deletions(-)

commit 801616330fcdc861be56c4c68a864dedf92fd919
Author: Steve Baker <sbaker@redhat.com>
Date:   Thu Oct 25 16:44:07 2012 +1300

    set up default logging even when not debugging

 heatclient/shell.py | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

commit 73f153570be786ab7d9bff9bac7c28614e8d7509
Author: Steve Baker <sbaker@redhat.com>
Date:   Thu Oct 25 16:43:49 2012 +1300

    Allow sort column to be specified

 heatclient/common/utils.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

commit 74a66ca04e382a21259aa2c397c1f7d1f99abfb0
Author: Steve Baker <sbaker@redhat.com>
Date:   Thu Oct 25 16:43:32 2012 +1300

    An error response shouldn't be logged as an error, since it is part of the REST API

 heatclient/common/http.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 2462f281ab1def1d2492d5216dd887e9a6e781a1
Author: Steve Baker <sbaker@redhat.com>
Date:   Thu Oct 25 13:33:16 2012 +1300

    Implement describe, and format the results

 heatclient/v1/shell.py  | 20 +++++++++++++++++---
 heatclient/v1/stacks.py | 22 +++++++++++++---------
 2 files changed, 30 insertions(+), 12 deletions(-)

commit 2a15eda5929fa2f43d4e8d23005c542788ce7a08
Author: Steve Baker <sbaker@redhat.com>
Date:   Thu Oct 25 13:32:52 2012 +1300

    Allow pretty_dict to take optional formatters

 heatclient/common/utils.py | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

commit fe8fa481c6787e800ba107e4ba400ebc736a35ec
Author: Steve Baker <sbaker@redhat.com>
Date:   Tue Oct 23 16:52:23 2012 +1300

    Shell unit tests, remove unused code, display real results from REST API

 heatclient/exceptions.py | 166 ---------------------------------------------
 heatclient/shell.py      |  73 ++++++++------------
 heatclient/v1/shell.py   |  51 ++++++++++----
 tests/test_shell.py      | 171 ++++++++++++++++++++++++++++++++++++++++++++++-
 4 files changed, 235 insertions(+), 226 deletions(-)

commit 5ad7e90817f2d386eae705e6e6d157e3479f532e
Author: Steve Baker <sbaker@redhat.com>
Date:   Tue Oct 23 16:50:30 2012 +1300

    Allow labels to be specified separately from field keys

 heatclient/common/utils.py | 24 ++++--------------------
 1 file changed, 4 insertions(+), 20 deletions(-)

commit a66f891e1ece389ab5dab4abe63f52ce4661f346
Author: Steve Baker <sbaker@redhat.com>
Date:   Fri Oct 19 06:16:36 2012 +1000

    resolve test template file path no matter where it is run from

 tests/minimal.template     | 9 ---------
 tests/test_shell.py        | 8 ++++++--
 tests/var/minimal.template | 9 +++++++++
 3 files changed, 15 insertions(+), 11 deletions(-)

commit 675b8a4f71daba780efdaf6c800fb2cbc1b0ec1b
Author: Steve Baker <sbaker@redhat.com>
Date:   Thu Oct 18 13:50:22 2012 +1000

    Some slightly more realistic mock responses.
    Regexp asserts to check pretty print is printing something

 tests/test_shell.py | 52 +++++++++++++++++++++++++++++++++++++++++++---------
 1 file changed, 43 insertions(+), 9 deletions(-)

commit 231cfc4fbff2fe0f34be81fa892e742f2e9f2700
Author: Steve Baker <sbaker@redhat.com>
Date:   Thu Oct 18 13:46:05 2012 +1000

    pass the dict to print_dict

 heatclient/v1/shell.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit b6debe5cb0621220bfedf94b28acc13c90151406
Author: Steve Baker <sbaker@redhat.com>
Date:   Thu Oct 18 11:56:24 2012 +1000

    Properly configure debug logging

 heatclient/shell.py | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

commit 317757c1646635de29b622f422432c1fc74dc6fb
Author: Steve Baker <sbaker@redhat.com>
Date:   Tue Oct 16 06:51:23 2012 +1000

    Mock at the json request level instead of the http connection level. Test create.

 heatclient/common/utils.py |  1 -
 heatclient/v1/stacks.py    |  4 +---
 tests/fakes.py             | 12 +-----------
 tests/minimal.template     |  9 +++++++++
 tests/test_shell.py        | 34 ++++++++++++++++++++++++++++++----
 5 files changed, 41 insertions(+), 19 deletions(-)

commit b03183ce3fa1e7d0c505179e7cc7972b677ff36c
Author: Steve Baker <sbaker@redhat.com>
Date:   Fri Oct 12 16:54:06 2012 +1300

    setup tweaks

 MANIFEST.in            |  9 +++++++--
 heatclient/versioninfo |  2 +-
 setup.py               | 42 +++++++++++++++++++++++-------------------
 tools/pip-requires     |  2 +-
 4 files changed, 32 insertions(+), 23 deletions(-)

commit 3c9c859e817695d3833c522ef4fcb386f70ebe60
Author: Steve Baker <sbaker@redhat.com>
Date:   Fri Oct 12 16:50:43 2012 +1300

    Get fakes and mox working so that any http request/response sequence can be
    test scripted

 heatclient/__init__.py  | 47 +++++++++++++-----------
 heatclient/shell.py     | 45 ++++++++++++-----------
 heatclient/v1/stacks.py |  5 ---
 heatclient/versioninfo  |  2 +-
 tests/fakes.py          | 66 ++++++++++++++++++++++++++++++++++
 tests/test_foo.py       |  7 ----
 tests/test_shell.py     | 96 +++++++++++++++++++++++++++++++++++++++++++++++++
 7 files changed, 213 insertions(+), 55 deletions(-)

commit 70619f8945b48dcd2ef9c115e1f1aa9a8ee32f15
Author: Steve Baker <sbaker@redhat.com>
Date:   Fri Oct 12 16:49:41 2012 +1300

    pyc files should not have been committed

 heatclient/__init__.pyc                     | Bin 530 -> 0 bytes
 heatclient/client.pyc                       | Bin 544 -> 0 bytes
 heatclient/common/__init__.pyc              | Bin 162 -> 0 bytes
 heatclient/common/base.pyc                  | Bin 6012 -> 0 bytes
 heatclient/common/http.pyc                  | Bin 9793 -> 0 bytes
 heatclient/common/utils.pyc                 | Bin 5142 -> 0 bytes
 heatclient/exc.pyc                          | Bin 7804 -> 0 bytes
 heatclient/openstack/__init__.pyc           | Bin 165 -> 0 bytes
 heatclient/openstack/common/__init__.pyc    | Bin 172 -> 0 bytes
 heatclient/openstack/common/importutils.pyc | Bin 2006 -> 0 bytes
 heatclient/openstack/common/setup.pyc       | Bin 13115 -> 0 bytes
 heatclient/openstack/common/version.pyc     | Bin 6640 -> 0 bytes
 heatclient/v1/__init__.pyc                  | Bin 225 -> 0 bytes
 heatclient/v1/client.pyc                    | Bin 1182 -> 0 bytes
 heatclient/v1/stacks.pyc                    | Bin 7915 -> 0 bytes
 heatclient/version.pyc                      | Bin 362 -> 0 bytes
 tests/test_foo.pyc                          | Bin 608 -> 0 bytes
 17 files changed, 0 insertions(+), 0 deletions(-)

commit 4ba8e466314d18717de63980ac05b5d000e8ef19
Author: Steve Baker <sbaker@redhat.com>
Date:   Thu Oct 11 13:09:56 2012 +1300

    Format parameters for create call

 .gitignore              | 18 +++++++++++++++++-
 heatclient/v1/shell.py  | 21 ++++++++++++++++++++-
 heatclient/v1/stacks.py |  7 ++-----
 heatclient/versioninfo  |  2 +-
 tests/v1/test_shell.py  | 31 +++++++++++++++++++++++++++++++
 5 files changed, 71 insertions(+), 8 deletions(-)

commit 622719c144c0b64a5de6854af3f8b593e7d180f1
Author: Steve Baker <sbaker@redhat.com>
Date:   Wed Oct 10 12:53:05 2012 +1300

    add some more non-functioning skeleton code

 heatclient/v1/shell.py  |  8 +++++++-
 heatclient/v1/stacks.py | 44 ++++++++++++++------------------------------
 heatclient/versioninfo  |  2 +-
 3 files changed, 22 insertions(+), 32 deletions(-)

commit afff6d66d85c30c291bfc85c91e3b69fafbb706e
Author: Steve Baker <sbaker@redhat.com>
Date:   Wed Oct 10 12:52:35 2012 +1300

    fix readme path

 setup.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 7cbfd721d527de8f09a7795ae64461ed0aeb7469
Author: Steve Baker <sbaker@redhat.com>
Date:   Wed Oct 10 10:49:45 2012 +1300

    Swap readme files

 README.md  | 12 ++++++++++++
 README.rst | 12 ------------
 2 files changed, 12 insertions(+), 12 deletions(-)

commit 00cdfcb868686828ece8fe2e54d494d970e4d546
Merge: dddbbd9 3e82cb6
Author: Steve Baker <sbaker@redhat.com>
Date:   Wed Oct 10 10:47:54 2012 +1300

    Merge branch 'master' of https://github.com/steveb/python-heatclient

commit dddbbd95ea588f11c2753be48111594758d48a4f
Author: Steve Baker <sbaker@redhat.com>
Date:   Wed Oct 10 10:46:53 2012 +1300

    Define CLI commands and arguments for entire API.
    
    Should match the legacy client except for how resource id is specified for resource
    subcommand

 heatclient/v1/shell.py  | 96 +++++++++++++++++++++++++++++++++++++++++++++++--
 heatclient/v1/stacks.py | 62 ++++++++++++++------------------
 2 files changed, 120 insertions(+), 38 deletions(-)

commit 69d70c4426f2ea0e3b6edac824886f261d984717
Author: Steve Baker <sbaker@redhat.com>
Date:   Wed Oct 10 10:45:56 2012 +1300

    initial version

 heatclient/versioninfo | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

commit 1269bb20c770ca9869f54da9e1db9af7173b9809
Author: Steve Baker <sbaker@redhat.com>
Date:   Wed Oct 10 08:55:03 2012 +1300

    Initial import

 .gitignore                                  |   4 +
 LICENSE                                     | 175 ++++++++++++++
 MANIFEST.in                                 |   5 +
 README.rst                                  |  12 +
 doc/source/conf.py                          |  65 +++++
 doc/source/index.rst                        |  32 +++
 heatclient/__init__.py                      |  26 ++
 heatclient/__init__.pyc                     | Bin 0 -> 530 bytes
 heatclient/client.py                        |  19 ++
 heatclient/client.pyc                       | Bin 0 -> 544 bytes
 heatclient/common/__init__.pyc              | Bin 0 -> 162 bytes
 heatclient/common/base.py                   | 131 ++++++++++
 heatclient/common/base.pyc                  | Bin 0 -> 6012 bytes
 heatclient/common/http.py                   | 276 +++++++++++++++++++++
 heatclient/common/http.pyc                  | Bin 0 -> 9793 bytes
 heatclient/common/utils.py                  | 134 +++++++++++
 heatclient/common/utils.pyc                 | Bin 0 -> 5142 bytes
 heatclient/exc.py                           | 163 +++++++++++++
 heatclient/exc.pyc                          | Bin 0 -> 7804 bytes
 heatclient/exceptions.py                    | 166 +++++++++++++
 heatclient/openstack/__init__.pyc           | Bin 0 -> 165 bytes
 heatclient/openstack/common/__init__.pyc    | Bin 0 -> 172 bytes
 heatclient/openstack/common/importutils.py  |  59 +++++
 heatclient/openstack/common/importutils.pyc | Bin 0 -> 2006 bytes
 heatclient/openstack/common/setup.py        | 358 ++++++++++++++++++++++++++++
 heatclient/openstack/common/setup.pyc       | Bin 0 -> 13115 bytes
 heatclient/openstack/common/version.py      | 148 ++++++++++++
 heatclient/openstack/common/version.pyc     | Bin 0 -> 6640 bytes
 heatclient/shell.py                         | 348 +++++++++++++++++++++++++++
 heatclient/v1/__init__.py                   |  16 ++
 heatclient/v1/__init__.pyc                  | Bin 0 -> 225 bytes
 heatclient/v1/client.py                     |  33 +++
 heatclient/v1/client.pyc                    | Bin 0 -> 1182 bytes
 heatclient/v1/shell.py                      |  29 +++
 heatclient/v1/stacks.py                     | 198 +++++++++++++++
 heatclient/v1/stacks.pyc                    | Bin 0 -> 7915 bytes
 heatclient/version.py                       |  19 ++
 heatclient/version.pyc                      | Bin 0 -> 362 bytes
 heatclient/versioninfo                      |   1 +
 openstack-common.conf                       |   7 +
 run_tests.sh                                |  49 ++++
 setup.cfg                                   |  15 ++
 setup.py                                    |  47 ++++
 tests/__init__.pyc                          | Bin 0 -> 150 bytes
 tests/test_foo.py                           |   7 +
 tests/test_foo.pyc                          | Bin 0 -> 608 bytes
 tools/pip-requires                          |   4 +
 tools/test-requires                         |  11 +
 tools/with_venv.sh                          |  10 +
 tox.ini                                     |  46 ++++
 50 files changed, 2613 insertions(+)

commit 3e82cb6bbc39ff48e73bb55a0f00e8ef72599dd0
Author: Steven Dake <sdake@redhat.com>
Date:   Mon Oct 8 17:37:58 2012 -0700

    first commit

 0 files changed