)]}'
{
  "log": [
    {
      "commit": "0a6e45abb78bc2fa05956d13f99608897230d364",
      "tree": "f1e936e83ebd3c369d2d22c61a574d552a4034b3",
      "parents": [
        "704a750fa2d098d0537ced60a36a8cdc7e4612e2"
      ],
      "author": {
        "name": "Samuel A. Falvo II",
        "email": "sam.falvo@rackspace.com",
        "time": "Thu Jul 11 17:00:41 2013 -0700"
      },
      "committer": {
        "name": "Samuel A. Falvo II",
        "email": "sam.falvo@rackspace.com",
        "time": "Thu Jul 11 17:00:41 2013 -0700"
      },
      "message": "Add ListImages() support and acceptance test.\n\nThis is needed to support a (currently broken) acceptance test for\ncreating a cloud server.  Without the ability to auto-detect an image, a\nhuman operator is required to specify an image manually, which defeats\nthe value of an automated test.\n"
    },
    {
      "commit": "704a750fa2d098d0537ced60a36a8cdc7e4612e2",
      "tree": "d371823f13567774bfd4c5ecc5e59fbc48279fc3",
      "parents": [
        "02f5e83ac462bf3ae8d768db9b895e57de457167"
      ],
      "author": {
        "name": "Samuel A. Falvo II",
        "email": "sam.falvo@rackspace.com",
        "time": "Wed Jul 10 15:23:43 2013 -0700"
      },
      "committer": {
        "name": "Samuel A. Falvo II",
        "email": "sam.falvo@rackspace.com",
        "time": "Wed Jul 10 15:23:43 2013 -0700"
      },
      "message": "Remove duplicate code from acceptance tests.\n\nJust cleaning things up here.\n"
    },
    {
      "commit": "02f5e83ac462bf3ae8d768db9b895e57de457167",
      "tree": "0351d482e1c8dd1daee895868e7583696134733a",
      "parents": [
        "489484776a96585dfd7eebf186b975b15f2022ce"
      ],
      "author": {
        "name": "Samuel A. Falvo II",
        "email": "sam.falvo@rackspace.com",
        "time": "Wed Jul 10 13:52:27 2013 -0700"
      },
      "committer": {
        "name": "Samuel A. Falvo II",
        "email": "sam.falvo@rackspace.com",
        "time": "Wed Jul 10 13:52:27 2013 -0700"
      },
      "message": "Add ServerById() function and acceptance test.\n"
    },
    {
      "commit": "1dd740af61898a80dd5e5acada4a558b86de0c76",
      "tree": "b2e001d59e7960412dd1f5e35ff767fb7e807619",
      "parents": [
        "bc0d54a28253182cde9f78be19e03ae91a8326be"
      ],
      "author": {
        "name": "Samuel A. Falvo II",
        "email": "sam.falvo@rackspace.com",
        "time": "Mon Jul 08 15:48:40 2013 -0700"
      },
      "committer": {
        "name": "Samuel A. Falvo II",
        "email": "sam.falvo@rackspace.com",
        "time": "Mon Jul 08 15:48:40 2013 -0700"
      },
      "message": "Rename ComputeApi to ServerApi\n\nComputeApi never sat well with me.  OpenStack documents prefer to call\ntheir computing service \"Cloud Server\" API instead.  So, I renamed all\npublic-facing types and procedure names to reflect this usage.\n\nFixes #33\n"
    },
    {
      "commit": "fca35b7d2e4753c88f16e2ff88cddf29caf1f060",
      "tree": "4dbdc42443d445867c78a4e50728bdadcec09a25",
      "parents": [
        "daf65dccfea6f631599b59aafd8a1c5ac4b3e4d4"
      ],
      "author": {
        "name": "Samuel A. Falvo II",
        "email": "sam.falvo@rackspace.com",
        "time": "Tue Jul 02 18:30:28 2013 -0700"
      },
      "committer": {
        "name": "Samuel A. Falvo II",
        "email": "sam.falvo@rackspace.com",
        "time": "Tue Jul 02 18:30:28 2013 -0700"
      },
      "message": "Implement Access.FirstEndpointUrlByCriteria\n\nThe FirstEndpointUrlByCriteria method is a key enabler for writing API\nprovider interface constructors.  A simple, albeit incomplete, use-case\nfor Cloud Servers API demonstrates how it\u0027s used internally.\n\nSee squashed commit history below for more detailed rationale behind the\nAPI design.\n\nSquashed commit of the following:\n\ncommit 625c31f754dcdcd2d348cf4cf5499a03ba6b2de1\nAuthor: Samuel A. Falvo II \u003csam.falvo@rackspace.com\u003e\nDate:   Tue Jul 2 18:21:36 2013 -0700\n\n    Fix service name typo\n\ncommit c6abcbe20bfe31a8c9399e78c186dca64d050140\nAuthor: Samuel A. Falvo II \u003csam.falvo@rackspace.com\u003e\nDate:   Tue Jul 2 18:15:41 2013 -0700\n\n    Added decision logic to FFEBC function.\n\ncommit bccf7178464c5071a81d63ef16fd20d7a241146f\nAuthor: Samuel A. Falvo II \u003csam.falvo@rackspace.com\u003e\nDate:   Tue Jul 2 17:18:14 2013 -0700\n\n    Added ListServers and its dependencies.\n\n    In order to list servers, we need access to a cloud server API.  This is\n    the job of the ComputeApi() function.\n\n    ComputeApi(), in turn, tries hard not to contrain the user in choosing\n    an endpoint, while still offering an interface optimized for the common\n    case of using an existing service provider\u0027s endpoints.  Otherwise, the\n    user will end up having to use nested functions and bizarre predicate\n    sequences like this:\n\n      func(ce *CatalogEntry, ee *EntryEndpoint) bool {\n        if ce !\u003d nil {\n          return ce.Name \u003d\u003d \"cloudComputeOpenStack\"\n        }\n        if ee !\u003d nil {\n          return ee.Region \u003d\u003d \"DFW\" \u0026\u0026 ee.VersionId \u003d\u003d \"2\"\n        }\n        return false\n      }\n\n    The current interface just encapsulates this kind of logic into a simple\n    structure, taking 66% fewer lines, and zero chance for error:\n\n      ApiCriteria{\n        Name: \"cloudComputeOpenStack\",\n        Region: \"DFW\",\n        VersionId: \"2\",\n      }\n\n    FindFirstEndpointByConstraint() is invoked (via\n    AccessProvider.FirstEndpointUrlByConstraint()) to actually look for a\n    matching endpoint in the provider\u0027s service catalog.  This interprets\n    the ApiCriteria structure settings, except for UrlChoice.  If it finds a\n    candidate endpoint, the user may select public or private endpoints via\n    the ApiCriteria.UrlChoice setting (which the\n    FirstEndpointUrlByCriteria() function interprets). If nothing is found,\n    an ErrEndpoint error will be returned to the caller.  Of course, this\n    being a brand new implementation, it just returns the default of\n    \"nothing found\" for all queries anyway.\n\n    If not specified, a criteria\u0027s UrlChoice defaults to PublicURL.\n\ncommit 9549f0b30e0736962dad55f3f38f88124e076fb9\nAuthor: Samuel A. Falvo II \u003csam.falvo@rackspace.com\u003e\nDate:   Tue Jul 2 17:10:14 2013 -0700\n\n    Removed VIM temp swap file\n\ncommit 8e00ad5ac3466cbec3c539e8b21bea6d23ab37f7\nAuthor: Samuel A. Falvo II \u003csam.falvo@rackspace.com\u003e\nDate:   Tue Jul 2 16:20:22 2013 -0700\n\n    Add ApiCriteria to API\n\ncommit 6f3b41929a496c6a0734221bf12ef27035b71e39\nAuthor: Samuel A. Falvo II \u003csam.falvo@rackspace.com\u003e\nDate:   Tue Jul 2 16:18:49 2013 -0700\n\n    Add acceptance test for list servers\n"
    },
    {
      "commit": "1d3fa667c76ec6dabb67a0b13ce07c3022768f4c",
      "tree": "ab8cc3e95e3080b9a8526668661d58eec190cc28",
      "parents": [
        "d6092adfb69759791c3f3fdd99e5642066e3e642"
      ],
      "author": {
        "name": "Samuel A. Falvo II",
        "email": "sam.falvo@rackspace.com",
        "time": "Tue Jun 25 15:29:32 2013 -0700"
      },
      "committer": {
        "name": "Samuel A. Falvo II",
        "email": "sam.falvo@rackspace.com",
        "time": "Tue Jun 25 15:29:32 2013 -0700"
      },
      "message": "Add authentication acceptance test.\n\nBefore coding on the Authentication functionality of gophercloud, we\nneeded the acceptance test to know when we were finished.\n\nSince the authentication test is written in Go, I had to adjust the\nscripts/test-all.sh file to invoke Go programs directly.\n"
    }
  ]
}
