)]}'
{
  "log": [
    {
      "commit": "5b743079da3b0f817545d7e0574222a5c16fc2a9",
      "tree": "16e0768d3a13702182643c7e00d1c4909132de81",
      "parents": [
        "c0c88ee8056427f66451e527f791b31f7485b4ca"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Nov 13 04:00:29 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Nov 13 04:00:29 2007 +0000"
      },
      "message": "Thrift PHP generation Redux\n\nSummary: Chopping the amount of code generated by Thrift for PHP services by two orders of magnitude (approx 25% of the previous size). This is done via putting more logic in a dynamic base class and taking it out of the generated code. Hopefully this wins back the CPU cycles paid just to load code from APC at the cost of a marginal increase in dynamic execution runtime.\n\nReviewed By: sgrimm, dreiss\n\nTest Plan: Ran all the tests in trunk/test/php, also tested the API generate code and Falcon, etc. in my sandbox\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665328 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "5151c6279ba4faa6bc3c3450b22da225a10ada8d",
      "tree": "e80bdac5b4b679c5516c161472ac2b3924638033",
      "parents": [
        "f968926f2b757c1ab7b0bb008e96c58d081f172e"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Nov 06 22:11:29 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Nov 06 22:11:29 2007 +0000"
      },
      "message": "Add include_once statements for generated PHP code that depends upon other types\n\nReviewed By: root\n\nTest Plan: Generate PHP code for a .thrift file with an include in it\n\nOther Notes: Reviewed by Todd Lipcon from AmieStreet\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665325 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "f968926f2b757c1ab7b0bb008e96c58d081f172e",
      "tree": "51c0e5252818fe33c657697d12d41b940d0ff906",
      "parents": [
        "3788038a3564e131372b3e54832d513dcc36917f"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Nov 06 22:10:24 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Nov 06 22:10:24 2007 +0000"
      },
      "message": "Missing configure check for strerror function\n\nReviewed By: dreiss\n\nTest Plan: Run configure script\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665324 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "83be086c7d8bf7d6b61f953c15737e3bbd25c91a",
      "tree": "3faf058906f655e58d3ddfbf5b77ae3e2b57d8b4",
      "parents": [
        "8ebe4a1757145121f9af74d0d9f172d418771cfa"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Thu Nov 01 17:15:35 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Thu Nov 01 17:15:35 2007 +0000"
      },
      "message": "Thrift: Create directories with more permissive modes.\n\nSummary:\nHow many times has no one else been able to use your awesome Python script\nbecause the Thrift generated files are in a directory that they can\u0027t access?\nNever again!  We now create directories with mode 0777.\nOf course, your process umask will ensure that they are actually created\nwith mode 0755.  (This is how the mkdir command works.)\n\nReviewed By: mcslee\n\nTest Plan:\nRebuilt thrift, then did this:\ndreiss@dreiss-vmware:dir_mode:thrift/test$ rm -rf gen-*\ndreiss@dreiss-vmware:dir_mode:thrift/test$ thrift -cpp  -java -php -py ThriftTest.thrift\ndreiss@dreiss-vmware:dir_mode:thrift/test$ ls -ld gen-*\ndrwx------ 2 dreiss dreiss 4096 2007-10-18 12:20 gen-cpp\ndrwx------ 3 dreiss dreiss 4096 2007-10-18 12:20 gen-java\ndrwx------ 2 dreiss dreiss 4096 2007-10-18 12:20 gen-php\ndrwx------ 3 dreiss dreiss 4096 2007-10-18 12:20 gen-py\ndreiss@dreiss-vmware:dir_mode:thrift/test$ rm -rf gen-*\ndreiss@dreiss-vmware:dir_mode:thrift/test$ ../compiler/cpp/thrift -cpp  -java -php -py ThriftTest.thrift\ndreiss@dreiss-vmware:dir_mode:thrift/test$ ls -ld gen-*\ndrwxr-xr-x 2 dreiss dreiss 4096 2007-10-18 12:20 gen-cpp\ndrwxr-xr-x 3 dreiss dreiss 4096 2007-10-18 12:20 gen-java\ndrwxr-xr-x 2 dreiss dreiss 4096 2007-10-18 12:20 gen-php\ndrwxr-xr-x 3 dreiss dreiss 4096 2007-10-18 12:20 gen-py\ndreiss@dreiss-vmware:dir_mode:thrift/test$\n\nRevert Plan: ok\n\nOther Notes:\nWith some help from external contributor Ben Maurer.\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665317 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "83f14ee795917b2f8fa7eb8c18564161b69d9780",
      "tree": "0e8d192793eca0fbc289239b92c08f282b475b6a",
      "parents": [
        "5afc0aae324e8ad31ff2122ae33d6963ebf75c1d"
      ],
      "author": {
        "name": "eletuchy",
        "email": "dev-null@apache.org",
        "time": "Wed Oct 31 13:40:48 2007 +0000"
      },
      "committer": {
        "name": "eletuchy",
        "email": "dev-null@apache.org",
        "time": "Wed Oct 31 13:40:48 2007 +0000"
      },
      "message": "[thrift] erlang structs now compile\n\nSummary: if \"cond and cond -\u003e\" is not valid erlang,\n         if \"cond andalso cond -\u003e\" is.\n\nReviewed By: cpiro\n\nTest Plan: generated erlang from and thrift file with structs ...\n           generated code compiles\n\nRevert Plan: sure\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665314 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "5afc0aae324e8ad31ff2122ae33d6963ebf75c1d",
      "tree": "104285205de15887aefc0391be41cb77ad949679",
      "parents": [
        "51c03936206fbde7b6b980c8d745f758b464c9bc"
      ],
      "author": {
        "name": "dweatherford",
        "email": "dev-null@apache.org",
        "time": "Wed Oct 31 06:03:54 2007 +0000"
      },
      "committer": {
        "name": "dweatherford",
        "email": "dev-null@apache.org",
        "time": "Wed Oct 31 06:03:54 2007 +0000"
      },
      "message": "[thrift] PHP generator: extension support\n\nSummary: Adds php code generation to take advantage of the php\n  \u0027thrift_protocol\u0027 extension (currently for deserialization only)\n\n  Requires you to swap your protocol for a TBinaryProtocolAccelerated\n  (which just inherits TBinaryProtocol without actually adding any\n  new functionality) and that you use a TFramedTransport or wrap your\n  transport in a TBufferedTransport.\n\n  TBinaryProtocolAccelerated is currently only in tfb/www/lib (or will\n  be momentarily).\n\nReviewed By: mcslee\nTest Plan: synapse_feed uses this in my sandbox, works fine\nRevert: svn\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665313 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "65b7075b5aa64c139ad59a3db35ddddda6a2203f",
      "tree": "2dcfa8fdb35e09fd420adb69a7965a29c2545819",
      "parents": [
        "3e098b1757724eb2e78a4abc1306a32abaf610b2"
      ],
      "author": {
        "name": "dweatherford",
        "email": "dev-null@apache.org",
        "time": "Wed Oct 31 02:18:14 2007 +0000"
      },
      "committer": {
        "name": "dweatherford",
        "email": "dev-null@apache.org",
        "time": "Wed Oct 31 02:18:14 2007 +0000"
      },
      "message": "[thrift] Output dir selection + updated TSCons\n\nSummary: Allows setting the output directory via the new \u0027-o dir\u0027 cmdline option.\n\n  TSCons is updated to use this to put the output in the right place no matter\n  the cwd, so doing dependent builds from different directories won\u0027t break.\n\nReviewed By: martin\nTest Plan: mkdir /tmp/honk; thrift -cpp -java -javabean -php -phpi -py -rb -xsd -perl -erl -ocaml -hs -cocoa -o /tmp/honk Tablet.thrift\nRevert: svn\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665311 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "2e7801d7c0b7b881067f4f84c664f22e64a988fa",
      "tree": "f18e308bc0d93a5203be62f991466a2d78a1a191",
      "parents": [
        "6c46f1a8c98113ff5951ae8974339cdeda0eb4bc"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Oct 24 02:56:24 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Oct 24 02:56:24 2007 +0000"
      },
      "message": "Make the Java generator respect the optional keyword in struct writers\n\nReviewed By: dreiss\n\nTest Plan: Generate Java code. Check functionality and safe compile\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665308 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "969b226b06aa80b4d35e0190b69569bdeb8d926c",
      "tree": "3eb0153d6b22c4ba67049f92bd19f86e26d9e766",
      "parents": [
        "3b63fe4d3c75b20250ca1977750d4b4b3f80bf9b"
      ],
      "author": {
        "name": "dweatherford",
        "email": "dev-null@apache.org",
        "time": "Tue Oct 23 00:26:44 2007 +0000"
      },
      "committer": {
        "name": "dweatherford",
        "email": "dev-null@apache.org",
        "time": "Tue Oct 23 00:26:44 2007 +0000"
      },
      "message": "[thrift] Updating gen_phpi for new header format\n\nSummary: This was still sending/expecting the old style (no version field); should be fixed now.\nReviewed By: mcslee\nTest Plan: build and use Tablemaster and Tablet interfaces with gen-phpi\nRevert: svn\nDiffCamp Revision: 1435\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665306 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "2b9ddab14cf8bc64e50e3f2cf2334b9503b60866",
      "tree": "3ae2c7dcee501a9efb0e164c276af714af85b8f7",
      "parents": [
        "65e595f54fb188b112ef050fbd56914b509f7b2e"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Wed Oct 17 03:39:55 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Wed Oct 17 03:39:55 2007 +0000"
      },
      "message": "Thrift: Kill a warning.\n\nSummary:\nThese should always have been const.\n\nReviewed By: mcslee\n\nTest Plan:\nRe-ran the dense protocol test.\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665303 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "65e595f54fb188b112ef050fbd56914b509f7b2e",
      "tree": "f7993673a825005b7d30dc7bbbc3203fbc994891",
      "parents": [
        "524c3ecef7954fbd1c7820b160426a069fef819f"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Oct 15 21:32:12 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Oct 15 21:32:12 2007 +0000"
      },
      "message": "Generate REST code properly for objects/struct arguments\n\nReviewed By: hzhao\n\nTest Plan: Data store API\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665302 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "7b19b65a1623d197395b0cac79720666e8aa5d82",
      "tree": "8864ed574e6e7dbc8ab77117a8348776eec85d4c",
      "parents": [
        "b6dcd2b595724fd9c3d575466db8394dc16be3ae"
      ],
      "author": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Sat Oct 13 05:10:52 2007 +0000"
      },
      "committer": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Sat Oct 13 05:10:52 2007 +0000"
      },
      "message": "[thrift] Erlang Thrift \u0027oop:get\u0027 -\u003e \u0027This#\u0027\n\nSummary: the client structures aren\u0027t oop objects, they\u0027re vanilla records ... adjust accordingly\n\nReviewed By: eletuchy\n\nTest Plan: ok\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665300 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "34b2926d5ca9b6068fa863e7d5e0a4055cbbef30",
      "tree": "3e91dfc24532df55f48a61ad2b1745366fd8287c",
      "parents": [
        "4c3d7b84b62c7a0f5974e376a0cb32fe599d0277"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Oct 09 20:55:10 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Oct 09 20:55:10 2007 +0000"
      },
      "message": "Java Thrift objects implement common base interface\n\nReviewed By: dreiss\n\nTest Plan: Generate java code and run against new library.\n\nRevert: OK\n\nDiffCamp Revision: 900\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665296 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "4c3d7b84b62c7a0f5974e376a0cb32fe599d0277",
      "tree": "917048687443f9ef924aa9a695e22d12ec6752d8",
      "parents": [
        "6c848a02df5cf8276f25091e96582ac16a4358fb"
      ],
      "author": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Tue Oct 09 04:41:48 2007 +0000"
      },
      "committer": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Tue Oct 09 04:41:48 2007 +0000"
      },
      "message": "[thrift] don\u0027t scope non-service types in Erlang\n\nSummary: kind of funny ... exact same patch as for the Ruby version; both were unexposed until I tried using reflection_limited\n\nTest Plan: thx but nothx\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665295 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "6c848a02df5cf8276f25091e96582ac16a4358fb",
      "tree": "3a6278695b130a5b933b7829fc071e79d46620cc",
      "parents": [
        "5299a959e0ac89ce26b6ad4f73b893207f9bae3d"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Oct 08 22:31:03 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Oct 08 22:31:03 2007 +0000"
      },
      "message": "Use json encoding logic for \u003clist\u003e and \u003cset\u003e args in Thrift PHP/REST\n\nReviewed By: hzhao\n\nTest Plan: Data store API interface\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665294 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "e4e1968935f0dce5720f82baef19605f64512120",
      "tree": "bdf95efc989c54f684e5884105eb5cbaec886372",
      "parents": [
        "165eca9c7cdfcbc3b6ac4d8eeadb8e1c80a2584c"
      ],
      "author": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Thu Oct 04 01:54:11 2007 +0000"
      },
      "committer": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Thu Oct 04 01:54:11 2007 +0000"
      },
      "message": "[thrift] don\u0027t scope non-service types in Ruby\n\nSummary: non-service types live in the top-level namespace, so look for them there. example from FacebookService.rb (accessing Service from reflection_limited_types.rb):\n\n              FIELDS \u003d {\n         -      0 \u003d\u003e {:type \u003d\u003e TType::STRUCT, :name \u003d\u003e \u0027success\u0027, :class \u003d\u003e reflection_limited_types.Service}\n         +      0 \u003d\u003e {:type \u003d\u003e TType::STRUCT, :name \u003d\u003e \u0027success\u0027, :class \u003d\u003e Service}\n              }\n\n         preferable to adding a \"module honk_types ... end\" around honk_types.rb ... non-service types should land in top-level space (or whatever ruby_namespace has been defined).  if ruby_namespace even works ... who knows\n\nReviewed By: mcslee\n\nTest Plan: now reflection_limited works with my simple Ruby client\n\n           honestly, there\u0027s no test suite for these?  TODO:cpiro\n\nRevert: OK\n\nTracCamp Project: Thrift\n\nDiffCamp Revision: 735\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665291 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "165eca9c7cdfcbc3b6ac4d8eeadb8e1c80a2584c",
      "tree": "24ef4cdd778c7b3342262c77994a4046193df80a",
      "parents": [
        "145429602687d1785c485bcd1ea9dcd83f28bda4"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Thu Oct 04 01:19:20 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Thu Oct 04 01:19:20 2007 +0000"
      },
      "message": "Make REST PHP deserializer generated PHP code support map/list/set\n\nSummary: list/set are comma-separated and explode, map is JSON decoded\n\nReviewed By: hzhao\n\nTest Plan: Invoke API methods via JSON\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665290 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "73e3dd7d5fdd30301816982d2cd6a961380538ac",
      "tree": "4c67bf32c240134da6ccc6231ec5a56058ba171f",
      "parents": [
        "9b36ef3575c13aa360f1b2fac312683270978094"
      ],
      "author": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Wed Oct 03 07:13:44 2007 +0000"
      },
      "committer": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Wed Oct 03 07:13:44 2007 +0000"
      },
      "message": "[thrift] fix Ruby codegen: capitalize module name for enums\n\nSummary: all module names must be capitalized in Ruby -- if the enum name from the interface isn\u0027t capitalized \\\n         then it\u0027s a runtime error, e.g. in fb303_types.rb:\n\n         -module fb_status\n         +module Fb_status\n\nReviewed By: mcslee\n\nTest Plan: fb303 now works with Ruby binding\n\nRevert: OK\n\nTracCamp Project: Thrift\n\nDiffCamp Revision: 692\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665288 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "aa3c5a882c747a7686fc3dac8f7a5572cc55cdfd",
      "tree": "0e69a7c6e38e421caff3242338080e645ba4dcfa",
      "parents": [
        "2ac60ed96d3075b367ef18aa96787c68330d0248"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Sep 19 21:12:52 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Sep 19 21:12:52 2007 +0000"
      },
      "message": "Merging latest minor Cocoa changes\n\nSummary: BinaryProtocol handling of null strings, destructor, and contributors email fix. Submitted by Andrew McGeachie\n\nReviewed By: mcslee\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665278 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "8266443d925794b4323bae7cc840f5a9827ac874",
      "tree": "146ffeadd96ac21ba0fa58b1b5bc7ef68f9cb25d",
      "parents": [
        "b8f0d496c16504f43e0d5c9ec6e6090742a4a086"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Sep 19 06:49:30 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Sep 19 06:49:30 2007 +0000"
      },
      "message": "OO perl accessors for Thrift objects\n\nSummary: Submitted by Jake Luciani\n\nReviewed By: cpiro\n\nTest Plan: Supplied in test/tutorial code\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665276 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "b72d19f653878dddfe09d01082dad3f077ecf95a",
      "tree": "c36fec3a5ec85072c64a70a12e07b94619f18265",
      "parents": [
        "93a0664affc0805d11c9d69ae9989e96f2700842"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Sep 18 19:46:00 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Sep 18 19:46:00 2007 +0000"
      },
      "message": "Thrift: Prep for release.\n\nSummary:\n- make dist is no fun.  Had to add a lot of stuff to Makefile.am to\n  make sure stuff got included in the tarball.\n- Added a permanent NEWS file with the release notes for this release.\n- clean.sh removes ylwrap also.\n- Gave it a real version for make dist.\n- Added ACLOCAL_AMFLAGS to lib/cpp/Makefile.am to make it easier to\n  work on configure.ac.\n- Made concurrency_test a non-installed binary because\n  no one wants to install it.\n- Dropped some symlinks that were annoying make dist.\n- Updated README.\n\nTest Plan:\n./bootstrap.sh \u0026\u0026 ./configure \u0026\u0026 make dist\nCompared contents of tarball to source tree.\nDid this from a fresh git tree so no gross untracked files would be around.\nOn devrs: ./bootstrap.sh \u0026\u0026 ./configure \u0026\u0026 make install DESTDIR\u003d/tmp/relinst1\nMade sure concurrency_test was built but not installed.\nChecked zlib URL with firefox.\n\nReviewed By: mcslee\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665274 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "0f6cc29f7237e4d2b1b757848e27ccc3efdbc513",
      "tree": "b59bd6d4a3aa2489458bba30cc6217ce4bb41784",
      "parents": [
        "b97b89d1dc5398021443a3c281536c27f61ac038"
      ],
      "author": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Tue Sep 18 02:14:31 2007 +0000"
      },
      "committer": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Tue Sep 18 02:14:31 2007 +0000"
      },
      "message": "[thrift] fix _thrift for inheriting services\n\nSummary: obviously Iain\u0027s fault\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665272 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "b97b89d1dc5398021443a3c281536c27f61ac038",
      "tree": "237cf0c1ede456d26de42576ce7a063f2b0daf0e",
      "parents": [
        "6137146329d2344aaba1a9b9492a7ed24b48a39e"
      ],
      "author": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Tue Sep 18 00:07:42 2007 +0000"
      },
      "committer": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Tue Sep 18 00:07:42 2007 +0000"
      },
      "message": "[thrift] give the generated Erlang service file a _thrift\n\nSummary: Before they were names Service.erl, but the Service module name should be reserved for more important things.  Namespaces what?\n\nTest Plan: with channel server\n\nRiders: also fixes whitespace, puts -erl in its right place\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665271 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "f84b360d5c593653a3f038d526797805861b8ace",
      "tree": "671d7ce07ba060df01e4bd5028e94e5297658082",
      "parents": [
        "79ae0f8d485a568ce94be9f86a2aa5f143856dda"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Mon Sep 17 21:16:32 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Mon Sep 17 21:16:32 2007 +0000"
      },
      "message": "Thrift: Fix fingerprinting bug.\n\nSummary:\nFingerprints were\u0027nt being initialized properly because I forgot to move\nthe initialization from t_struct to t_type.  Fixed that.\nAlso, typedefs weren\u0027t generating fingerprints for their true types.\n\nReviewed By: mcslee\n\nTest Plan:\nThis didn\u0027t work before with -cpp -dense.  Now it does.\ntypedef list\u003ci32\u003e ilist\nstruct foo { 1: ilist l }\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665268 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "df72c01c37f4404df65971b5e538c4a47985bf81",
      "tree": "940f65d964992aea66900b8b938050e9e6b33de8",
      "parents": [
        "5aea7c8d00b1c25fc6611c217d929c61cddd843e"
      ],
      "author": {
        "name": "dweatherford",
        "email": "dev-null@apache.org",
        "time": "Sat Sep 15 08:49:48 2007 +0000"
      },
      "committer": {
        "name": "dweatherford",
        "email": "dev-null@apache.org",
        "time": "Sat Sep 15 08:49:48 2007 +0000"
      },
      "message": "[thrift] C++: Pass std::exception from server to client\n\nSummary: Rather than an uncaught exception dropping the connection, catching std::exception (and anything derived from it) and passing its message payload back in the form of a T_EXCEPTION message is a much cleaner response.\nReviewed By: mcslee\nTest Plan: compile generated code for Synapse\u0027s tablet interface, throw a generic exception at the server, observe the message for the exception arising from the client in the form of a TApplicationException (instead of the previous \u0027no more data to read\u0027 exception)\nRevert: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665264 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "3d029786cda9ecc549e57c0a9a07bfaa454cb34d",
      "tree": "261601c8faa3c9bdb93de0d24c9e3c8226e16816",
      "parents": [
        "1ca5129de0946e777cc6dab9f0ce0c8646bff0d5"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Sep 14 22:18:09 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Sep 14 22:18:09 2007 +0000"
      },
      "message": "Add missing writeEnd calls\n\nSummary: When flush is called this also should be\n\nReviewed By: aditya\n\nTest Plan: Use w/ PipedTransport. Should writeEnd() when an exception is thrown\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665261 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "33a7d898ca8d40d02cbd6a5b7547b7fa3958c3cf",
      "tree": "e96beab79b6538313bb89bcadeac0d3ee76c3fd2",
      "parents": [
        "ae8f1d3f2341660a84a9b64e05c1ee4bec6df581"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Sep 14 19:44:30 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Sep 14 19:44:30 2007 +0000"
      },
      "message": "Merge more cocoa changes from Andrew McGeachie\n\nReviewed By: dreiss\n\nTest Plan: To be provided later by McGeachie. Compiler builds fine. Does not affect other libraries.\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665259 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "ce161a96cddbea8916d0b20406b12d96772482ed",
      "tree": "deb35caa60008c44d04468e3d8f3298e89e1fd11",
      "parents": [
        "8775c73db2729f85fd66e2c8443a3628fd55a972"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Sep 11 22:09:42 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Sep 11 22:09:42 2007 +0000"
      },
      "message": "Thrift: Clean up and test TDenseProtocol\n\nSummary:\n- TDenseProtocol now includes a part of the struct fingerprint in\n  the serialized message, to protect from unserialzing trash.\n- A lot of cleanups and commenting for TDenseProtocol.\n- A lot of test cases for same.\n\nReviewed By: mcslee\n\nTest Plan: test/DenseProtoTest.cpp\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665257 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "8775c73db2729f85fd66e2c8443a3628fd55a972",
      "tree": "f5572c814637a67dd44d8a10a802d2cf4eb1b8ec",
      "parents": [
        "7816572784c7ddafc2c4350b221469af12d198fc"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Sep 10 22:33:05 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Sep 10 22:33:05 2007 +0000"
      },
      "message": "Add JavaDoc comments to generated Thrift Java code\n         Reviewed By: dreiss\n           Test Plan: Generate Java code from .thrift file w/ javadoc comments\n              Revert: OK\n               Notes: My first backend diffcamp review\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665256 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "7816572784c7ddafc2c4350b221469af12d198fc",
      "tree": "05aa1150e22b94f436fabc60e31751dc7aa7a1cc",
      "parents": [
        "7e9eea48711d015a2764f119ea5e78d8b6447476"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Sep 10 22:08:49 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Sep 10 22:08:49 2007 +0000"
      },
      "message": "Modify Thrift parser to disallow optional/required keywords in argument lists\n\nReviewed By: dreiss\n\nTest Plan: Toss an optional/required in an arg list, check that it\u0027s ignored and compiler spits a warning\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665255 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "7e9eea48711d015a2764f119ea5e78d8b6447476",
      "tree": "31dfc7318f598f30fc8ccc15b573fd8aaba5a24d",
      "parents": [
        "979ff958c125adaae29d3f93d89243f7b9e68b24"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Sep 10 21:00:23 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Sep 10 21:00:23 2007 +0000"
      },
      "message": "Adding Cocoa generator to Thrift\n\nSummary: Thanks to Andrew McGeachie for doing this\n\nReviewed By: dreiss\n\nTest Plan: No merge/build issues. Will solicit McGeachie for additions to test/cocoa in the future\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665254 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "979ff958c125adaae29d3f93d89243f7b9e68b24",
      "tree": "dfef42e231464464b8a83849856153892b2f0ee9",
      "parents": [
        "e67c0e63b315873aba8fb6770821fc88bd276a74"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Sep 10 20:53:23 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Sep 10 20:53:23 2007 +0000"
      },
      "message": "Merge Java get/set Size and Iterator changes from Dave Engberg\n\nReviewed By: dreiss\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665253 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "47557bc8ad061a90c88d485979009c2ee8237854",
      "tree": "a0a214d093e4239d88673c929593aeb198e34263",
      "parents": [
        "d3f1a2d2ba1257718e7c442c1cf8ce4fb9516d78"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Sep 04 21:31:04 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Sep 04 21:31:04 2007 +0000"
      },
      "message": "Thrift: Slight tweaks to local reflection.\n\nSummary:\nLocal reflection typespecs for structs now have a dummy T_STOP field at the end\nso we don\u0027t have to check the size on every iteration.\nThey also contain information about which fields are optional.\nAlso put a static pointer to the reflection in each structure.\n\nReviewed By: mcslee\n\nTest Plan: test/DenseLinkingTest.thrift\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665246 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "d3f1a2d2ba1257718e7c442c1cf8ce4fb9516d78",
      "tree": "8b692868db04ffd0a959013ed34bc8b71c186086",
      "parents": [
        "5de75dd859bf1ffaa974fc8ae6dbd1ff1dada1b0"
      ],
      "author": {
        "name": "James Wang",
        "email": "jwang@apache.org",
        "time": "Fri Aug 31 23:45:53 2007 +0000"
      },
      "committer": {
        "name": "James Wang",
        "email": "jwang@apache.org",
        "time": "Fri Aug 31 23:45:53 2007 +0000"
      },
      "message": "Summary: Checking in fix to TFileTransport to remove redundant behavior of readEvent -- just return NULL or the next event\nAlso, checking in changes to the php generation code I made awhile ago, but forgot to check in\n\nReviewed By: aditya, mcslee\n\nTest Plan: Compiled thrift and falcon, and confirmed that falcon\u0027s print binary still worked\n\nRevert Plan: revertible\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665245 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "5de75dd859bf1ffaa974fc8ae6dbd1ff1dada1b0",
      "tree": "6438d7feeb5fceb709ffe7d6924d85d965c859b5",
      "parents": [
        "000b111922ccb9c53390bd8e337ae9d48fc80268"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Aug 31 20:06:36 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Aug 31 20:06:36 2007 +0000"
      },
      "message": "Merge some java gen fixes from Johan Oskarsson\n\nSummary: Making Isset inner classes static because they don\u0027t need to reference their owner, and killing some unused variables.\n\nReviewed By: dreiss\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665244 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "f150f1aed51d48c36b05cf92f7a7dedb9c9cfeb7",
      "tree": "6460744a40ae46f0b61258e583606f096bcb47d4",
      "parents": [
        "d779cbe48c1335169cb87ed8977e293247b1434a"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Aug 31 04:30:52 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Aug 31 04:30:52 2007 +0000"
      },
      "message": "Add get_true_type call to RB generator\n\nSummary: Issue with typedefs failing, submitted by kevin clark @ powerset\n\nReviewed By: mcslee\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665241 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "d779cbe48c1335169cb87ed8977e293247b1434a",
      "tree": "c15b17777725a83cc35183d6bb59744046b28b6b",
      "parents": [
        "01a9f8845d38cd32694d91b35d7a844c3646e3c3"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Fri Aug 31 01:42:55 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Fri Aug 31 01:42:55 2007 +0000"
      },
      "message": "Thrift: Local Reflection for C++.\n\nSummary:\nThe compiler now takes a \"-dense\" flag that will cause it to\ngenerate some extra metadata for C++.  This metadata will be used by\nTDenseProtocol.  This should be the last compiler change necessary\nto enable that feature.\n\nReviewed By: mcslee\n\nTest Plan: test/DenseLinkingTest.thrift\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665240 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "01a9f8845d38cd32694d91b35d7a844c3646e3c3",
      "tree": "c324390c1ae919b733a6dfd71fd76b00042930b8",
      "parents": [
        "6ce97e3d8d3365da4b7c9bcc280ea458449becd5"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Aug 31 00:55:28 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Aug 31 00:55:28 2007 +0000"
      },
      "message": "Add -javabean option to Thrift\n\nSummary: In case you want getters and setters and iterators and magic. Submitted by Dave Engberg\n\nReviewed By: dreiss\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665239 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "6ce97e3d8d3365da4b7c9bcc280ea458449becd5",
      "tree": "b678e22debc00c10924fb6d3fa1bd91bbb1b8ac4",
      "parents": [
        "9885c6801dbd3b49591ea69544fdb03b1ce43642"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Thu Aug 30 23:18:31 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Thu Aug 30 23:18:31 2007 +0000"
      },
      "message": "Thrift: Forgot to commit these fixes.\n\nSummary:\nSmall git error.  These changes should have gone in my last commit.\n\nReviewed By: mcslee\n\nTest Plan: Same as the last one.\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665238 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "9885c6801dbd3b49591ea69544fdb03b1ce43642",
      "tree": "0e7d9a334dc9f46245ef630986c06c6229508c89",
      "parents": [
        "5db3e926713d6fba0e9d0348d29b58bb8ec29367"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Thu Aug 30 23:12:37 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Thu Aug 30 23:12:37 2007 +0000"
      },
      "message": "Thrift: Generate fingerprints for non-structs.\n\nSummary:\nThis is going to be needed to support TDenseProtocol.\n\nReviewed By: mcslee\n\nTest Plan:\nClean build of Thrift.\nRan if/regen.sh.  No change to generated C++ or Python.\ngdb thrift -cpp ThriftTest.thrift.  Made sure they were being generated.\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665237 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "5db3e926713d6fba0e9d0348d29b58bb8ec29367",
      "tree": "a24e82eff20d5af03d9b45174c72e3a26a346124",
      "parents": [
        "792df0bf78d061ede0af7f12bf92c72254ed12d8"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Thu Aug 30 23:07:45 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Thu Aug 30 23:07:45 2007 +0000"
      },
      "message": "Thrift: Handle absence of fastbinary.so\n\nSummary:\n- Wrap import of fastbinary in a try/catch, setting it to None if it fails.\n- Don\u0027t try to fastbinary.encode/decode if fastbinary is None.\n- Always generate thrift_spec, even if it is None.\n- Don\u0027t try to fastbinary.encode/decode if thrift_spec is None.\n\nReviewed By: mcslee\n\nTest Plan:\ntest/py/Test{Client,Server}.py\nManually delete my fastbinary.so, they worked fine.\nChanged them to use Accelerated protocol.  They still worked fine because\nthe test falls through to the normal generated code.\nInstalled fastbinary.so, everything worked fine (eventually).\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665236 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "c6fc329a4040f9945576bc7007ab8df44d112635",
      "tree": "311a7018393e215f97320df6211dae227feb1afd",
      "parents": [
        "aea19c9d65a7a70770fbcc25a81579575382c40d"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Thu Aug 30 00:58:43 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Thu Aug 30 00:58:43 2007 +0000"
      },
      "message": "Thrift: Support for explicit Python module declaration.\n\nSummary:\nPreviously, Thrift used the name of the .thrift file as the python module name.\nThis wasn\u0027t very flexible.  Now the python module can be explicitly declared.\nAlso, there was no need for t_py_generator to inherit from t_oop_generator.\n\nReviewed By: mcslee\n\nTest Plan:\ncd test/py/explicit_module\n./runtest.sh\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665234 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "6868eae42a889f002da365bd1bf538dae748ace9",
      "tree": "d8a32d3e95870fec1299f61695e9cbc6cd812c0c",
      "parents": [
        "a0f8bdca952a521d27ec848026dc7631fbb8abac"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Aug 29 04:36:53 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Aug 29 04:36:53 2007 +0000"
      },
      "message": "Autoconf fixes\n\nSummary: Need these after some recent changes to rebuild with Engeleman\u0027s fix\n\nReviewed By: aditya\n\nTest Plan: Build compiler\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665232 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "a0f8bdca952a521d27ec848026dc7631fbb8abac",
      "tree": "c36bd1182025181e7fa57a818b98b3a8ce5dbfcf",
      "parents": [
        "1ac120f1598a5bc8c9077448a3191c440be82b1d"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Aug 29 04:36:28 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Aug 29 04:36:28 2007 +0000"
      },
      "message": "Merge patch from Dan Engeleman for Java utility constructors\n\nSummary: As well as a packaging fix\n\nReviewed By: aditya\n\nTest Plan: Generate test files, look at Java obj constructors\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665231 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "1746e30c913d76681ad5ec788cd5ab82f67ecbd0",
      "tree": "ec2e6539dc4fe5123b2d347b9836542816b49a3f",
      "parents": [
        "dd7796fd8b99d41f09660cbad22826f5573f15fd"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Aug 28 22:18:22 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Aug 28 22:18:22 2007 +0000"
      },
      "message": "Thrift: Fix a compile error.\n\nSummary:\nThe fingerprint code was generating invalid C++ code.\n\nBlame Rev: 57192\n\nReviewed By: mcslee\n\nTest Plan:\nRecompiled thrift.\nThrifted DebugProtoTest with new compiler.\nCompiled and rand DebugProtoTest.\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665229 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "dd7796fd8b99d41f09660cbad22826f5573f15fd",
      "tree": "c5d83b9c88ef1b10e9e21f8713ec4a3337d1fc1a",
      "parents": [
        "18bf22d5ba896026b5b2ba500f84b003e343c3b1"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Aug 28 21:09:06 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Aug 28 21:09:06 2007 +0000"
      },
      "message": "Thrift: Fix untriggerable bug.\n\nReviewed By: mcslee\n\nTest Plan: Compiled the Thrift compiler.\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665228 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "18bf22d5ba896026b5b2ba500f84b003e343c3b1",
      "tree": "1207865ba6c735462f5da4b2f531f061767bbcfa",
      "parents": [
        "2375312fa05e1560f0fc83c642dcb2535d9d2eba"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Aug 28 20:49:17 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Aug 28 20:49:17 2007 +0000"
      },
      "message": "Thrift: Generate structural fingerprints for thrift structs.\n\nSummary:\nWe are going to write a dense protocol soon that eliminates some metadata.\nTo prevent version conflicts, we want each structure to have a\nstructural fingerprint that will change whenever the struct changes\nin a way that will affect the dense protocol.\nThis change computes those fingerprints and puts them in\nthe generated C++ code.\n\nReviewed By: aditya, mcslee\n\nTest Plan:\nRecompiled thrift.\nThrifted DebugProtoTest with old and new compilers.\nCompared output.\nAlso ran thrift with those \"cout\"s uncommented,\nexamined the fingerprint material,\nand verified the hashes.\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665227 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "2375312fa05e1560f0fc83c642dcb2535d9d2eba",
      "tree": "c97b21fea0603a3e3f36a596de4597f034a946c9",
      "parents": [
        "5ec8e26d25dc459041e7c31aa2c65eff4f70ad4e"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Mon Aug 27 19:57:34 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Mon Aug 27 19:57:34 2007 +0000"
      },
      "message": "Thrift: Limited Reflection for C++.\n\nSummary:\nThe Thrift compiler now generates static methods for every service to generate\na reflection of the methods provided by the service.  This reflection is fairly\nlimited, but should be enough for what we want to do with SMC.\n\nReviewed By: mcslee\n\nTest Plan: test/ReflectionTest.cpp\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665226 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "382fc3043cba33fea1a919e4e6bfeac0cb9c22aa",
      "tree": "25fbc629b633f81f618842d86c4f0f6c44c83a12",
      "parents": [
        "40c6ac574c0090900736da744ef8cb72340b6c07"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Sat Aug 25 18:01:30 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Sat Aug 25 18:01:30 2007 +0000"
      },
      "message": "Thrift: Native-code Binary Protocol encoder.\n\nSummary:\nMerging a patch from Ben Maurer.\nThis adds a python extension (i.e., a C module) that\nencodes Python thrift structs into the standard binary protocol\nmuch faster than our generated Python code.\n\nAlso added by-value equality comparison to thrift structs\n(to help with testing).\n\nCleaned up some trailing whitespace too.\n\nReviewed By: mcslee, dreiss\n\nTest Plan:\nRecompiled Thrift.\nThrifted a bunch of IDLs and compared the generated Python output.\nLooked at the extension module a lot.\ntest/FastBinaryTest.py\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665224 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "cf3c124f29346f26be9d707ef11d30563a45f43b",
      "tree": "3a859d82e3b04e610cd41cfc5ab276d505b750aa",
      "parents": [
        "e087a305857d04e2772e928b6df4d83fbab5b8d5"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Thu Aug 23 23:19:56 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Thu Aug 23 23:19:56 2007 +0000"
      },
      "message": "Trivial automake fix\n\nSummary: Apparently needed to fix some install stuff\n\nReviewed By: mcslee\n\nTest Plan: Build thrift compiler\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665221 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "e087a305857d04e2772e928b6df4d83fbab5b8d5",
      "tree": "00d8f22fedc2c232173bbed068d7e56b7300b99f",
      "parents": [
        "a41c8705db8f09227e22c04bbb98ca046c819ca9"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Thu Aug 23 21:43:25 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Thu Aug 23 21:43:25 2007 +0000"
      },
      "message": "Thrift: Make use of get_true_type.\n\nSummary:\nWe added a helper function for the generators: get_true_type,\nwhich finds the actual type behind a series of typedefs\n(though the compiler only supports one layer of typedefs now).\nThis change uses it everywhere we used to have that loop.\n(It was a lot of places.)\n\nReviewed By: mcslee\n\nTest Plan: test/ManyTypedefs.thrift\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665220 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "27ed6ec1f9ca50f2447b80dfeeabfd54da35f4db",
      "tree": "a1881b675e11d0b6bcb2ab2ef89c96dc7ccc85f9",
      "parents": [
        "1b65b724eb7ed096c9204683ac5f441d7d7e9c02"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Thu Aug 16 01:26:31 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Thu Aug 16 01:26:31 2007 +0000"
      },
      "message": "Merging Jake Luciani\u0027s latest perl code gen fixes\n\nReviewed By: dreiss\n\nTest Plan: Watch for any weirdness on Thrift code gen, perl specific\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665206 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "1b65b724eb7ed096c9204683ac5f441d7d7e9c02",
      "tree": "041cbb30d13e0f6932771b22065e0f2f1ec156a5",
      "parents": [
        "5362e70f8f3c58f0f1fc67ea0a8fc299c554e1bc"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Thu Aug 16 00:27:21 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Thu Aug 16 00:27:21 2007 +0000"
      },
      "message": "Generate a -u option for Python Service-remote CLI utility\n\nSummary: In case you want to hit an HTTP Thrift service\n\nReviewed By: peter\n\nTest Plan: ServiceClient-remote -u http://dope.vip.facebook.com/intern/smc/smcserver.php getTierByName test\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665205 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "3429b6a9a046bbc4bd6e476467aca89ce7317cc2",
      "tree": "a2cd5155f67070a001dc4ffc7498566735b5ec70",
      "parents": [
        "8320a92d9b07f8dc5f7d9f0517a28bec64ce20e2"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Wed Aug 15 00:55:41 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Wed Aug 15 00:55:41 2007 +0000"
      },
      "message": "Thrift: Add a useful helper function (in compiler).\n\nSummary:\nAdd a function to t_generator to traverse the typedef chain.\n\nReviewed By: mcslee\n\nTest Plan:\nRebuilt thrift.\nRe-thrifted ThriftTest.thrift.\nSaw that the output was unchanged.\n\nRevert Plan: ok\n\nNotes:\nConverting all of the generators to use this will happen later.\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665203 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "8320a92d9b07f8dc5f7d9f0517a28bec64ce20e2",
      "tree": "6003fc152953dc859d076eb7f57ffacdfd0b289a",
      "parents": [
        "cbd4bacc307c0103aa07d5bbc2104e14b8a29aac"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Aug 14 19:59:26 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Aug 14 19:59:26 2007 +0000"
      },
      "message": "Thrift: Merging external patch.\n\nSummary:\nMerging a patch from Andy Lutomirsky.\n- Allow fields to be marked \"required\" or \"optional\" (only affects C++).\n- Thrift structs now have operator \u003d\u003d.\n\nReviewed By: mcslee\n\nTest Plan: test/OptionalRequiredTest.cpp\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665202 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "cbd4bacc307c0103aa07d5bbc2104e14b8a29aac",
      "tree": "dc310c28edd3010778afb33995a0884e4e5da651",
      "parents": [
        "cdffe260f1c8d21dbd3b6904e6ca596c7f4c6b06"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Aug 14 17:12:33 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Aug 14 17:12:33 2007 +0000"
      },
      "message": "Thrift: docstring revamp step 2.\n\nSummary:\nIt was a bad idea to let doxygen comments become a part of the parse tree.\nWe now get them a totally different way.  The lexer stashes the docsting\ncontents in a global, and the parser actions (not the rules) pull it out.\nThis should prevent doxygen comments from ever causing parse errors.\n\nBlame Rev: 52678, 52732\n\nReviewed By: mcslee\n\nTest Plan:\nRecompiled thrift.\nThrifted a bunch of files and saw no parse errors (or C++ compile errors).\nThrifted DocTest.thrift with dump_docs on.\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665201 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "cdffe260f1c8d21dbd3b6904e6ca596c7f4c6b06",
      "tree": "ba0b9a4ec54efdaf2fb802d3899e53949e2e135e",
      "parents": [
        "fa0c85737036e53728aab46dcda242d113f926be"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Aug 14 17:12:31 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Tue Aug 14 17:12:31 2007 +0000"
      },
      "message": "Thrift: docstring revamp step 1.\n\nSummary:\nAllow constants to be documented.\nNow any \"Definition\" can be documented, so we can move the docstring stuff\nup to a a higher node in the parse tree.\n\nReviewed By: mcslee\n\nTest Plan:\nRecompiled thrift.\nChecked out DocTest.thrift and a few other thrifts.\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665200 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "7e2cda13166e5cc27f37c55647b4070f5df178a5",
      "tree": "c168d2e319515d1eb10921632963d61a3cc3f3a3",
      "parents": [
        "7897c927b23554daf862ac7c5eca1d4f369a292d"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Thu Aug 09 03:39:18 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Thu Aug 09 03:39:18 2007 +0000"
      },
      "message": "Fix C++ enum deserialization\n\nSummary: Because we\u0027re all about strict aliasing rules in the g++, m\u0027holmbie.\n\nReviewed By: aditya\n\nTest Plan: Should be NO compiler warnings about (enum\u0026) -\u003e (int32_t\u0026) typecasting\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665196 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "202111d2e9cb351ac77929f573569625a3937308",
      "tree": "340bdf6d0ccf35f67f9abc58cf25a50bf2a82cba",
      "parents": [
        "6f226558d605ab7525d5410a5f4c2feb09594081"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Mon Aug 06 20:38:18 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Mon Aug 06 20:38:18 2007 +0000"
      },
      "message": "Thrift: More constant enums.\n\nSummary:\nMake enum constants as structure defaults work.\nMake enum constants as constant map keys work.\nUn-break the generated skeleton servers.\n\nReviewed By: mcslee\n\nTest Plan:\ncd test\n../compiler/cpp/thrift -cpp ConstantsDemo.thrift\ng++ -I../lib/cpp/src -c gen-cpp/*.cpp\nAlso compared the generated output to the old generated output.\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665193 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "5b3a8f7a8b1f428ef103f5e9a9de13bcae1618c4",
      "tree": "9ca57de640c225b99c81c2ac0695bbe12d803c82",
      "parents": [
        "99e2c07815c927f319c19e01f9a0d3a2f34b807c"
      ],
      "author": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Wed Aug 01 22:27:37 2007 +0000"
      },
      "committer": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Wed Aug 01 22:27:37 2007 +0000"
      },
      "message": "[thrift] improved error logging and handling for Erlang bindings\n\nSummary:\n * custom, extensible error logger -- show only relevant stuff\n * clean up of errors in developer-supplied handler module\n   now gives sane error messages and doesn\u0027t crash whole server\n   (introduces tApplicationException_HANDLER_ERROR)\n * more precise catch in tErlProcessor (exits gracefully only if\n   transport closes)\n\nReviewed By: iproctor\n\nTest Plan: tutorial works\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665186 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "c2532a9ac4168778c581cff235943eb270df6dbc",
      "tree": "777a9eb163e7d4aca880a803e86a404ce995f55f",
      "parents": [
        "1ac05803788fb15bcf16e48cdd53b550b3bc5515"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Mon Jul 30 23:46:11 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Mon Jul 30 23:46:11 2007 +0000"
      },
      "message": "Thrift: Allow whole program doctext.\n\nSummary:\nAllow docstrings at the top of the program.\n\nBlame Rev: 52687\n\nReviewed By: mcslee\n\nTest Plan:\n../compiler/cpp/thrift -cpp DocTest.thrift\n(with dump_docs on)\nand looked at the output.\nGenerated C++ is identical to installed thrift.\n\nRevert Plan: Do 52687 also.\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665183 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "1ac05803788fb15bcf16e48cdd53b550b3bc5515",
      "tree": "e504753a17c9ac829b81e4f1bb58c2ec9b93dd8e",
      "parents": [
        "d0767c579673c868d1ae15e5979a9301ac1347d7"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Mon Jul 30 22:00:27 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Mon Jul 30 22:00:27 2007 +0000"
      },
      "message": "Thrift: Change docstring syntax.\n\nSummary:\nThe old docstring syntax collided with the syntax for list constants.\nThe new syntax looks a lot like doxygent comments.\n\nTrac Bug: #4664\n\nBlame Rev: 32392\n\nReviewed By: mcslee\n\nTest Plan:\n../compiler/cpp/thrift -cpp DocTest.thrift\n(with dump_docs on)\nand looked at the output.\nGenerated C++ is identical to installed thrift.\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665182 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "d0767c579673c868d1ae15e5979a9301ac1347d7",
      "tree": "f877b2b08a1778f3b885e03fa6d2b158501ad381",
      "parents": [
        "a46438e11d506433ec7c995ad7d11003ca7d87de"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Jul 27 22:14:41 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Jul 27 22:14:41 2007 +0000"
      },
      "message": "Fix Thrift compiler to support reuse of enums and constants in later constants\n\nSummary: So for example, you can make a constant map of enum values to string identifiers.\n\nReviewed By: dreiss\n\nTest Plan: ConstantsDemo.thrift in the test folder\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665181 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "877237abcf93e7bd7bc9a7d095d3a850c309817e",
      "tree": "4081e58b007adf44a76964180b9f521edb0028bf",
      "parents": [
        "96d2388ade7af4f23d2c95b92496b79ec0321133"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Fri Jul 27 00:40:19 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Fri Jul 27 00:40:19 2007 +0000"
      },
      "message": "Thrift: Catch what you throw.\n\nSummary:\nCatch an exception that was being thrown,\nand print out the error message.\n\nTrac Bug: #\n\nBlame Rev:\n\nReviewed By: mcslee\n\nTest Plan:\nRecompiled Thrift.\nRan it on a broken .thrift that throws one of these exceptions.\n\nRevert Plan: ok\n\nNotes:\n\nEImportant:\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665177 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "96d2388ade7af4f23d2c95b92496b79ec0321133",
      "tree": "fb9840256a746c1b3889b25ddd8131955265ec60",
      "parents": [
        "5f5fdf3a20f2459eabbee771e6eff4159c6f2bca"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Thu Jul 26 21:10:32 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Thu Jul 26 21:10:32 2007 +0000"
      },
      "message": "Thrift: Cleaned up whitespace.\n\nSummary:\nReplaced a lot of tabs with spaces in the thrift codebase.\nRemoved a lot of trailing whitespace from thrift-generated c++.\nAdded a few things to cleanup.sh.\n\nTrac Bug: #\n\nBlame Rev:\n\nReviewed By: mcslee\n\nTest Plan:\nRecompiled thrift.\nRe-thrifted some test .thrifts.\nCompiled the genrated c++.\nRan cleanup.sh.\n\nRevert Plan: ok\n\nNotes:\n\nEImportant:\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665176 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "5f5fdf3a20f2459eabbee771e6eff4159c6f2bca",
      "tree": "eadf7c0b3852cb33956848a91f1913a8d11e921e",
      "parents": [
        "ff8eb9288d57845319b65f1bfd3d4a13cecc3217"
      ],
      "author": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Wed Jul 25 22:41:00 2007 +0000"
      },
      "committer": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Wed Jul 25 22:41:00 2007 +0000"
      },
      "message": "[thrift] maps, lists, sets, and service inheritance for Erlang\n\nReviewed by: cpiro\n\nTest Plan: tested wit tutorial/tutorial.thrift\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665175 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "ff8eb9288d57845319b65f1bfd3d4a13cecc3217",
      "tree": "c862c66a2c1b816151d054c8f1bc0b349bc2d87e",
      "parents": [
        "5ced286cec268191c72125440ac911582f84a6b9"
      ],
      "author": {
        "name": "iproctor",
        "email": "dev-null@apache.org",
        "time": "Wed Jul 25 19:06:13 2007 +0000"
      },
      "committer": {
        "name": "iproctor",
        "email": "dev-null@apache.org",
        "time": "Wed Jul 25 19:06:13 2007 +0000"
      },
      "message": "Thrift: Haskell library and codegen\n\nSummary: It\u0027s thrift for haskell. The codegen is complete. The library has binary protocol, io channel transport, and a threaded server.\nReviewed by: mcslee\nTest plan: Yes\nRevert plan: yes\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665174 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "5ced286cec268191c72125440ac911582f84a6b9",
      "tree": "bb6ee4e735654f194079ce749373fd9f270a2e3e",
      "parents": [
        "e168d5e12707fa4311b44e38eb769083b4a8c964"
      ],
      "author": {
        "name": "iproctor",
        "email": "dev-null@apache.org",
        "time": "Wed Jul 25 18:50:50 2007 +0000"
      },
      "committer": {
        "name": "iproctor",
        "email": "dev-null@apache.org",
        "time": "Wed Jul 25 18:50:50 2007 +0000"
      },
      "message": "Thrift: Ruby cogeden not creating exception fields properly.\n\nSummary: Generated ruby code did not give exception struct fields a class. This broke the result structs for all functions that threw exceptions.\nReviewed by: mcslee\nTest plan: Yes\nRevert plan: yes\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665173 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "873726035af15c467770ca56a99f90f3f0ffd5a6",
      "tree": "232d60f36088f746012bcbfda380aea9a10e5f30",
      "parents": [
        "ae1f10f8f296f0e19229994e2ef58569754c66f6"
      ],
      "author": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Tue Jul 24 06:20:47 2007 +0000"
      },
      "committer": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Tue Jul 24 06:20:47 2007 +0000"
      },
      "message": "[thrift] stupid case bug in Erlang codegen\n\nSummary: stop generating files/modules in titlecase\n\nNotes: somehow we access service_name_ before the constructor downcases it ... burnsauce\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665170 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "ae1f10f8f296f0e19229994e2ef58569754c66f6",
      "tree": "8b6df35fe15ea3c27e3a6ab14c13f8140bf338c2",
      "parents": [
        "e9cd65557916236ff4e29bcffdd33751190d55c9"
      ],
      "author": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Tue Jul 24 04:30:15 2007 +0000"
      },
      "committer": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Tue Jul 24 04:30:15 2007 +0000"
      },
      "message": "[thrift] misc. Erlang codegen improvements, cleanups\n\nSummary:\n * const/enum namespacing\n * better formatting, less debugging comments in both source and gen-erl/\n\nNotes:\n * in preparation for iproctor\u0027s whiz-bang map/list/set support\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665169 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "8639e1056d6db52d53ff579f0f8d4728b702740e",
      "tree": "ec16cf503352a7ab72b520c7a738a757b5b6ab72",
      "parents": [
        "094823a46c4dd2449ec4ec9458b8358f8abd3dbe"
      ],
      "author": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Sat Jul 21 00:23:32 2007 +0000"
      },
      "committer": {
        "name": "David Reiss",
        "email": "dreiss@apache.org",
        "time": "Sat Jul 21 00:23:32 2007 +0000"
      },
      "message": "Thrift: add an indent to generated cpp files.\n\nSummary:\nSomeone forgot an indent after a newline.  Added.\n\nTrac Bug: #\n\nBlame Rev:\n\nReviewed By: mcslee\n\nTest Plan:\nCompiled the compiler, compiled a .thrift, and compared the output\nwith diff -u and diff -w -u.\n\nRevert Plan: svn revert\n\nNotes:\n\nEImportant:\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665165 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "094823a46c4dd2449ec4ec9458b8358f8abd3dbe",
      "tree": "4daa35504fc18e2bac4e8e3ffd38024f8240d71f",
      "parents": [
        "9a41a0c51ea322c3950ddc0cbbcc04fa3f135f1c"
      ],
      "author": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Wed Jul 18 00:26:12 2007 +0000"
      },
      "committer": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Wed Jul 18 00:26:12 2007 +0000"
      },
      "message": "[thrift] highly concurrent Erlang goodness\n\nSummary:\n * shim to use object-oriented code as gen_servers\n * high(er) performance Erlang-style server and transport\n * sane packaging based on otp-base, i.e. Makefiles and real structure\n\nTest Plan: tutorial server offers the same (subset of) functionality as previous version\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665164 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "9a41a0c51ea322c3950ddc0cbbcc04fa3f135f1c",
      "tree": "ffe131300b57da917a3ac780c8b98a81ae48edba",
      "parents": [
        "a36f5db4b323adbcd13cd298ab73eee2be6200f2"
      ],
      "author": {
        "name": "iproctor",
        "email": "dev-null@apache.org",
        "time": "Mon Jul 16 21:59:24 2007 +0000"
      },
      "committer": {
        "name": "iproctor",
        "email": "dev-null@apache.org",
        "time": "Mon Jul 16 21:59:24 2007 +0000"
      },
      "message": "Thrift: OCaml library and generator\n\nSummary: Added (minimal) library and code generator for OCaml.\nReviewed by: mcslee\nTest plan: Test client and server (included).\nRevert plan: yes\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665163 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "b1ad0141d4df4b4488882880a6d9d4aa84f3b178",
      "tree": "f040acb81dd97d485ec92b88bd1e2a7c6e8206ee",
      "parents": [
        "8b82fb7a757f54659c88f294a217613a9fea59ca"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Jul 10 16:48:37 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Jul 10 16:48:37 2007 +0000"
      },
      "message": "Add typecasting to REST parameters in generated Thrift PHP code\n\nTrac Bug: #4360\n\nReviewed By: ari\n\nTest Plan: Honky tonk, view the new generated api_10/x packages\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665161 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "58dfb4fbe82c346814c2e4f33b6045468bfd68c6",
      "tree": "21adc31fd0162f470e9fb52f8836364de35b867d",
      "parents": [
        "756b1d1b071157677980f6b5735b7e8a3ac44419"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Jul 06 02:45:25 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Jul 06 02:45:25 2007 +0000"
      },
      "message": "Lots of Ruby code generation improvements\n\nSummary: Submitted by Kevin Clark, Ruby guru from Powerset\n\nReviewed By: mcslee\n\nTest Plan: He updated the tests in trunk/test/rb/\n\nNotes: The code is now officially \"ruby-ish\" and idiomatic\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665151 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "756b1d1b071157677980f6b5735b7e8a3ac44419",
      "tree": "26c05d5274a47ccf7e4114e3012fa7fb910db757",
      "parents": [
        "7ef673345bcac6284067280a1e8e1c49fbc2c9b9"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Jul 06 00:30:21 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Jul 06 00:30:21 2007 +0000"
      },
      "message": "Make -rest an optional param to the Thrift PHP compiler\n\nSummary: You rarely need the generated REST stuff\n\nReviewed By: jwang\n\nTest Plan: Gen falcon code without REST part\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665150 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "2f5afceeaa2050ce3cca477288729c30622a1d38",
      "tree": "78896723e2a5c2177eeacc539900b588e9c1628a",
      "parents": [
        "d795b9d3fdd78c9ec22e8487af9b52087853c085"
      ],
      "author": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Fri Jun 29 07:17:33 2007 +0000"
      },
      "committer": {
        "name": "Christopher Piro",
        "email": "cpiro@apache.org",
        "time": "Fri Jun 29 07:17:33 2007 +0000"
      },
      "message": "[thrift] preliminary Erlang support (initial import)\n\nSummary:\n * missing {list,map,set}s, inheritance is spotty\n * loose source code, plus everything is one process (application / gen_server behavior is forthcoming)\n * codegen is a mess, need t_fp_generator\n\nTest Plan:\n * codegen invoked without -erl generates identical code for test/\n * calculatorHandler plus \u0027thrift -erl -r tutorial.thrift\u0027 more or less works\n\nRevert Plan: ok\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665146 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "447d7d236590db3dad60dc10eed72274a5b66edf",
      "tree": "a4cb37c1e51169843d883098f6792f96d62f6602",
      "parents": [
        "1d2ead34a23602a1dd248648204bbbeea356bc0c"
      ],
      "author": {
        "name": "eletuchy",
        "email": "dev-null@apache.org",
        "time": "Wed Jun 13 04:24:11 2007 +0000"
      },
      "committer": {
        "name": "eletuchy",
        "email": "dev-null@apache.org",
        "time": "Wed Jun 13 04:24:11 2007 +0000"
      },
      "message": "[thrift] small fixes to java generator\n\nSummary: - size generated collections correctly\n         - StringBuilder vs StringBuffer\n\nReviewed By: mcslee\n\nTest Plan: built TestThrift.thrift; it compiled, yay\n\nRevert Plan: sure\n\nNotes:\n\nEImportant:\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665134 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "e9ce01cf402fca4c275554847c85aff9fff17dc6",
      "tree": "f66af402f88359231f1a7ebecf486268c85af3f8",
      "parents": [
        "254ce20e51f61f919c8ff903ad66a72f0e133c99"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed May 16 02:29:53 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed May 16 02:29:53 2007 +0000"
      },
      "message": "Apply thrift license to all files in compiler\n\nSummary: Forgot to do this last time around, only got the libs\n\nReviewed By: no code in here, just comments\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665113 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "2c44d2047ee4b34ab995cd08c931cb51835ae73d",
      "tree": "b97b59a36cfd80499157bdc7c6124f024a371309",
      "parents": [
        "8ca2d0910927a781b6181e7177a404e37c09d82d"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed May 16 02:18:07 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed May 16 02:18:07 2007 +0000"
      },
      "message": "Perl generator for Thrift compiler\n\nSummary: Submitted by Jake Luciani\n\nReviewed By: mcslee\n\nTest Plan: Who likes perl? Not me. Test files to be checked in soon.\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665111 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "e9a1edc75df35ec82a22fee5084039ac8d6c2bc2",
      "tree": "d5687b0248e2a030444fdd13a5ce36fba2bff30a",
      "parents": [
        "67bfaf27826510e9e1c4b07307633065722879e4"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Thu May 03 01:30:18 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Thu May 03 01:30:18 2007 +0000"
      },
      "message": "Make sure isset fields of java generated objects is public\n\nReviewed By: rob mccool from yahoo\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665103 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "67bfaf27826510e9e1c4b07307633065722879e4",
      "tree": "4edd0158d09fde2cea61feea298255bf0ee769ee",
      "parents": [
        "4fd2dbaf0698662ad46bdb4b0a1507f325a0b051"
      ],
      "author": {
        "name": "peter",
        "email": "dev-null@apache.org",
        "time": "Tue May 01 04:03:22 2007 +0000"
      },
      "committer": {
        "name": "peter",
        "email": "dev-null@apache.org",
        "time": "Tue May 01 04:03:22 2007 +0000"
      },
      "message": "fixing a typo\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665102 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "8d725a27385fb33bce8fe50fff77f763617b49d4",
      "tree": "c8c5dbcaf34b79162f38c875cf9f9558dadfc7de",
      "parents": [
        "4f261c5b23d2eb3b01da4b894a1d5eabc48f6817"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Apr 13 01:57:12 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Fri Apr 13 01:57:12 2007 +0000"
      },
      "message": "Add explicit binary type to Thrift\n\nSummary: Identical to string in all languages except Java. Java String is NOT binary-safe, so we need to use raw byte[] in that case. PHP/RUBY/Python strings are all binary safe, and C++ std::string works fine and manages memory for you so it\u0027s the safest route. Java just needs this tweak.\n\nReviewed By: aditya\n\nTest Plan: Use \"binary\" as a type instead of String.\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665099 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "b86c4b251e99dde627fdbe74b453cc6bf885d783",
      "tree": "ba892dfebbfbe259f7385fa4a01a07aebf15c119",
      "parents": [
        "ec3f32009b0c9b3f2a5004e88752e7f5e9ec0598"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Apr 10 06:44:53 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Apr 10 06:44:53 2007 +0000"
      },
      "message": "Yeeeeeeeeahhh\n\nSummary: Missing that $ in the vairable\n\nReviewed By: php\n\nTest Plan: you need that!\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665092 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "ec3f32009b0c9b3f2a5004e88752e7f5e9ec0598",
      "tree": "8d89aa8df29683f89c89e018470ee3fe362a0cd3",
      "parents": [
        "cb39f08ceda2bedf5b80c3520590aec8917edcbf"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Apr 10 06:15:25 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Apr 10 06:15:25 2007 +0000"
      },
      "message": "In php generate array of enum values to string names\n\nSummary: for peter k\n\nReviewed By: peter\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665091 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "a7d6c3c142594b3ba2eb294c96b9ee3e48f20b75",
      "tree": "badd20dc1befa0b3ca77a0d3b287d088dd41f656",
      "parents": [
        "6632e0b041e9557105f23beba0a8b09621aa1343"
      ],
      "author": {
        "name": "Martin Kraemer",
        "email": "martin@apache.org",
        "time": "Fri Mar 16 02:03:32 2007 +0000"
      },
      "committer": {
        "name": "Martin Kraemer",
        "email": "martin@apache.org",
        "time": "Fri Mar 16 02:03:32 2007 +0000"
      },
      "message": "Thrift: fix error with handling TApplicationException\n\nSummary:\nThe php recv functions for method invocations didn\u0027t pass a proper input object into the handler for reading an application exception. This caused graceful thrift failures to not work gracefully in PHP.\n\nReviewed By: Slee\n\nTest Plan: Tested by invoking from a thrift client a function not defined on a thrift server.  Should response with Invalid method name\n\nRevert Plan: revertible\n\nNotes:\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665061 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "6632e0b041e9557105f23beba0a8b09621aa1343",
      "tree": "03d03edba3fcbbfb2f48d38dd3ce7f4cf52ebafe",
      "parents": [
        "8109757e6cdf12e08b22dd0f563e1624a60fe0c9"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Mar 14 09:08:38 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Mar 14 09:08:38 2007 +0000"
      },
      "message": "Constants lowercase in java true/false\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665060 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "8109757e6cdf12e08b22dd0f563e1624a60fe0c9",
      "tree": "55ad94311223f1a7d9cfbd6b58406f2a3971038e",
      "parents": [
        "7679196f1cb6a4b919917aeab065ca86b9b8ad91"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Mar 14 03:07:00 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Mar 14 03:07:00 2007 +0000"
      },
      "message": "Generate toString() convenience method for Thrift java structs\n\nReviewed By: biren\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665059 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "7679196f1cb6a4b919917aeab065ca86b9b8ad91",
      "tree": "432f2d4425bcc5e627261ef459cf34b6b32ba57e",
      "parents": [
        "0c2dff3f5a69726e98636c091454b9b5e3ab8898"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Mar 14 02:47:35 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Mar 14 02:47:35 2007 +0000"
      },
      "message": "Various Thrift fixes, including Application Exception support in Ruby, better errror messages across languages, etc.\n\nReviewed By: thrift\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665058 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "227ac2c50e11f3d70ca13d811b044fb9e2a528cc",
      "tree": "926f5bd2a40e066eb524a3e51be6d811390b37da",
      "parents": [
        "b6616fc42dd10ecf0bf4cc3a3010dae1b70d9063"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Mar 07 05:46:50 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Mar 07 05:46:50 2007 +0000"
      },
      "message": "Ruby code gen fixes and some README improvements\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665053 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "3303f360818aa39fc197f1f73ce3f7d578fbc2b1",
      "tree": "fcc10f8cf612b573293abbf6da51e8cf844b5fcc",
      "parents": [
        "c2c82c97f40e0c0eb52db001c28ce1acae8fa69e"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Mar 05 20:09:37 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Mar 05 20:09:37 2007 +0000"
      },
      "message": "Thrift CPP threading fixes\n\nReviewed By: karl\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665045 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "c2c82c97f40e0c0eb52db001c28ce1acae8fa69e",
      "tree": "caa7130efaaadf1a35c92f242c253c31c632194d",
      "parents": [
        "4841b2d51f8472ab4ce476790f38b525b098f22e"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Mar 05 05:45:51 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Mon Mar 05 05:45:51 2007 +0000"
      },
      "message": "Move helper structure declarations into .h file\n\nReviewed By: aditya\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665044 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "57cc25e2a348bd8fe844b39321207226181e62c3",
      "tree": "9c2e7ea4a3ed88b57b015321c4c8a266a9f4c12b",
      "parents": [
        "7a49888fc6990ec7485e3804a1958db7cbe70b07"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Feb 28 21:43:54 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Feb 28 21:43:54 2007 +0000"
      },
      "message": "Some Thrift documentation cleanups\n\nSummary: Getting ready to hand this over to powerset, just want to have the right licenses in place and such first.\n\nReviewed By: thrift\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665029 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "7a49888fc6990ec7485e3804a1958db7cbe70b07",
      "tree": "182374435c6f91e8a642f22d8f8b27d9d2383d13",
      "parents": [
        "0af62d181c30a2758191055b32baeb5156ceef57"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Feb 27 22:11:39 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Feb 27 22:11:39 2007 +0000"
      },
      "message": "TApplicationException handling in PHP generated thrift code\n\nReviewed By: php\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665028 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "b0060b0401b5bcf85aa1523817793956ef5a5219",
      "tree": "5621e168061bd2a627235f1ef8a7276fc1f956f7",
      "parents": [
        "e129a2db0c2f05a209be1e514214aa6b83ba1d91"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Feb 21 05:37:50 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Feb 21 05:37:50 2007 +0000"
      },
      "message": "Python application level exceptions\n\nReviewed By: snakes\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665015 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "5e0465738e719ce87ae445843eb42324c482b7b1",
      "tree": "7f26d7d70f3ac733488273ae6ccb6a9c148f092e",
      "parents": [
        "3d42440e420ca1f6871b8ac436e05b10e4c32995"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Feb 21 04:17:55 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Feb 21 04:17:55 2007 +0000"
      },
      "message": "Thrift application exceptions in Java, code gen\n\nReviewed By: jrift\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665009 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "4c948d4b5c2480e32322e7ae7f037a7a7cbc2437",
      "tree": "710141e6400be00fbe08c5dd801603890a1be3b1",
      "parents": [
        "f3d3363c8e624b6773d173dce1f97104f6e47a9b"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Feb 21 01:40:05 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Feb 21 01:40:05 2007 +0000"
      },
      "message": "C++ Thrift server throws application exceptions for invalid message types\n\nReviewed By: aditya\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665007 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "2c2a648023209222bdc1f547eee28582e1b5be6e",
      "tree": "f2d9598061a5363bb0421ee7c7fbabcfe686d0c2",
      "parents": [
        "ecf490e30d03ecd246217457a36a45ffb597e3db"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Feb 21 00:22:33 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Feb 21 00:22:33 2007 +0000"
      },
      "message": "Gen code with /usr/bin/env python not /usr/bin/python\n\nSummary: More reliable, lets user customize which python to use\n\nReviewed By: dougb\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665005 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "ecf490e30d03ecd246217457a36a45ffb597e3db",
      "tree": "ed92a0316654366be1b24635d20991776ef30863",
      "parents": [
        "f9831084bc213937c3826485b9e8130c6f8baf0c"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Feb 21 00:05:18 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Wed Feb 21 00:05:18 2007 +0000"
      },
      "message": "Python code gen includes __init__.py and package directory\n\nReviewed By: aditya\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665004 13f79535-47bb-0310-9956-ffa450edef68\n"
    },
    {
      "commit": "98e962bf24b7c1758c01a268d494c8e9e62642fe",
      "tree": "b89c167916fdaa2745f6bcd278b312bc5ecd7345",
      "parents": [
        "0e5283914f19fc1442db9b49cda400d1b28ab164"
      ],
      "author": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Feb 20 18:44:05 2007 +0000"
      },
      "committer": {
        "name": "Mark Slee",
        "email": "mcslee@apache.org",
        "time": "Tue Feb 20 18:44:05 2007 +0000"
      },
      "message": "Generate Java code into proper source directory heirarchy\n\nReviewed By: tbr-aditya\n\n\ngit-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665001 13f79535-47bb-0310-9956-ffa450edef68\n"
    }
  ],
  "next": "afc76543cd50b44560f864bd4f871de62cea9d7b"
}
