[commits] Horde-Hatchery branch master updated. 0f8b0fe3fe50636197f93b38964d5fa219b3fb0b

Ben Klang ben at alkaloid.net
Fri Jan 8 15:55:57 UTC 2010


The branch "master" has been updated.
The following is a summary of the commits.

from: fb00dd72baa7df8b1dfc0d464545169e3f814a7d

accb97b Hylax: Import from CVS Incubator
3dfe7f7 Hylax: Fix filenames to match application
2fb13a6 Hylax: fix index names to match application
854e3d7 Hylax: Fix call-time-pass-by-reference
303de83 Hylax: Add Application class to replace lib/base.php
d1e6a70 Hylax: Deprecate and remove lib/base.php
d1756e0 Hylax: Fix constructor name
85cbcd1 Hylax: Convert classes to PHP5 syntax
7d6759f Hylax: Fix warnings
0f8b0fe Merge branch 'Hylax-H4'

-----------------------------------------------------------------------

commit accb97bbe21e4501a2d29552769bea74ff154d62
Author: Ben Klang <ben at alkaloid.net>
Date:   Wed Jan 6 21:37:17 2010 -0500

    Hylax: Import from CVS Incubator

 hylax/compose.php                      |   66 +++++
 hylax/config/.cvsignore                |    4 +
 hylax/config/.htaccess                 |    1 +
 hylax/config/conf.xml                  |   48 ++++
 hylax/config/covers.php.dist           |   27 ++
 hylax/config/prefs.php.dist            |   25 ++
 hylax/docs/INSTALL                     |   35 +++
 hylax/docs/TODO                        |    5 +
 hylax/folder.php                       |  102 ++++++++
 hylax/img.php                          |   31 +++
 hylax/index.php                        |   25 ++
 hylax/lib/.htaccess                    |    1 +
 hylax/lib/Driver.php                   |   96 ++++++++
 hylax/lib/Driver/hylafax.php           |  255 +++++++++++++++++++
 hylax/lib/Driver/spandsp.php           |  190 +++++++++++++++
 hylax/lib/Hylax.php                    |  156 ++++++++++++
 hylax/lib/Image.php                    |  171 +++++++++++++
 hylax/lib/SQL/Attributes.php           |  308 +++++++++++++++++++++++
 hylax/lib/Storage.php                  |  200 +++++++++++++++
 hylax/lib/Storage/sql.php              |  416 ++++++++++++++++++++++++++++++++
 hylax/lib/base.php                     |   58 +++++
 hylax/lib/version.php                  |    1 +
 hylax/print.php                        |   26 ++
 hylax/scripts/.htaccess                |    1 +
 hylax/scripts/.hylarc                  |    2 +
 hylax/scripts/cups/hylafax             |   30 +++
 hylax/scripts/cups/hylafax.ppd         |  115 +++++++++
 hylax/scripts/fax_create.php           |   42 ++++
 hylax/scripts/fax_create_recv.php      |   58 +++++
 hylax/scripts/fax_save_data.php        |   39 +++
 hylax/scripts/fax_save_recv_data.php   |   50 ++++
 hylax/scripts/hylafax/faxrcvd          |   41 +++
 hylax/scripts/install_cups_drivers.php |   54 ++++
 hylax/scripts/spandsp/faxrcvd          |   32 +++
 hylax/scripts/sql/fax.mssql.sql        |   29 +++
 hylax/scripts/sql/fax.sql              |   29 +++
 hylax/send.php                         |   76 ++++++
 hylax/summary.php                      |   39 +++
 hylax/templates/.htaccess              |    1 +
 hylax/templates/common-header.inc      |   29 +++
 hylax/templates/compose/compose.html   |    6 +
 hylax/templates/fax/fax.html           |   21 ++
 hylax/templates/folder/folder.html     |   60 +++++
 hylax/templates/summary/summary.html   |   52 ++++
 hylax/templates/view/view.html         |   28 +++
 hylax/themes/graphics/fax.png          |  Bin 0 -> 586 bytes
 hylax/themes/graphics/folder.png       |  Bin 0 -> 479 bytes
 hylax/themes/graphics/hylax.png        |  Bin 0 -> 586 bytes
 hylax/view.php                         |   51 ++++
 49 files changed, 3132 insertions(+), 0 deletions(-)
 create mode 100644 hylax/compose.php
 create mode 100644 hylax/config/.cvsignore
 create mode 100644 hylax/config/.htaccess
 create mode 100644 hylax/config/conf.xml
 create mode 100644 hylax/config/covers.php.dist
 create mode 100644 hylax/config/prefs.php.dist
 create mode 100644 hylax/docs/INSTALL
 create mode 100644 hylax/docs/TODO
 create mode 100644 hylax/folder.php
 create mode 100644 hylax/img.php
 create mode 100644 hylax/index.php
 create mode 100644 hylax/lib/.htaccess
 create mode 100644 hylax/lib/Driver.php
 create mode 100644 hylax/lib/Driver/hylafax.php
 create mode 100644 hylax/lib/Driver/spandsp.php
 create mode 100644 hylax/lib/Hylax.php
 create mode 100644 hylax/lib/Image.php
 create mode 100644 hylax/lib/SQL/Attributes.php
 create mode 100644 hylax/lib/Storage.php
 create mode 100644 hylax/lib/Storage/sql.php
 create mode 100644 hylax/lib/base.php
 create mode 100644 hylax/lib/version.php
 create mode 100644 hylax/print.php
 create mode 100644 hylax/scripts/.htaccess
 create mode 100644 hylax/scripts/.hylarc
 create mode 100755 hylax/scripts/cups/hylafax
 create mode 100644 hylax/scripts/cups/hylafax.ppd
 create mode 100755 hylax/scripts/fax_create.php
 create mode 100755 hylax/scripts/fax_create_recv.php
 create mode 100755 hylax/scripts/fax_save_data.php
 create mode 100755 hylax/scripts/fax_save_recv_data.php
 create mode 100755 hylax/scripts/hylafax/faxrcvd
 create mode 100755 hylax/scripts/install_cups_drivers.php
 create mode 100644 hylax/scripts/spandsp/faxrcvd
 create mode 100644 hylax/scripts/sql/fax.mssql.sql
 create mode 100644 hylax/scripts/sql/fax.sql
 create mode 100644 hylax/send.php
 create mode 100644 hylax/summary.php
 create mode 100644 hylax/templates/.htaccess
 create mode 100644 hylax/templates/common-header.inc
 create mode 100644 hylax/templates/compose/compose.html
 create mode 100644 hylax/templates/fax/fax.html
 create mode 100644 hylax/templates/folder/folder.html
 create mode 100644 hylax/templates/summary/summary.html
 create mode 100644 hylax/templates/view/view.html
 create mode 100644 hylax/themes/graphics/fax.png
 create mode 100644 hylax/themes/graphics/folder.png
 create mode 100644 hylax/themes/graphics/hylax.png
 create mode 100644 hylax/view.php

