[commits] Horde branch master updated. a0f16724d5b8976dd207abc5d39a00b2f55fec58
Chuck Hagenbuch
chuck at horde.org
Sun Apr 25 14:29:13 UTC 2010
The branch "master" has been updated.
The following is a summary of the commits.
from: ae0973987fb8f13e5e781d05d3d7e433d51edaba
a0f1672 Move the autogenerated thrift code into Horde/Thrift/thrift_root to avoid any confusion if we add any Horde-written classes in the future.
-----------------------------------------------------------------------
commit a0f16724d5b8976dd207abc5d39a00b2f55fec58
Author: Chuck Hagenbuch <chuck at bluestatedigital.com>
Date: Sun Apr 25 10:33:18 2010 -0400
Move the autogenerated thrift code into Horde/Thrift/thrift_root to avoid any confusion if we add any Horde-written classes in the future.
framework/Thrift/lib/Horde/Thrift.php | 2 +-
framework/Thrift/lib/Horde/Thrift/Thrift.php | 776 --
framework/Thrift/lib/Horde/Thrift/packages/fb303/FacebookBase.php | 82 -
.../Thrift/lib/Horde/Thrift/packages/fb303/FacebookService.php | 2572 -----
framework/Thrift/lib/Horde/Thrift/packages/fb303/fb303_types.php | 37 -
.../packages/reflection_limited/reflection_limited_types.php | 798 --
.../Thrift/lib/Horde/Thrift/packages/scribe/scribe_types.php | 117 -
framework/Thrift/lib/Horde/Thrift/protocol/TBinaryProtocol.php | 423 -
framework/Thrift/lib/Horde/Thrift/protocol/TProtocol.php | 369 -
framework/Thrift/lib/Horde/Thrift/thrift_root/Thrift.php | 776 ++
.../lib/Horde/Thrift/thrift_root/packages/fb303/FacebookBase.php | 82 +
.../Horde/Thrift/thrift_root/packages/fb303/FacebookService.php | 2572 +++++
.../lib/Horde/Thrift/thrift_root/packages/fb303/fb303_types.php | 37 +
.../packages/reflection_limited/reflection_limited_types.php | 798 ++
.../lib/Horde/Thrift/thrift_root/packages/scribe/scribe_types.php | 117 +
.../lib/Horde/Thrift/thrift_root/protocol/TBinaryProtocol.php | 423 +
.../Thrift/lib/Horde/Thrift/thrift_root/protocol/TProtocol.php | 369 +
.../lib/Horde/Thrift/thrift_root/transport/TBufferedTransport.php | 154 +
.../lib/Horde/Thrift/thrift_root/transport/TFramedTransport.php | 170 +
.../Thrift/lib/Horde/Thrift/thrift_root/transport/THttpClient.php | 193 +
.../lib/Horde/Thrift/thrift_root/transport/TMemoryBuffer.php | 75 +
.../lib/Horde/Thrift/thrift_root/transport/TNullTransport.php | 39 +
.../Thrift/lib/Horde/Thrift/thrift_root/transport/TPhpStream.php | 95 +
.../Thrift/lib/Horde/Thrift/thrift_root/transport/TSocket.php | 303 +
.../Thrift/lib/Horde/Thrift/thrift_root/transport/TSocketPool.php | 287 +
.../Thrift/lib/Horde/Thrift/thrift_root/transport/TTransport.php | 99 +
.../Thrift/lib/Horde/Thrift/transport/TBufferedTransport.php | 154 -
framework/Thrift/lib/Horde/Thrift/transport/TFramedTransport.php | 170 -
framework/Thrift/lib/Horde/Thrift/transport/THttpClient.php | 193 -
framework/Thrift/lib/Horde/Thrift/transport/TMemoryBuffer.php | 75 -
framework/Thrift/lib/Horde/Thrift/transport/TNullTransport.php | 39 -
framework/Thrift/lib/Horde/Thrift/transport/TPhpStream.php | 95 -
framework/Thrift/lib/Horde/Thrift/transport/TSocket.php | 303 -
framework/Thrift/lib/Horde/Thrift/transport/TSocketPool.php | 287 -
framework/Thrift/lib/Horde/Thrift/transport/TTransport.php | 99 -
framework/Thrift/package.xml | 86 +-
36 files changed, 6634 insertions(+), 6632 deletions(-)
delete mode 100644 framework/Thrift/lib/Horde/Thrift/Thrift.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/packages/fb303/FacebookBase.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/packages/fb303/FacebookService.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/packages/fb303/fb303_types.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/packages/reflection_limited/reflection_limited_types.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/packages/scribe/scribe_types.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/protocol/TBinaryProtocol.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/protocol/TProtocol.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/Thrift.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/packages/fb303/FacebookBase.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/packages/fb303/FacebookService.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/packages/fb303/fb303_types.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/packages/reflection_limited/reflection_limited_types.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/packages/scribe/scribe_types.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/protocol/TBinaryProtocol.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/protocol/TProtocol.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TBufferedTransport.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TFramedTransport.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/transport/THttpClient.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TMemoryBuffer.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TNullTransport.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TPhpStream.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TSocket.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TSocketPool.php
create mode 100644 framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TTransport.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/transport/TBufferedTransport.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/transport/TFramedTransport.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/transport/THttpClient.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/transport/TMemoryBuffer.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/transport/TNullTransport.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/transport/TPhpStream.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/transport/TSocket.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/transport/TSocketPool.php
delete mode 100644 framework/Thrift/lib/Horde/Thrift/transport/TTransport.php
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/Thrift.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/packages/fb303/FacebookBase.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/packages/fb303/FacebookService.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/packages/fb303/fb303_types.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/packages/reflection_limited/reflection_limited_types.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/packages/scribe/scribe_types.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/protocol/TBinaryProtocol.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/protocol/TProtocol.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/Thrift.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/packages/fb303/FacebookBase.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/packages/fb303/FacebookService.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/packages/fb303/fb303_types.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/packages/reflection_limited/reflection_limited_types.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/packages/scribe/scribe_types.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/protocol/TBinaryProtocol.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/protocol/TProtocol.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TBufferedTransport.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TFramedTransport.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/transport/THttpClient.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TMemoryBuffer.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TNullTransport.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TPhpStream.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TSocket.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TSocketPool.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/co.php/framework/Thrift/lib/Horde/Thrift/thrift_root/transport/TTransport.php?rt=horde-git&r=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/transport/TBufferedTransport.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/transport/TFramedTransport.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/transport/THttpClient.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/transport/TMemoryBuffer.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/transport/TNullTransport.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/transport/TPhpStream.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/transport/TSocket.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/transport/TSocketPool.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/lib/Horde/Thrift/transport/TTransport.php?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
http://git.horde.org/diff.php/framework/Thrift/package.xml?rt=horde-git&r1=59ec1ba08f3b21c92fb73a7181a7f6cf32d150a7&r2=a0f16724d5b8976dd207abc5d39a00b2f55fec58
More information about the commits
mailing list