[commits] Horde branch master updated. f5c734bf3ec315b61a8a13f91cc6728f76f5aafd
Michael M Slusarz
slusarz at horde.org
Thu Jan 8 07:48:28 UTC 2015
The branch "master" has been updated.
The following is a summary of the commits.
from: e0578d2e5c412e85dd7924bee887f7b28c68c492
9bf6929 Beginnings of a new dev install script.
f5c734b [mms] Use composer to generate the distributed version of the PHP-CSS-Parser package.
Summary: http://github.com/horde/horde/compare/e0578d2e5c412e85dd7924bee887f7b28c68c492...f5c734bf3ec315b61a8a13f91cc6728f76f5aafd
-----------------------------------------------------------------------
commit 9bf6929ff36e34bf1d916c1fa3607530b7f373ad
Author: Michael M Slusarz <slusarz at horde.org>
Date: Wed Jan 7 23:44:52 2015 -0700
Beginnings of a new dev install script.
THIS DOES NOT WORK YET.
It *does* correctly link the applications, set up the various include paths,
and do autoloading of framework libraries without having to install
packages with PEAR. (Yay)
The problem is the javascript files that live in the packages (actually, it
would be anything that is installed via the "horde" role) aren't
web-accessibly linked and thus things don't work very well. Not really sure
what to do about this.
.gitignore | 2 +
horde/bin/dev/horde-dev-create-web | 259 +++++++++++++++++++
horde/bin/dev/horde-dev-create-web.conf.dist | 25 ++
horde/lib/Autoloader/ClassPathMapper/HordeDevel.php | 90 +++++++
horde/lib/core.php | 15 +
horde/package.xml | 34 +++-
6 files changed, 423 insertions(+), 2 deletions(-)
create mode 100755 horde/bin/dev/horde-dev-create-web
create mode 100644 horde/bin/dev/horde-dev-create-web.conf.dist
create mode 100644 horde/lib/Autoloader/ClassPathMapper/HordeDevel.php
http://github.com/horde/horde/commit/9bf6929ff36e34bf1d916c1fa3607530b7f373ad
-----------------------------------------------------------------------
commit f5c734bf3ec315b61a8a13f91cc6728f76f5aafd
Author: Michael M Slusarz <slusarz at horde.org>
Date: Thu Jan 8 00:38:37 2015 -0700
[mms] Use composer to generate the distributed version of the PHP-CSS-Parser package.
framework/Css_Parser/bundle/composer.json | 5 +
framework/Css_Parser/bundle/composer.lock | 59 +
framework/Css_Parser/bundle/vendor/autoload.php | 7 +
framework/Css_Parser/bundle/vendor/composer/ClassLoader.php | 387 +++
framework/Css_Parser/bundle/vendor/composer/autoload_classmap.php | 9 +
.../Css_Parser/bundle/vendor/composer/autoload_namespaces.php | 10 +
framework/Css_Parser/bundle/vendor/composer/autoload_psr4.php | 9 +
framework/Css_Parser/bundle/vendor/composer/autoload_real.php | 50 +
framework/Css_Parser/bundle/vendor/composer/installed.json | 45 +
.../bundle/vendor/sabberworm/php-css-parser/.travis.yml | 8 +
.../bundle/vendor/sabberworm/php-css-parser/CHANGELOG.md | 149 +
.../Css_Parser/bundle/vendor/sabberworm/php-css-parser/README.md | 532 ++++
.../bundle/vendor/sabberworm/php-css-parser/composer.json | 17 +
.../php-css-parser/lib/Sabberworm/CSS/CSSList/AtRuleBlockList.php | 48 +
.../php-css-parser/lib/Sabberworm/CSS/CSSList/CSSBlockList.php | 78 +
.../php-css-parser/lib/Sabberworm/CSS/CSSList/CSSList.php | 114 +
.../php-css-parser/lib/Sabberworm/CSS/CSSList/Document.php | 98 +
.../php-css-parser/lib/Sabberworm/CSS/CSSList/KeyFrame.php | 56 +
.../sabberworm/php-css-parser/lib/Sabberworm/CSS/OutputFormat.php | 289 ++
.../sabberworm/php-css-parser/lib/Sabberworm/CSS/Parser.php | 630 +++++
.../php-css-parser/lib/Sabberworm/CSS/Parsing/OutputException.php | 9 +
.../lib/Sabberworm/CSS/Parsing/UnexpectedTokenException.php | 28 +
.../php-css-parser/lib/Sabberworm/CSS/Property/AtRule.php | 14 +
.../php-css-parser/lib/Sabberworm/CSS/Property/CSSNamespace.php | 52 +
.../php-css-parser/lib/Sabberworm/CSS/Property/Charset.php | 43 +
.../php-css-parser/lib/Sabberworm/CSS/Property/Import.php | 46 +
.../php-css-parser/lib/Sabberworm/CSS/Property/Selector.php | 74 +
.../sabberworm/php-css-parser/lib/Sabberworm/CSS/Renderable.php | 8 +
.../sabberworm/php-css-parser/lib/Sabberworm/CSS/Rule/Rule.php | 146 +
.../php-css-parser/lib/Sabberworm/CSS/RuleSet/AtRuleSet.php | 44 +
.../lib/Sabberworm/CSS/RuleSet/DeclarationBlock.php | 608 ++++
.../php-css-parser/lib/Sabberworm/CSS/RuleSet/RuleSet.php | 119 +
.../sabberworm/php-css-parser/lib/Sabberworm/CSS/Settings.php | 54 +
.../php-css-parser/lib/Sabberworm/CSS/Value/CSSFunction.php | 39 +
.../sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/Color.php | 41 +
.../php-css-parser/lib/Sabberworm/CSS/Value/PrimitiveValue.php | 7 +
.../php-css-parser/lib/Sabberworm/CSS/Value/RuleValueList.php | 11 +
.../sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/Size.php | 72 +
.../sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/String.php | 31 +
.../sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/URL.php | 30 +
.../sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/Value.php | 10 +
.../php-css-parser/lib/Sabberworm/CSS/Value/ValueList.php | 46 +
.../bundle/vendor/sabberworm/php-css-parser/phpunit.xml | 1 +
.../php-css-parser/tests/Sabberworm/CSS/OutputFormatTest.php | 170 ++
.../sabberworm/php-css-parser/tests/Sabberworm/CSS/ParserTest.php | 386 +++
.../tests/Sabberworm/CSS/RuleSet/DeclarationBlockTest.php | 208 ++
.../tests/Sabberworm/CSS/RuleSet/LenientParsingTest.php | 76 +
.../bundle/vendor/sabberworm/php-css-parser/tests/bootstrap.php | 10 +
.../vendor/sabberworm/php-css-parser/tests/files/-end-token-2.css | 1 +
.../vendor/sabberworm/php-css-parser/tests/files/-end-token.css | 1 +
.../sabberworm/php-css-parser/tests/files/-fault-tolerance.css | 15 +
.../vendor/sabberworm/php-css-parser/tests/files/-tobedone.css | 3 +
.../vendor/sabberworm/php-css-parser/tests/files/1readme.css | 10 +
.../vendor/sabberworm/php-css-parser/tests/files/2readme.css | 5 +
.../vendor/sabberworm/php-css-parser/tests/files/atrules.css | 57 +
.../sabberworm/php-css-parser/tests/files/case-insensitivity.css | 15 +
.../vendor/sabberworm/php-css-parser/tests/files/colortest.css | 12 +
.../vendor/sabberworm/php-css-parser/tests/files/comments.css | 16 +
.../sabberworm/php-css-parser/tests/files/create-shorthands.css | 6 +
.../vendor/sabberworm/php-css-parser/tests/files/docuwiki.css | 1 +
.../sabberworm/php-css-parser/tests/files/expand-shorthands.css | 7 +
.../vendor/sabberworm/php-css-parser/tests/files/functions.css | 21 +
.../bundle/vendor/sabberworm/php-css-parser/tests/files/ie.css | 6 +
.../vendor/sabberworm/php-css-parser/tests/files/important.css | 8 +
.../vendor/sabberworm/php-css-parser/tests/files/inner-color.css | 3 +
.../vendor/sabberworm/php-css-parser/tests/files/namespaces.css | 18 +
.../vendor/sabberworm/php-css-parser/tests/files/nested.css | 17 +
.../vendor/sabberworm/php-css-parser/tests/files/slashed.css | 4 +
.../vendor/sabberworm/php-css-parser/tests/files/specificity.css | 7 +
.../vendor/sabberworm/php-css-parser/tests/files/unicode.css | 12 +
.../vendor/sabberworm/php-css-parser/tests/files/values.css | 14 +
.../vendor/sabberworm/php-css-parser/tests/files/webkit.css | 1 +
.../vendor/sabberworm/php-css-parser/tests/files/whitespace.css | 3 +
.../bundle/vendor/sabberworm/php-css-parser/tests/phpunit.xml | 1 +
.../bundle/vendor/sabberworm/php-css-parser/tests/quickdump.php | 15 +
framework/Css_Parser/lib/Horde/Css/Parser.php | 6 +
.../Css_Parser/lib/Sabberworm/CSS/CSSList/AtRuleBlockList.php | 36 -
framework/Css_Parser/lib/Sabberworm/CSS/CSSList/CSSBlockList.php | 78 -
framework/Css_Parser/lib/Sabberworm/CSS/CSSList/CSSList.php | 75 -
framework/Css_Parser/lib/Sabberworm/CSS/CSSList/Document.php | 87 -
framework/Css_Parser/lib/Sabberworm/CSS/CSSList/KeyFrame.php | 48 -
framework/Css_Parser/lib/Sabberworm/CSS/CSSList/MediaQuery.php | 32 -
framework/Css_Parser/lib/Sabberworm/CSS/Parser.php | 618 ----
.../lib/Sabberworm/CSS/Parsing/UnexpectedTokenException.php | 28 -
framework/Css_Parser/lib/Sabberworm/CSS/Property/AtRule.php | 13 -
framework/Css_Parser/lib/Sabberworm/CSS/Property/CSSNamespace.php | 48 -
framework/Css_Parser/lib/Sabberworm/CSS/Property/Charset.php | 39 -
framework/Css_Parser/lib/Sabberworm/CSS/Property/Import.php | 42 -
framework/Css_Parser/lib/Sabberworm/CSS/Property/Selector.php | 75 -
framework/Css_Parser/lib/Sabberworm/CSS/Rule/Rule.php | 142 -
framework/Css_Parser/lib/Sabberworm/CSS/RuleSet/AtRuleSet.php | 36 -
.../Css_Parser/lib/Sabberworm/CSS/RuleSet/DeclarationBlock.php | 585 ----
framework/Css_Parser/lib/Sabberworm/CSS/RuleSet/RuleSet.php | 95 -
framework/Css_Parser/lib/Sabberworm/CSS/Settings.php | 52 -
framework/Css_Parser/lib/Sabberworm/CSS/Value/CSSFunction.php | 35 -
framework/Css_Parser/lib/Sabberworm/CSS/Value/Color.php | 38 -
framework/Css_Parser/lib/Sabberworm/CSS/Value/PrimitiveValue.php | 7 -
framework/Css_Parser/lib/Sabberworm/CSS/Value/RuleValueList.php | 11 -
framework/Css_Parser/lib/Sabberworm/CSS/Value/Size.php | 67 -
framework/Css_Parser/lib/Sabberworm/CSS/Value/String.php | 27 -
framework/Css_Parser/lib/Sabberworm/CSS/Value/URL.php | 26 -
framework/Css_Parser/lib/Sabberworm/CSS/Value/Value.php | 8 -
framework/Css_Parser/lib/Sabberworm/CSS/Value/ValueList.php | 42 -
framework/Css_Parser/package.xml | 4 +-
104 files changed, 5270 insertions(+), 2392 deletions(-)
create mode 100644 framework/Css_Parser/bundle/composer.json
create mode 100644 framework/Css_Parser/bundle/composer.lock
create mode 100644 framework/Css_Parser/bundle/vendor/autoload.php
create mode 100644 framework/Css_Parser/bundle/vendor/composer/ClassLoader.php
create mode 100644 framework/Css_Parser/bundle/vendor/composer/autoload_classmap.php
create mode 100644 framework/Css_Parser/bundle/vendor/composer/autoload_namespaces.php
create mode 100644 framework/Css_Parser/bundle/vendor/composer/autoload_psr4.php
create mode 100644 framework/Css_Parser/bundle/vendor/composer/autoload_real.php
create mode 100644 framework/Css_Parser/bundle/vendor/composer/installed.json
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/.travis.yml
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/CHANGELOG.md
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/README.md
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/composer.json
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/CSSList/AtRuleBlockList.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/CSSList/CSSBlockList.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/CSSList/CSSList.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/CSSList/Document.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/CSSList/KeyFrame.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/OutputFormat.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Parser.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Parsing/OutputException.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Parsing/UnexpectedTokenException.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Property/AtRule.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Property/CSSNamespace.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Property/Charset.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Property/Import.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Property/Selector.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Renderable.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Rule/Rule.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/RuleSet/AtRuleSet.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/RuleSet/DeclarationBlock.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/RuleSet/RuleSet.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Settings.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/CSSFunction.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/Color.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/PrimitiveValue.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/RuleValueList.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/Size.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/String.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/URL.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/Value.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/lib/Sabberworm/CSS/Value/ValueList.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/phpunit.xml
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/Sabberworm/CSS/OutputFormatTest.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/Sabberworm/CSS/ParserTest.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/Sabberworm/CSS/RuleSet/DeclarationBlockTest.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/Sabberworm/CSS/RuleSet/LenientParsingTest.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/bootstrap.php
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/-end-token-2.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/-end-token.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/-fault-tolerance.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/-tobedone.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/1readme.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/2readme.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/atrules.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/case-insensitivity.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/colortest.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/comments.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/create-shorthands.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/docuwiki.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/expand-shorthands.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/functions.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/ie.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/important.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/inner-color.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/namespaces.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/nested.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/slashed.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/specificity.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/unicode.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/values.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/webkit.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/files/whitespace.css
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/phpunit.xml
create mode 100644 framework/Css_Parser/bundle/vendor/sabberworm/php-css-parser/tests/quickdump.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/CSSList/AtRuleBlockList.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/CSSList/CSSBlockList.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/CSSList/CSSList.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/CSSList/Document.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/CSSList/KeyFrame.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/CSSList/MediaQuery.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Parser.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Parsing/UnexpectedTokenException.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Property/AtRule.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Property/CSSNamespace.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Property/Charset.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Property/Import.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Property/Selector.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Rule/Rule.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/RuleSet/AtRuleSet.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/RuleSet/DeclarationBlock.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/RuleSet/RuleSet.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Settings.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Value/CSSFunction.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Value/Color.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Value/PrimitiveValue.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Value/RuleValueList.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Value/Size.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Value/String.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Value/URL.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Value/Value.php
delete mode 100644 framework/Css_Parser/lib/Sabberworm/CSS/Value/ValueList.php
http://github.com/horde/horde/commit/f5c734bf3ec315b61a8a13f91cc6728f76f5aafd
More information about the commits
mailing list