http://git.horde.org/co.php/hylax/compose.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/config/.cvsignore?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/config/.htaccess?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/config/conf.xml?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/config/covers.php.dist?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/config/prefs.php.dist?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/docs/INSTALL?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/docs/TODO?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/folder.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/img.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/index.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/lib/.htaccess?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/lib/Driver.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/lib/Driver/hylafax.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/lib/Driver/spandsp.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/lib/Hylax.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/lib/Image.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/lib/SQL/Attributes.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/lib/Storage.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/lib/Storage/sql.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/lib/base.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/lib/version.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/print.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/scripts/.htaccess?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/scripts/.hylarc?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/scripts/cups/hylafax?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/scripts/cups/hylafax.ppd?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/scripts/fax_create.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/scripts/fax_create_recv.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/scripts/fax_save_data.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/scripts/fax_save_recv_data.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/scripts/hylafax/faxrcvd?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/scripts/install_cups_drivers.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/scripts/spandsp/faxrcvd?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/scripts/sql/fax.mssql.sql?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/scripts/sql/fax.sql?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/send.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/summary.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/templates/.htaccess?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/templates/common-header.inc?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/templates/compose/compose.html?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/templates/fax/fax.html?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/templates/folder/folder.html?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/templates/summary/summary.html?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/templates/view/view.html?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/themes/graphics/fax.png?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/themes/graphics/folder.png?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/themes/graphics/hylax.png?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62
http://git.horde.org/co.php/hylax/view.php?rt=horde-hatchery&r=accb97bbe21e4501a2d29552769bea74ff154d62

-----------------------------------------------------------------------

