[commits] Horde branch master updated.

Chuck Hagenbuch chuck at horde.org
Mon Feb 23 04:49:53 UTC 2009


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

from: 08797f09565115d32803d9ef993c74c3e2abd9ac

3d690cc... add two new fixtures, broaden blogroll test, add skipped test for nested blogroll structures
8f498a4... add text helpers
29bba74... - add helper base test - add getHelperPaths - add local variables in views - add partials - add .html to template names with no extension
f505e00... port missing inflections, except titlize, foreignKey, and ordinalize
02282f6... add number helper - only one method right now; the other originals here need to be locale-specific

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

commit 3d690cc32f8eecf4ff32b486fa8e296fa79111f9
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Sun Feb 22 21:26:25 2009 -0500

    add two new fixtures, broaden blogroll test, add skipped test for nested blogroll structures

 framework/Feed/test/Horde/Feed/BlogrollTest.php                   |   13 +-
 .../Feed/test/Horde/Feed/fixtures/MySubscriptionsGrouped.opml     |   69 +++++
 .../Feed/test/Horde/Feed/fixtures/lexicon/bbmaintenance_rss.xml   |   30 ++
 3 files changed, 109 insertions(+), 3 deletions(-)
 create mode 100644 framework/Feed/test/Horde/Feed/fixtures/MySubscriptionsGrouped.opml
 create mode 100644 framework/Feed/test/Horde/Feed/fixtures/lexicon/bbmaintenance_rss.xml

http://git.horde.org/diff.php/framework/Feed/test/Horde/Feed/BlogrollTest.php?rt=horde-git&r1=f0aa090bb7a1c56202f038af0ad2e7a56cb41637&r2=3d690cc32f8eecf4ff32b486fa8e296fa79111f9
http://git.horde.org/co.php/framework/Feed/test/Horde/Feed/fixtures/MySubscriptionsGrouped.opml?rt=horde-git&r=3d690cc32f8eecf4ff32b486fa8e296fa79111f9
http://git.horde.org/co.php/framework/Feed/test/Horde/Feed/fixtures/lexicon/bbmaintenance_rss.xml?rt=horde-git&r=3d690cc32f8eecf4ff32b486fa8e296fa79111f9

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

commit 8f498a4bf5fead9dffd55cbe2c47eabf0f7c99cf
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Sun Feb 22 21:42:48 2009 -0500

    add text helpers

 framework/View/lib/Horde/View/Helper/Text.php       |  237 +++++++++++++++++++
 framework/View/lib/Horde/View/Helper/Text/Cycle.php |   83 +++++++
 framework/View/package.xml                          |    6 +
 framework/View/test/Horde/View/Helper/TextTest.php  |  182 ++++++++++++++
 4 files changed, 508 insertions(+), 0 deletions(-)
 create mode 100644 framework/View/lib/Horde/View/Helper/Text.php
 create mode 100644 framework/View/lib/Horde/View/Helper/Text/Cycle.php
 create mode 100644 framework/View/test/Horde/View/Helper/TextTest.php

http://git.horde.org/co.php/framework/View/lib/Horde/View/Helper/Text.php?rt=horde-git&r=8f498a4bf5fead9dffd55cbe2c47eabf0f7c99cf
http://git.horde.org/co.php/framework/View/lib/Horde/View/Helper/Text/Cycle.php?rt=horde-git&r=8f498a4bf5fead9dffd55cbe2c47eabf0f7c99cf
http://git.horde.org/diff.php/framework/View/package.xml?rt=horde-git&r1=fcd9109736fda76832509b09b01b6066a2631842&r2=8f498a4bf5fead9dffd55cbe2c47eabf0f7c99cf
http://git.horde.org/co.php/framework/View/test/Horde/View/Helper/TextTest.php?rt=horde-git&r=8f498a4bf5fead9dffd55cbe2c47eabf0f7c99cf

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

commit 29bba74db207a59ad3dc50da865551be953b26cc
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Sun Feb 22 23:21:26 2009 -0500

    - add helper base test
    - add getHelperPaths
    - add local variables in views
    - add partials
    - add .html to template names with no extension

 framework/View/lib/Horde/View.php                                 |    9 +
 framework/View/lib/Horde/View/Base.php                            |   90 ++-
 framework/View/test/Horde/View/BaseTest.php                       |  225 +++++
 framework/View/test/Horde/View/fixtures/_myPartial.html           |    1 +
 framework/View/test/Horde/View/fixtures/_myPartialLocals.html     |    1 +
 framework/View/test/Horde/View/fixtures/_myPartialObject.html     |    1 +
 framework/View/test/Horde/View/fixtures/subdir/testRender.html    |    1 +
 framework/View/test/Horde/View/fixtures/testEscape.html           |    1 +
 framework/View/test/Horde/View/fixtures/testPartial.html          |    1 +
 .../View/test/Horde/View/fixtures/testPartialCollection.html      |    1 +
 framework/View/test/Horde/View/fixtures/testPartialLocals.html    |    1 +
 framework/View/test/Horde/View/fixtures/testPartialObject.html    |    1 +
 framework/View/test/Horde/View/fixtures/testRender.html           |    1 +
 13 files changed, 331 insertions(+), 3 deletions(-)
 create mode 100644 framework/View/test/Horde/View/BaseTest.php
 create mode 100644 framework/View/test/Horde/View/fixtures/_myPartial.html
 create mode 100644 framework/View/test/Horde/View/fixtures/_myPartialLocals.html
 create mode 100644 framework/View/test/Horde/View/fixtures/_myPartialObject.html
 create mode 100644 framework/View/test/Horde/View/fixtures/subdir/testRender.html
 create mode 100644 framework/View/test/Horde/View/fixtures/testEscape.html
 create mode 100644 framework/View/test/Horde/View/fixtures/testPartial.html
 create mode 100644 framework/View/test/Horde/View/fixtures/testPartialCollection.html
 create mode 100644 framework/View/test/Horde/View/fixtures/testPartialLocals.html
 create mode 100644 framework/View/test/Horde/View/fixtures/testPartialObject.html
 create mode 100644 framework/View/test/Horde/View/fixtures/testRender.html

