[cvs] commit: framework/RDO RDO.php package.xml framework/RDO/RDO Adapter.php Exception.php Iterator.php List.php Mapper.php Model.php Query.php Storage.php framework/RDO/RDO/Storage/Adapter Pdo.php framework/RDO/RDO/Storage/Adapter/Pdo Mssql.php Mysql.php ...
Chuck Hagenbuch
chuck at horde.org
Mon Jan 29 08:41:37 PST 2007
chuck 2007-01-29 11:41:37 EST
Modified files:
RDO RDO.php package.xml
RDO/RDO List.php Mapper.php Model.php Query.php
RDO/docs TODO
RDO/docs/examples Clotho.php Task.php User.php
RDO/scripts rdo-model.php
RDO/tests TestConfiguration.php.dist
Horde_Currencies Currencies.php
Horde_RDO crud.php
Horde_RDO/Table RDO.php
Horde_Taxes Taxes.php
gulliver/lib/RDO Allowance.php City.php Cost.php
Country.php Distance.php Location.php
Manufacturer.php Mileage.php Post.php
Vehicle.php Worker.php
minerva/lib/RDO Bank.php Email.php Status.php Type.php
nyphp-2007-01 packages.tar.gz
nyphpcon-2006-06/Helpers Table.php
nyphpcon-2006-06/final/lib Property.php
nyphpcon-2006-06/v1 index.php
nyphpcon-2006-06/v2 index.php
nyphpcon-2006-06/v3 index.php
nyphpcon-2006-06/v4 dumpTable.php index.php
nyphpcon-2006-06/v5/lib Property.php
nyphpcon-2006-06/v6/lib Property.php
nyphpcon-2006-06/v7/lib Property.php
Added files:
RDO/RDO Adapter.php Exception.php Iterator.php
Removed files:
RDO/RDO Storage.php
RDO/RDO/Storage/Adapter Pdo.php
RDO/RDO/Storage/Adapter/Pdo Mssql.php Mysql.php Pgsql.php
Sqlite.php
RDO/RDO/Storage/DML Sql.php
RDO/RDO/Storage/DML/Sql Mssql.php Mysql.php Oracle.php
Pgsql.php Sqlite.php
Log:
Horde_RDO_Storage_Adapter -> Horde_RDO_Adapter
Horde_RDO_Storage_DML_Sql -> Horde_RDO_Query_Builder
$container -> $_table in Mapper classes
$container -> $table in Model classes
Revision Changes Path
1.31 +10 -76 framework/RDO/RDO.php
1.1 +106 -0 framework/RDO/RDO/Adapter.php (new)
1.18 +0 -124 framework/RDO/RDO/Attic/Storage.php (dead)
1.3 +13 -0 framework/RDO/RDO/Exception.php (new)
1.1 +51 -0 framework/RDO/RDO/Iterator.php (new)
1.17 +4 -4 framework/RDO/RDO/List.php
1.27 +51 -52 framework/RDO/RDO/Mapper.php
1.3 +3 -3 framework/RDO/RDO/Model.php
1.14 +5 -5 framework/RDO/RDO/Query.php
1.15 +0 -299 framework/RDO/RDO/Storage/Adapter/Attic/Pdo.php (dead)
1.4 +0 -72 framework/RDO/RDO/Storage/Adapter/Pdo/Attic/Mssql.php (dead)
1.12 +0 -61 framework/RDO/RDO/Storage/Adapter/Pdo/Attic/Mysql.php (dead)
1.12 +0 -65 framework/RDO/RDO/Storage/Adapter/Pdo/Attic/Pgsql.php (dead)
1.5 +0 -61 framework/RDO/RDO/Storage/Adapter/Pdo/Attic/Sqlite.php (dead)
1.5 +0 -115 framework/RDO/RDO/Storage/DML/Attic/Sql.php (dead)
1.4 +0 -60 framework/RDO/RDO/Storage/DML/Sql/Attic/Mssql.php (dead)
1.7 +0 -44 framework/RDO/RDO/Storage/DML/Sql/Attic/Mysql.php (dead)
1.2 +0 -45 framework/RDO/RDO/Storage/DML/Sql/Attic/Oracle.php (dead)
1.6 +0 -45 framework/RDO/RDO/Storage/DML/Sql/Attic/Pgsql.php (dead)
1.5 +0 -36 framework/RDO/RDO/Storage/DML/Sql/Attic/Sqlite.php (dead)
1.3 +1 -8 framework/RDO/docs/TODO
1.3 +10 -10 framework/RDO/docs/examples/Clotho.php
1.8 +5 -5 framework/RDO/docs/examples/Task.php
1.9 +5 -5 framework/RDO/docs/examples/User.php
1.24 +25 -23 framework/RDO/package.xml
1.6 +6 -6 framework/RDO/scripts/rdo-model.php
1.6 +22 -22 framework/RDO/tests/TestConfiguration.php.dist
1.9 +8 -8 incubator/Horde_Currencies/Currencies.php
1.10 +3 -3 incubator/Horde_RDO/Table/RDO.php
1.15 +6 -7 incubator/Horde_RDO/crud.php
1.5 +7 -7 incubator/Horde_Taxes/Taxes.php
1.7 +9 -8 incubator/gulliver/lib/RDO/Allowance.php
1.3 +5 -4 incubator/gulliver/lib/RDO/City.php
1.3 +5 -4 incubator/gulliver/lib/RDO/Cost.php
1.3 +4 -4 incubator/gulliver/lib/RDO/Country.php
1.7 +7 -8 incubator/gulliver/lib/RDO/Distance.php
1.7 +4 -4 incubator/gulliver/lib/RDO/Location.php
1.3 +5 -4 incubator/gulliver/lib/RDO/Manufacturer.php
1.6 +4 -4 incubator/gulliver/lib/RDO/Mileage.php
1.3 +5 -4 incubator/gulliver/lib/RDO/Post.php
1.7 +4 -4 incubator/gulliver/lib/RDO/Vehicle.php
1.3 +4 -4 incubator/gulliver/lib/RDO/Worker.php
1.8 +6 -6 incubator/minerva/lib/RDO/Bank.php
1.12 +6 -6 incubator/minerva/lib/RDO/Email.php
1.8 +6 -6 incubator/minerva/lib/RDO/Status.php
1.10 +6 -6 incubator/minerva/lib/RDO/Type.php
1.2 +106 -101 presentations/nyphp-2007-01/packages.tar.gz
1.2 +3 -3 presentations/nyphpcon-2006-06/Helpers/Table.php
1.5 +4 -4 presentations/nyphpcon-2006-06/final/lib/Property.php
1.8 +6 -6 presentations/nyphpcon-2006-06/v1/index.php
1.10 +4 -4 presentations/nyphpcon-2006-06/v2/index.php
1.10 +4 -4 presentations/nyphpcon-2006-06/v3/index.php
1.8 +4 -4 presentations/nyphpcon-2006-06/v4/dumpTable.php
1.10 +4 -4 presentations/nyphpcon-2006-06/v4/index.php
1.5 +4 -4 presentations/nyphpcon-2006-06/v5/lib/Property.php
1.5 +4 -4 presentations/nyphpcon-2006-06/v6/lib/Property.php
1.5 +4 -4 presentations/nyphpcon-2006-06/v7/lib/Property.php
Chora Links:
http://cvs.horde.org/diff.php/framework/RDO/RDO.php?r1=1.30&r2=1.31&ty=u
http://cvs.horde.org/co.php/framework/RDO/RDO/Adapter.php?r=1.1
http://cvs.horde.org/co.php/framework/RDO/RDO/Attic/Storage.php?r=1.17
http://cvs.horde.org/co.php/framework/RDO/RDO/Exception.php?r=1.3
http://cvs.horde.org/co.php/framework/RDO/RDO/Iterator.php?r=1.1
http://cvs.horde.org/diff.php/framework/RDO/RDO/List.php?r1=1.16&r2=1.17&ty=u
http://cvs.horde.org/diff.php/framework/RDO/RDO/Mapper.php?r1=1.26&r2=1.27&ty=u
http://cvs.horde.org/diff.php/framework/RDO/RDO/Model.php?r1=1.2&r2=1.3&ty=u
http://cvs.horde.org/diff.php/framework/RDO/RDO/Query.php?r1=1.13&r2=1.14&ty=u
http://cvs.horde.org/co.php/framework/RDO/RDO/Storage/Adapter/Attic/Pdo.php?r=1.14
http://cvs.horde.org/co.php/framework/RDO/RDO/Storage/Adapter/Pdo/Attic/Mssql.php?r=1.3
http://cvs.horde.org/co.php/framework/RDO/RDO/Storage/Adapter/Pdo/Attic/Mysql.php?r=1.11
http://cvs.horde.org/co.php/framework/RDO/RDO/Storage/Adapter/Pdo/Attic/Pgsql.php?r=1.11
http://cvs.horde.org/co.php/framework/RDO/RDO/Storage/Adapter/Pdo/Attic/Sqlite.php?r=1.4
http://cvs.horde.org/co.php/framework/RDO/RDO/Storage/DML/Attic/Sql.php?r=1.4
http://cvs.horde.org/co.php/framework/RDO/RDO/Storage/DML/Sql/Attic/Mssql.php?r=1.3
http://cvs.horde.org/co.php/framework/RDO/RDO/Storage/DML/Sql/Attic/Mysql.php?r=1.6
http://cvs.horde.org/co.php/framework/RDO/RDO/Storage/DML/Sql/Attic/Oracle.php?r=1.1
http://cvs.horde.org/co.php/framework/RDO/RDO/Storage/DML/Sql/Attic/Pgsql.php?r=1.5
http://cvs.horde.org/co.php/framework/RDO/RDO/Storage/DML/Sql/Attic/Sqlite.php?r=1.4
http://cvs.horde.org/diff.php/framework/RDO/docs/TODO?r1=1.2&r2=1.3&ty=u
http://cvs.horde.org/diff.php/framework/RDO/docs/examples/Clotho.php?r1=1.2&r2=1.3&ty=u
http://cvs.horde.org/diff.php/framework/RDO/docs/examples/Task.php?r1=1.7&r2=1.8&ty=u
http://cvs.horde.org/diff.php/framework/RDO/docs/examples/User.php?r1=1.8&r2=1.9&ty=u
http://cvs.horde.org/diff.php/framework/RDO/package.xml?r1=1.23&r2=1.24&ty=u
http://cvs.horde.org/diff.php/framework/RDO/scripts/rdo-model.php?r1=1.5&r2=1.6&ty=u
http://cvs.horde.org/diff.php/framework/RDO/tests/TestConfiguration.php.dist?r1=1.5&r2=1.6&ty=u
http://cvs.horde.org/diff.php/incubator/Horde_Currencies/Currencies.php?r1=1.8&r2=1.9&ty=u
http://cvs.horde.org/diff.php/incubator/Horde_RDO/Table/RDO.php?r1=1.9&r2=1.10&ty=u
http://cvs.horde.org/diff.php/incubator/Horde_RDO/crud.php?r1=1.14&r2=1.15&ty=u
http://cvs.horde.org/diff.php/incubator/Horde_Taxes/Taxes.php?r1=1.4&r2=1.5&ty=u
http://cvs.horde.org/diff.php/incubator/gulliver/lib/RDO/Allowance.php?r1=1.6&r2=1.7&ty=u
http://cvs.horde.org/diff.php/incubator/gulliver/lib/RDO/City.php?r1=1.2&r2=1.3&ty=u
http://cvs.horde.org/diff.php/incubator/gulliver/lib/RDO/Cost.php?r1=1.2&r2=1.3&ty=u
http://cvs.horde.org/diff.php/incubator/gulliver/lib/RDO/Country.php?r1=1.2&r2=1.3&ty=u
http://cvs.horde.org/diff.php/incubator/gulliver/lib/RDO/Distance.php?r1=1.6&r2=1.7&ty=u
http://cvs.horde.org/diff.php/incubator/gulliver/lib/RDO/Location.php?r1=1.6&r2=1.7&ty=u
http://cvs.horde.org/diff.php/incubator/gulliver/lib/RDO/Manufacturer.php?r1=1.2&r2=1.3&ty=u
http://cvs.horde.org/diff.php/incubator/gulliver/lib/RDO/Mileage.php?r1=1.5&r2=1.6&ty=u
http://cvs.horde.org/diff.php/incubator/gulliver/lib/RDO/Post.php?r1=1.2&r2=1.3&ty=u
http://cvs.horde.org/diff.php/incubator/gulliver/lib/RDO/Vehicle.php?r1=1.6&r2=1.7&ty=u
http://cvs.horde.org/diff.php/incubator/gulliver/lib/RDO/Worker.php?r1=1.2&r2=1.3&ty=u
http://cvs.horde.org/diff.php/incubator/minerva/lib/RDO/Bank.php?r1=1.7&r2=1.8&ty=u
http://cvs.horde.org/diff.php/incubator/minerva/lib/RDO/Email.php?r1=1.11&r2=1.12&ty=u
http://cvs.horde.org/diff.php/incubator/minerva/lib/RDO/Status.php?r1=1.7&r2=1.8&ty=u
http://cvs.horde.org/diff.php/incubator/minerva/lib/RDO/Type.php?r1=1.9&r2=1.10&ty=u
http://cvs.horde.org/diff.php/presentations/nyphp-2007-01/packages.tar.gz?r1=1.1&r2=1.2&ty=u
http://cvs.horde.org/diff.php/presentations/nyphpcon-2006-06/Helpers/Table.php?r1=1.1&r2=1.2&ty=u
http://cvs.horde.org/diff.php/presentations/nyphpcon-2006-06/final/lib/Property.php?r1=1.4&r2=1.5&ty=u
http://cvs.horde.org/diff.php/presentations/nyphpcon-2006-06/v1/index.php?r1=1.7&r2=1.8&ty=u
http://cvs.horde.org/diff.php/presentations/nyphpcon-2006-06/v2/index.php?r1=1.9&r2=1.10&ty=u
http://cvs.horde.org/diff.php/presentations/nyphpcon-2006-06/v3/index.php?r1=1.9&r2=1.10&ty=u
http://cvs.horde.org/diff.php/presentations/nyphpcon-2006-06/v4/dumpTable.php?r1=1.7&r2=1.8&ty=u
http://cvs.horde.org/diff.php/presentations/nyphpcon-2006-06/v4/index.php?r1=1.9&r2=1.10&ty=u
http://cvs.horde.org/diff.php/presentations/nyphpcon-2006-06/v5/lib/Property.php?r1=1.4&r2=1.5&ty=u
http://cvs.horde.org/diff.php/presentations/nyphpcon-2006-06/v6/lib/Property.php?r1=1.4&r2=1.5&ty=u
http://cvs.horde.org/diff.php/presentations/nyphpcon-2006-06/v7/lib/Property.php?r1=1.4&r2=1.5&ty=u
More information about the cvs
mailing list