commit 3dfe7f7635e54589027b45e911673a646a2d24a5
Author: Ben Klang <ben at alkaloid.net>
Date:   Wed Jan 6 21:48:39 2010 -0500

    Hylax: Fix filenames to match application

 hylax/scripts/sql/fax.mssql.sql   |   29 -----------------------------
 hylax/scripts/sql/fax.sql         |   29 -----------------------------
 hylax/scripts/sql/hylax.mssql.sql |   29 +++++++++++++++++++++++++++++
 hylax/scripts/sql/hylax.sql       |   29 +++++++++++++++++++++++++++++
 4 files changed, 58 insertions(+), 58 deletions(-)
 delete mode 100644 hylax/scripts/sql/fax.mssql.sql
 delete mode 100644 hylax/scripts/sql/fax.sql
 create mode 100644 hylax/scripts/sql/hylax.mssql.sql
 create mode 100644 hylax/scripts/sql/hylax.sql

http://git.horde.org/diff.php/hylax/scripts/sql/fax.mssql.sql?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=3dfe7f7635e54589027b45e911673a646a2d24a5
http://git.horde.org/diff.php/hylax/scripts/sql/fax.sql?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=3dfe7f7635e54589027b45e911673a646a2d24a5
http://git.horde.org/co.php/hylax/scripts/sql/hylax.mssql.sql?rt=horde-hatchery&r=3dfe7f7635e54589027b45e911673a646a2d24a5
http://git.horde.org/co.php/hylax/scripts/sql/hylax.sql?rt=horde-hatchery&r=3dfe7f7635e54589027b45e911673a646a2d24a5

-----------------------------------------------------------------------

commit 2fb13a6b01ca85820e70c20bc76c76c4f075f3b7
Author: Ben Klang <ben at alkaloid.net>
Date:   Wed Jan 6 21:49:57 2010 -0500

    Hylax: fix index names to match application

 hylax/scripts/sql/hylax.mssql.sql |    6 +++---
 hylax/scripts/sql/hylax.sql       |    6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

http://git.horde.org/diff.php/hylax/scripts/sql/hylax.mssql.sql?rt=horde-hatchery&r1=3dfe7f7635e54589027b45e911673a646a2d24a5&r2=2fb13a6b01ca85820e70c20bc76c76c4f075f3b7
http://git.horde.org/diff.php/hylax/scripts/sql/hylax.sql?rt=horde-hatchery&r1=3dfe7f7635e54589027b45e911673a646a2d24a5&r2=2fb13a6b01ca85820e70c20bc76c76c4f075f3b7

-----------------------------------------------------------------------

commit 854e3d7508274d5ce3209120634b601e29974d0b
Author: Ben Klang <ben at alkaloid.net>
Date:   Wed Jan 6 22:27:02 2010 -0500

    Hylax: Fix call-time-pass-by-reference

 hylax/folder.php                     |    2 +-
 hylax/lib/Driver.php                 |    2 +-
 hylax/lib/Hylax.php                  |    4 ++--
 hylax/lib/Storage.php                |    4 ++--
 hylax/lib/base.php                   |   14 +++++++++++---
 hylax/scripts/fax_create.php         |    2 +-
 hylax/scripts/fax_save_recv_data.php |    2 +-
 hylax/summary.php                    |    2 +-
 hylax/view.php                       |    2 +-
 9 files changed, 21 insertions(+), 13 deletions(-)

http://git.horde.org/diff.php/hylax/folder.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=854e3d7508274d5ce3209120634b601e29974d0b
http://git.horde.org/diff.php/hylax/lib/Driver.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=854e3d7508274d5ce3209120634b601e29974d0b
http://git.horde.org/diff.php/hylax/lib/Hylax.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=854e3d7508274d5ce3209120634b601e29974d0b
http://git.horde.org/diff.php/hylax/lib/Storage.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=854e3d7508274d5ce3209120634b601e29974d0b
http://git.horde.org/diff.php/hylax/lib/base.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=854e3d7508274d5ce3209120634b601e29974d0b
http://git.horde.org/diff.php/hylax/scripts/fax_create.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=854e3d7508274d5ce3209120634b601e29974d0b
http://git.horde.org/diff.php/hylax/scripts/fax_save_recv_data.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=854e3d7508274d5ce3209120634b601e29974d0b
http://git.horde.org/diff.php/hylax/summary.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=854e3d7508274d5ce3209120634b601e29974d0b
http://git.horde.org/diff.php/hylax/view.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=854e3d7508274d5ce3209120634b601e29974d0b