http://git.horde.org/diff.php/framework/View/lib/Horde/View.php?rt=horde-git&r1=ccfd50278baa306abee1acd1b310a168f8ae4925&r2=29bba74db207a59ad3dc50da865551be953b26cc
http://git.horde.org/diff.php/framework/View/lib/Horde/View/Base.php?rt=horde-git&r1=cc6b2ff8f88d7ef6dc2f07f8e0a4957c82d891b6&r2=29bba74db207a59ad3dc50da865551be953b26cc
http://git.horde.org/co.php/framework/View/test/Horde/View/BaseTest.php?rt=horde-git&r=29bba74db207a59ad3dc50da865551be953b26cc
http://git.horde.org/co.php/framework/View/test/Horde/View/fixtures/_myPartial.html?rt=horde-git&r=29bba74db207a59ad3dc50da865551be953b26cc
http://git.horde.org/co.php/framework/View/test/Horde/View/fixtures/_myPartialLocals.html?rt=horde-git&r=29bba74db207a59ad3dc50da865551be953b26cc
http://git.horde.org/co.php/framework/View/test/Horde/View/fixtures/_myPartialObject.html?rt=horde-git&r=29bba74db207a59ad3dc50da865551be953b26cc
http://git.horde.org/co.php/framework/View/test/Horde/View/fixtures/subdir/testRender.html?rt=horde-git&r=29bba74db207a59ad3dc50da865551be953b26cc
http://git.horde.org/co.php/framework/View/test/Horde/View/fixtures/testEscape.html?rt=horde-git&r=29bba74db207a59ad3dc50da865551be953b26cc
http://git.horde.org/co.php/framework/View/test/Horde/View/fixtures/testPartial.html?rt=horde-git&r=29bba74db207a59ad3dc50da865551be953b26cc
http://git.horde.org/co.php/framework/View/test/Horde/View/fixtures/testPartialCollection.html?rt=horde-git&r=29bba74db207a59ad3dc50da865551be953b26cc
http://git.horde.org/co.php/framework/View/test/Horde/View/fixtures/testPartialLocals.html?rt=horde-git&r=29bba74db207a59ad3dc50da865551be953b26cc
http://git.horde.org/co.php/framework/View/test/Horde/View/fixtures/testPartialObject.html?rt=horde-git&r=29bba74db207a59ad3dc50da865551be953b26cc
http://git.horde.org/co.php/framework/View/test/Horde/View/fixtures/testRender.html?rt=horde-git&r=29bba74db207a59ad3dc50da865551be953b26cc

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

commit f505e00a541d391583fa1ef501930ba51e8e7713
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Sun Feb 22 23:44:25 2009 -0500

    port missing inflections, except titlize, foreignKey, and ordinalize

 framework/Support/lib/Horde/Support/Inflector.php      |  200 ++++++++++++++--
 framework/Support/test/Horde/Support/InflectorTest.php |  121 ++++++++++
 2 files changed, 303 insertions(+), 18 deletions(-)

http://git.horde.org/diff.php/framework/Support/lib/Horde/Support/Inflector.php?rt=horde-git&r1=67d66158c228dd6ba6691092332bacf9c6a8fd57&r2=f505e00a541d391583fa1ef501930ba51e8e7713
http://git.horde.org/diff.php/framework/Support/test/Horde/Support/InflectorTest.php?rt=horde-git&r1=67d66158c228dd6ba6691092332bacf9c6a8fd57&r2=f505e00a541d391583fa1ef501930ba51e8e7713

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

commit 02282f66cab6ac7794bb74bc6fa7f6e4b8a8a401
Author: Chuck Hagenbuch <chuck at horde.org>
Date:   Sun Feb 22 23:48:22 2009 -0500

    add number helper - only one method right now; the other originals here need to be locale-specific

 framework/View/lib/Horde/View/Helper/Number.php      |   69 ++++++++++++++++++
 framework/View/test/Horde/View/Helper/NumberTest.php |   55 ++++++++++++++
 2 files changed, 124 insertions(+), 0 deletions(-)
 create mode 100644 framework/View/lib/Horde/View/Helper/Number.php
 create mode 100644 framework/View/test/Horde/View/Helper/NumberTest.php

http://git.horde.org/co.php/framework/View/lib/Horde/View/Helper/Number.php?rt=horde-git&r=02282f66cab6ac7794bb74bc6fa7f6e4b8a8a401
http://git.horde.org/co.php/framework/View/test/Horde/View/Helper/NumberTest.php?rt=horde-git&r=02282f66cab6ac7794bb74bc6fa7f6e4b8a8a401




More information about the commits mailing list