-----------------------------------------------------------------------

commit 303de83504f40c36cb494b652c6468d0ce6f8aa4
Author: Ben Klang <ben at alkaloid.net>
Date:   Fri Jan 8 10:09:27 2010 -0500

    Hylax: Add Application class to replace lib/base.php

 hylax/lib/Application.php |   84 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 84 insertions(+), 0 deletions(-)
 create mode 100644 hylax/lib/Application.php

http://git.horde.org/co.php/hylax/lib/Application.php?rt=horde-hatchery&r=303de83504f40c36cb494b652c6468d0ce6f8aa4

-----------------------------------------------------------------------

commit d1e6a706ed6b29addaae7c06d3ee74476130a962
Author: Ben Klang <ben at alkaloid.net>
Date:   Fri Jan 8 10:33:35 2010 -0500

    Hylax: Deprecate and remove lib/base.php

 hylax/compose.php                      |    8 +---
 hylax/folder.php                       |    6 +-
 hylax/img.php                          |    7 ++-
 hylax/lib/Application.php              |    9 +++-
 hylax/lib/Storage.php                  |    4 +-
 hylax/lib/base.php                     |   66 --------------------------------
 hylax/print.php                        |    4 +-
 hylax/scripts/fax_create.php           |   11 +----
 hylax/scripts/fax_create_recv.php      |    9 +---
 hylax/scripts/fax_save_data.php        |    9 +---
 hylax/scripts/fax_save_recv_data.php   |   11 +----
 hylax/scripts/install_cups_drivers.php |    8 +---
 hylax/send.php                         |    9 ++--
 hylax/summary.php                      |   10 ++--
 hylax/view.php                         |    6 +-
 15 files changed, 43 insertions(+), 134 deletions(-)
 delete mode 100644 hylax/lib/base.php

http://git.horde.org/diff.php/hylax/compose.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=d1e6a706ed6b29addaae7c06d3ee74476130a962
http://git.horde.org/diff.php/hylax/folder.php?rt=horde-hatchery&r1=854e3d7508274d5ce3209120634b601e29974d0b&r2=d1e6a706ed6b29addaae7c06d3ee74476130a962
http://git.horde.org/diff.php/hylax/img.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=d1e6a706ed6b29addaae7c06d3ee74476130a962
http://git.horde.org/diff.php/hylax/lib/Application.php?rt=horde-hatchery&r1=303de83504f40c36cb494b652c6468d0ce6f8aa4&r2=d1e6a706ed6b29addaae7c06d3ee74476130a962
http://git.horde.org/diff.php/hylax/lib/Storage.php?rt=horde-hatchery&r1=854e3d7508274d5ce3209120634b601e29974d0b&r2=d1e6a706ed6b29addaae7c06d3ee74476130a962
http://git.horde.org/diff.php/hylax/lib/base.php?rt=horde-hatchery&r1=854e3d7508274d5ce3209120634b601e29974d0b&r2=d1e6a706ed6b29addaae7c06d3ee74476130a962
http://git.horde.org/diff.php/hylax/print.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=d1e6a706ed6b29addaae7c06d3ee74476130a962
http://git.horde.org/diff.php/hylax/scripts/fax_create.php?rt=horde-hatchery&r1=854e3d7508274d5ce3209120634b601e29974d0b&r2=d1e6a706ed6b29addaae7c06d3ee74476130a962
http://git.horde.org/diff.php/hylax/scripts/fax_create_recv.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=d1e6a706ed6b29addaae7c06d3ee74476130a962
http://git.horde.org/diff.php/hylax/scripts/fax_save_data.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=d1e6a706ed6b29addaae7c06d3ee74476130a962
http://git.horde.org/diff.php/hylax/scripts/fax_save_recv_data.php?rt=horde-hatchery&r1=854e3d7508274d5ce3209120634b601e29974d0b&r2=d1e6a706ed6b29addaae7c06d3ee74476130a962
http://git.horde.org/diff.php/hylax/scripts/install_cups_drivers.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=d1e6a706ed6b29addaae7c06d3ee74476130a962
http://git.horde.org/diff.php/hylax/send.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=d1e6a706ed6b29addaae7c06d3ee74476130a962
http://git.horde.org/diff.php/hylax/summary.php?rt=horde-hatchery&r1=854e3d7508274d5ce3209120634b601e29974d0b&r2=d1e6a706ed6b29addaae7c06d3ee74476130a962
http://git.horde.org/diff.php/hylax/view.php?rt=horde-hatchery&r1=854e3d7508274d5ce3209120634b601e29974d0b&r2=d1e6a706ed6b29addaae7c06d3ee74476130a962

-----------------------------------------------------------------------

commit d1756e0b628d93420ded8065689021ebe307de46
Author: Ben Klang <ben at alkaloid.net>
Date:   Fri Jan 8 10:38:10 2010 -0500

    Hylax: Fix constructor name

 hylax/lib/Application.php |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

http://git.horde.org/diff.php/hylax/lib/Application.php?rt=horde-hatchery&r1=d1e6a706ed6b29addaae7c06d3ee74476130a962&r2=d1756e0b628d93420ded8065689021ebe307de46

-----------------------------------------------------------------------

commit 85cbcd1bbb28f57d2697c084bf4487ed13767849
Author: Ben Klang <ben at alkaloid.net>
Date:   Fri Jan 8 10:45:43 2010 -0500

    Hylax: Convert classes to PHP5 syntax

 hylax/lib/Driver.php         |   10 +++++-----
 hylax/lib/Driver/hylafax.php |   26 +++++++++++++-------------
 hylax/lib/Driver/spandsp.php |   30 +++++++++++++++---------------
 3 files changed, 33 insertions(+), 33 deletions(-)

http://git.horde.org/diff.php/hylax/lib/Driver.php?rt=horde-hatchery&r1=854e3d7508274d5ce3209120634b601e29974d0b&r2=85cbcd1bbb28f57d2697c084bf4487ed13767849
http://git.horde.org/diff.php/hylax/lib/Driver/hylafax.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=85cbcd1bbb28f57d2697c084bf4487ed13767849
http://git.horde.org/diff.php/hylax/lib/Driver/spandsp.php?rt=horde-hatchery&r1=accb97bbe21e4501a2d29552769bea74ff154d62&r2=85cbcd1bbb28f57d2697c084bf4487ed13767849

-----------------------------------------------------------------------

commit 7d6759f9bcf3686542ed8e348564abd66c74d730
Author: Ben Klang <ben at alkaloid.net>
Date:   Fri Jan 8 10:54:37 2010 -0500

    Hylax: Fix warnings
    
    * Get rid of getInbox() in favor of a public getFolder()
    * Return an empty array if we can return a real list (SpanDSP for now...)

 hylax/folder.php             |    2 +-
 hylax/lib/Driver/hylafax.php |    9 ++-------
 hylax/lib/Driver/spandsp.php |   19 +++++++++----------
 hylax/summary.php            |    4 ++--
 4 files changed, 14 insertions(+), 20 deletions(-)

http://git.horde.org/diff.php/hylax/folder.php?rt=horde-hatchery&r1=d1e6a706ed6b29addaae7c06d3ee74476130a962&r2=7d6759f9bcf3686542ed8e348564abd66c74d730
http://git.horde.org/diff.php/hylax/lib/Driver/hylafax.php?rt=horde-hatchery&r1=85cbcd1bbb28f57d2697c084bf4487ed13767849&r2=7d6759f9bcf3686542ed8e348564abd66c74d730
http://git.horde.org/diff.php/hylax/lib/Driver/spandsp.php?rt=horde-hatchery&r1=85cbcd1bbb28f57d2697c084bf4487ed13767849&r2=7d6759f9bcf3686542ed8e348564abd66c74d730
http://git.horde.org/diff.php/hylax/summary.php?rt=horde-hatchery&r1=d1e6a706ed6b29addaae7c06d3ee74476130a962&r2=7d6759f9bcf3686542ed8e348564abd66c74d730

-----------------------------------------------------------------------

commit 0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
Merge: fb00dd7 7d6759f
Author: Ben Klang <ben at alkaloid.net>
Date:   Fri Jan 8 10:55:43 2010 -0500

    Merge branch 'Hylax-H4'

 hylax/compose.php                      |   62 +++++
 hylax/config/.cvsignore                |    4 +
 hylax/config/.htaccess                 |    1 +
 hylax/config/conf.xml                  |   48 ++++
 hylax/config/covers.php.dist           |   27 ++
 hylax/config/prefs.php.dist            |   25 ++
 hylax/docs/INSTALL                     |   35 +++
 hylax/docs/TODO                        |    5 +
 hylax/folder.php                       |  102 ++++++++
 hylax/img.php                          |   32 +++
 hylax/index.php                        |   25 ++
 hylax/lib/.htaccess                    |    1 +
 hylax/lib/Application.php              |   87 +++++++
 hylax/lib/Driver.php                   |   96 ++++++++
 hylax/lib/Driver/hylafax.php           |  250 +++++++++++++++++++
 hylax/lib/Driver/spandsp.php           |  189 +++++++++++++++
 hylax/lib/Hylax.php                    |  156 ++++++++++++
 hylax/lib/Image.php                    |  171 +++++++++++++
 hylax/lib/SQL/Attributes.php           |  308 +++++++++++++++++++++++
 hylax/lib/Storage.php                  |  200 +++++++++++++++
 hylax/lib/Storage/sql.php              |  416 ++++++++++++++++++++++++++++++++
 hylax/lib/version.php                  |    1 +
 hylax/print.php                        |   26 ++
 hylax/scripts/.htaccess                |    1 +
 hylax/scripts/.hylarc                  |    2 +
 hylax/scripts/cups/hylafax             |   30 +++
 hylax/scripts/cups/hylafax.ppd         |  115 +++++++++
 hylax/scripts/fax_create.php           |   37 +++
 hylax/scripts/fax_create_recv.php      |   53 ++++
 hylax/scripts/fax_save_data.php        |   34 +++
 hylax/scripts/fax_save_recv_data.php   |   45 ++++
 hylax/scripts/hylafax/faxrcvd          |   41 +++
 hylax/scripts/install_cups_drivers.php |   50 ++++
 hylax/scripts/spandsp/faxrcvd          |   32 +++
 hylax/scripts/sql/hylax.mssql.sql      |   29 +++
 hylax/scripts/sql/hylax.sql            |   29 +++
 hylax/send.php                         |   75 ++++++
 hylax/summary.php                      |   39 +++
 hylax/templates/.htaccess              |    1 +
 hylax/templates/common-header.inc      |   29 +++
 hylax/templates/compose/compose.html   |    6 +
 hylax/templates/fax/fax.html           |   21 ++
 hylax/templates/folder/folder.html     |   60 +++++
 hylax/templates/summary/summary.html   |   52 ++++
 hylax/templates/view/view.html         |   28 +++
 hylax/themes/graphics/fax.png          |  Bin 0 -> 586 bytes
 hylax/themes/graphics/folder.png       |  Bin 0 -> 479 bytes
 hylax/themes/graphics/hylax.png        |  Bin 0 -> 586 bytes
 hylax/view.php                         |   51 ++++
 49 files changed, 3127 insertions(+), 0 deletions(-)

http://git.horde.org/co.php/hylax/compose.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/config/.cvsignore?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/config/.htaccess?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/config/conf.xml?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/config/covers.php.dist?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/config/prefs.php.dist?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/docs/INSTALL?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/docs/TODO?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/folder.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/img.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/index.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/lib/.htaccess?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/lib/Application.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/lib/Driver.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/lib/Driver/hylafax.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/lib/Driver/spandsp.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/lib/Hylax.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/lib/Image.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/lib/SQL/Attributes.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/lib/Storage.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/lib/Storage/sql.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/lib/version.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/print.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/scripts/.htaccess?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/scripts/.hylarc?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/scripts/cups/hylafax?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/scripts/cups/hylafax.ppd?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/scripts/fax_create.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/scripts/fax_create_recv.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/scripts/fax_save_data.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/scripts/fax_save_recv_data.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/scripts/hylafax/faxrcvd?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/scripts/install_cups_drivers.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/scripts/spandsp/faxrcvd?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/scripts/sql/hylax.mssql.sql?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/scripts/sql/hylax.sql?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/send.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/summary.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/templates/.htaccess?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/templates/common-header.inc?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/templates/compose/compose.html?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/templates/fax/fax.html?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/templates/folder/folder.html?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/templates/summary/summary.html?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/templates/view/view.html?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/themes/graphics/fax.png?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/themes/graphics/folder.png?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/themes/graphics/hylax.png?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b
http://git.horde.org/co.php/hylax/view.php?rt=horde-hatchery&r=0f8b0fe3fe50636197f93b38964d5fa219b3fb0b




More information about the commits mailing list