6.0.0-beta1
9/6/25

[#445] could not retrieve old preference setting
Summary could not retrieve old preference setting
Queue IMP
Queue Version HEAD
Type Bug
State Resolved
Priority 2. Medium
Owners jan (at) horde (dot) org
Requester david (at) tmv (dot) gov (dot) tw
Created 08/04/2004 (7703 days ago)
Due
Updated 05/02/2014 (4145 days ago)
Assigned 09/08/2004 (7668 days ago)
Resolved 09/18/2004 (7658 days ago)
Github Issue Link
Github Pull Request
Milestone
Patch No

History
05/02/2014 04:33:17 PM Git Commit Comment #15 Reply to this comment
Changes have been made in Git (master):

commit 4853562ca84d707ef3973516eabfc09474d1b612
Author: Jan Schneider <jan@horde.org>
Date:   Fri May 2 18:21:16 2014 +0200

     [jan] Bundle PHPUnit and dependencies.

  framework/Test/bundle/composer.json                |    6 +
  framework/Test/bundle/composer.lock                |  768 ++++
  framework/Test/bundle/vendor/autoload.php          |    7 +
  framework/Test/bundle/vendor/bin/phpunit           |    1 +
  .../Test/bundle/vendor/composer/ClassLoader.php    |  378 ++
  .../bundle/vendor/composer/autoload_classmap.php   |  402 ++
  .../bundle/vendor/composer/autoload_namespaces.php |   10 +
  .../Test/bundle/vendor/composer/autoload_psr4.php  |    9 +
  .../Test/bundle/vendor/composer/autoload_real.php  |   57 +
  .../Test/bundle/vendor/composer/include_paths.php  |   18 +
  .../Test/bundle/vendor/composer/installed.json     |  773 ++++
  .../phpunit/php-code-coverage/.gitattributes       |    1 +
  .../vendor/phpunit/php-code-coverage/.gitignore    |   11 +
  .../vendor/phpunit/php-code-coverage/.travis.yml   |   20 +
  .../phpunit/php-code-coverage/CONTRIBUTING.md      |    5 +
  .../vendor/phpunit/php-code-coverage/LICENSE       |   33 +
  .../vendor/phpunit/php-code-coverage/README.md     |   39 +
  .../vendor/phpunit/php-code-coverage/build.xml     |   41 +
  .../phpunit/php-code-coverage/build/travis-ci.xml  |   21 +
  .../vendor/phpunit/php-code-coverage/composer.json |   53 +
  .../phpunit/php-code-coverage/phpunit.xml.dist     |   24 +
  .../php-code-coverage/scripts/auto_append.php      |    5 +
  .../php-code-coverage/scripts/auto_prepend.php     |   10 +
  .../phpunit/php-code-coverage/src/CodeCoverage.php |  901 +++++
  .../php-code-coverage/src/CodeCoverage/Driver.php  |   70 +
  .../src/CodeCoverage/Driver/HHVM.php               |   91 +
  .../src/CodeCoverage/Driver/Xdebug.php             |  140 +
  .../src/CodeCoverage/Exception.php                 |   59 +
  .../Exception/UnintentionallyCoveredCode.php       |   59 +
  .../php-code-coverage/src/CodeCoverage/Filter.php  |  403 ++
  .../src/CodeCoverage/Report/Clover.php             |  325 ++
  .../src/CodeCoverage/Report/Crap4j.php             |  163 +
  .../src/CodeCoverage/Report/Factory.php            |  281 ++
  .../src/CodeCoverage/Report/HTML.php               |  223 ++
  .../src/CodeCoverage/Report/HTML/Renderer.php      |  306 ++
  .../Report/HTML/Renderer/Dashboard.php             |  328 ++
  .../Report/HTML/Renderer/Directory.php             |  138 +
  .../src/CodeCoverage/Report/HTML/Renderer/File.php |  575 +++
  .../HTML/Renderer/Template/coverage_bar.html.dist  |    5 +
  .../HTML/Renderer/Template/css/bootstrap.min.css   |    7 +
  .../Report/HTML/Renderer/Template/css/nv.d3.css    |  769 ++++
  .../Report/HTML/Renderer/Template/css/style.css    |  114 +
  .../HTML/Renderer/Template/dashboard.html.dist     |  286 ++
  .../HTML/Renderer/Template/directory.html.dist     |   61 +
  .../Renderer/Template/directory_item.html.dist     |   12 +
  .../Report/HTML/Renderer/Template/file.html.dist   |   90 +
  .../HTML/Renderer/Template/file_item.html.dist     |   13 +
  .../fonts/glyphicons-halflings-regular.eot         |  Bin 0 -> 20335 bytes
  .../fonts/glyphicons-halflings-regular.svg         |  229 ++
  .../fonts/glyphicons-halflings-regular.ttf         |  Bin 0 -> 41280 bytes
  .../fonts/glyphicons-halflings-regular.woff        |  Bin 0 -> 23320 bytes
  .../HTML/Renderer/Template/js/bootstrap.min.js     |    6 +
  .../Report/HTML/Renderer/Template/js/d3.min.js     |    5 +
  .../Report/HTML/Renderer/Template/js/holder.js     |  648 +++
  .../Report/HTML/Renderer/Template/js/html5shiv.js  |    8 +
  .../Report/HTML/Renderer/Template/js/jquery.js     |    4 +
  .../Report/HTML/Renderer/Template/js/nv.d3.min.js  |    6 +
  .../HTML/Renderer/Template/js/respond.min.js       |    5 +
  .../HTML/Renderer/Template/method_item.html.dist   |   10 +
  .../src/CodeCoverage/Report/Node.php               |  380 ++
  .../src/CodeCoverage/Report/Node/Directory.php     |  512 +++
  .../src/CodeCoverage/Report/Node/File.php          |  703 ++++
  .../src/CodeCoverage/Report/Node/Iterator.php      |  148 +
  .../src/CodeCoverage/Report/PHP.php                |   92 +
  .../src/CodeCoverage/Report/Text.php               |  283 ++
  .../src/CodeCoverage/Report/XML.php                |  275 ++
  .../src/CodeCoverage/Report/XML/Directory.php      |   57 +
  .../src/CodeCoverage/Report/XML/File.php           |  110 +
  .../src/CodeCoverage/Report/XML/File/Coverage.php  |  107 +
  .../src/CodeCoverage/Report/XML/File/Method.php    |   99 +
  .../src/CodeCoverage/Report/XML/File/Report.php    |  110 +
  .../src/CodeCoverage/Report/XML/File/Unit.php      |  133 +
  .../src/CodeCoverage/Report/XML/Node.php           |  127 +
  .../src/CodeCoverage/Report/XML/Project.php        |  101 +
  .../src/CodeCoverage/Report/XML/Tests.php          |   85 +
  .../src/CodeCoverage/Report/XML/Totals.php         |  171 +
  .../php-code-coverage/src/CodeCoverage/Util.php    |   86 +
  .../CodeCoverage/Util/InvalidArgumentHelper.php    |   80 +
  .../tests/PHP/CodeCoverage/FilterTest.php          |  316 ++
  .../tests/PHP/CodeCoverage/Report/CloverTest.php   |  109 +
  .../tests/PHP/CodeCoverage/Report/FactoryTest.php  |  263 ++
  .../tests/PHP/CodeCoverage/UtilTest.php            |   72 +
  .../tests/PHP/CodeCoverageTest.php                 |  482 +++
  .../phpunit/php-code-coverage/tests/TestCase.php   |  343 ++
  .../tests/_files/BankAccount-clover.xml            |   26 +
  .../php-code-coverage/tests/_files/BankAccount.php |   33 +
  .../tests/_files/BankAccountTest.php               |   66 +
  .../tests/_files/CoverageClassExtendedTest.php     |   12 +
  .../tests/_files/CoverageClassTest.php             |   12 +
  .../_files/CoverageFunctionParenthesesTest.php     |   11 +
  .../CoverageFunctionParenthesesWhitespaceTest.php  |   11 +
  .../tests/_files/CoverageFunctionTest.php          |   11 +
  .../_files/CoverageMethodOneLineAnnotationTest.php |   11 +
  .../tests/_files/CoverageMethodParenthesesTest.php |   12 +
  .../CoverageMethodParenthesesWhitespaceTest.php    |   12 +
  .../tests/_files/CoverageMethodTest.php            |   12 +
  .../tests/_files/CoverageNoneTest.php              |    9 +
  .../tests/_files/CoverageNotPrivateTest.php        |   12 +
  .../tests/_files/CoverageNotProtectedTest.php      |   12 +
  .../tests/_files/CoverageNotPublicTest.php         |   12 +
  .../tests/_files/CoverageNothingTest.php           |   13 +
  .../tests/_files/CoveragePrivateTest.php           |   12 +
  .../tests/_files/CoverageProtectedTest.php         |   12 +
  .../tests/_files/CoveragePublicTest.php            |   12 +
  .../_files/CoverageTwoDefaultClassAnnotations.php  |   19 +
  .../tests/_files/CoveredClass.php                  |   36 +
  .../tests/_files/CoveredFunction.php               |    4 +
  .../_files/NamespaceCoverageClassExtendedTest.php  |   12 +
  .../tests/_files/NamespaceCoverageClassTest.php    |   12 +
  .../NamespaceCoverageCoversClassPublicTest.php     |   15 +
  .../_files/NamespaceCoverageCoversClassTest.php    |   20 +
  .../tests/_files/NamespaceCoverageMethodTest.php   |   12 +
  .../_files/NamespaceCoverageNotPrivateTest.php     |   12 +
  .../_files/NamespaceCoverageNotProtectedTest.php   |   12 +
  .../_files/NamespaceCoverageNotPublicTest.php      |   12 +
  .../tests/_files/NamespaceCoveragePrivateTest.php  |   12 +
  .../_files/NamespaceCoverageProtectedTest.php      |   12 +
  .../tests/_files/NamespaceCoveragePublicTest.php   |   12 +
  .../tests/_files/NamespaceCoveredClass.php         |   38 +
  .../tests/_files/NotExistingCoveredElementTest.php |   24 +
  .../class-with-anonymous-function-clover.xml       |   22 +
  .../tests/_files/ignored-lines-clover.xml          |   17 +
  .../source_with_class_and_anonymous_function.php   |   19 +
  .../tests/_files/source_with_ignore.php            |   37 +
  .../tests/_files/source_with_namespace.php         |   20 +
  .../_files/source_with_oneline_annotations.php     |   36 +
  .../tests/_files/source_without_ignore.php         |    4 +
  .../tests/_files/source_without_namespace.php      |   18 +
  .../phpunit/php-file-iterator/.gitattributes       |    1 +
  .../vendor/phpunit/php-file-iterator/.gitignore    |    7 +
  .../phpunit/php-file-iterator/ChangeLog.markdown   |   31 +
  .../phpunit/php-file-iterator/File/Iterator.php    |  196 +
  .../php-file-iterator/File/Iterator/Autoload.php   |   66 +
  .../File/Iterator/Autoload.php.in                  |   64 +
  .../php-file-iterator/File/Iterator/Facade.php     |  161 +
  .../php-file-iterator/File/Iterator/Factory.php    |  120 +
  .../vendor/phpunit/php-file-iterator/LICENSE       |   33 +
  .../phpunit/php-file-iterator/README.markdown      |   23 +
  .../vendor/phpunit/php-file-iterator/build.xml     |  161 +
  .../ControlStructures/ControlSignatureSniff.php    |   22 +
  .../Whitespace/ConcatenationSpacingSniff.php       |   22 +
  .../php-file-iterator/build/PHPCS/ruleset.xml      |   35 +
  .../phpunit/php-file-iterator/build/phpmd.xml      |   27 +
  .../vendor/phpunit/php-file-iterator/composer.json |   33 +
  .../vendor/phpunit/php-file-iterator/package.xml   |   65 +
  .../phpunit/php-text-template/.gitattributes       |    1 +
  .../vendor/phpunit/php-text-template/.gitignore    |    7 +
  .../vendor/phpunit/php-text-template/ChangeLog.md  |    9 +
  .../vendor/phpunit/php-text-template/LICENSE       |   33 +
  .../vendor/phpunit/php-text-template/README.md     |   23 +
  .../phpunit/php-text-template/Text/Template.php    |  176 +
  .../php-text-template/Text/Template/Autoload.php   |   65 +
  .../Text/Template/Autoload.php.in                  |   65 +
  .../vendor/phpunit/php-text-template/build.xml     |  161 +
  .../ControlStructures/ControlSignatureSniff.php    |   22 +
  .../Whitespace/ConcatenationSpacingSniff.php       |   22 +
  .../php-text-template/build/PHPCS/ruleset.xml      |   35 +
  .../phpunit/php-text-template/build/phpmd.xml      |   27 +
  .../vendor/phpunit/php-text-template/composer.json |   32 +
  .../vendor/phpunit/php-text-template/package.xml   |   59 +
  .../bundle/vendor/phpunit/php-timer/.gitattributes |    1 +
  .../bundle/vendor/phpunit/php-timer/.gitignore     |    7 +
  .../Test/bundle/vendor/phpunit/php-timer/LICENSE   |   33 +
  .../bundle/vendor/phpunit/php-timer/PHP/Timer.php  |  148 +
  .../phpunit/php-timer/PHP/Timer/Autoload.php       |   66 +
  .../phpunit/php-timer/PHP/Timer/Autoload.php.in    |   66 +
  .../Test/bundle/vendor/phpunit/php-timer/README.md |   56 +
  .../vendor/phpunit/php-timer/Tests/TimerTest.php   |  142 +
  .../Test/bundle/vendor/phpunit/php-timer/build.xml |  160 +
  .../ControlStructures/ControlSignatureSniff.php    |   22 +
  .../Whitespace/ConcatenationSpacingSniff.php       |   22 +
  .../phpunit/php-timer/build/PHPCS/ruleset.xml      |   35 +
  .../vendor/phpunit/php-timer/build/phpmd.xml       |   27 +
  .../bundle/vendor/phpunit/php-timer/composer.json  |   32 +
  .../bundle/vendor/phpunit/php-timer/package.xml    |   58 +
  .../vendor/phpunit/php-timer/phpunit.xml.dist      |   26 +
  .../vendor/phpunit/php-token-stream/.gitattributes |    1 +
  .../vendor/phpunit/php-token-stream/.gitignore     |    7 +
  .../bundle/vendor/phpunit/php-token-stream/LICENSE |   33 +
  .../vendor/phpunit/php-token-stream/PHP/Token.php  |  732 ++++
  .../phpunit/php-token-stream/PHP/Token/Stream.php  |  627 +++
  .../php-token-stream/PHP/Token/Stream/Autoload.php |  226 ++
  .../PHP/Token/Stream/Autoload.php.in               |   65 +
  .../PHP/Token/Stream/CachingFactory.php            |   85 +
  .../vendor/phpunit/php-token-stream/README.md      |   22 +
  .../php-token-stream/Tests/Token/ClassTest.php     |  128 +
  .../php-token-stream/Tests/Token/ClosureTest.php   |  129 +
  .../php-token-stream/Tests/Token/FunctionTest.php  |  190 +
  .../php-token-stream/Tests/Token/IncludeTest.php   |  117 +
  .../php-token-stream/Tests/Token/InterfaceTest.php |  236 ++
  .../php-token-stream/Tests/Token/NamespaceTest.php |  124 +
  .../phpunit/php-token-stream/Tests/TokenTest.php   |   85 +
  .../Tests/_files/classExtendsNamespacedClass.php   |    9 +
  .../Tests/_files/classInNamespace.php              |    6 +
  .../Tests/_files/classInScopedNamespace.php        |    8 +
  .../php-token-stream/Tests/_files/closure.php      |    7 +
  .../php-token-stream/Tests/_files/issue19.php      |    3 +
  .../php-token-stream/Tests/_files/issue30.php      |    8 +
  .../multipleNamespacesWithOneClassUsingBraces.php  |   12 +
  ...leNamespacesWithOneClassUsingNonBraceSyntax.php |   14 +
  .../php-token-stream/Tests/_files/source.php       |   36 +
  .../php-token-stream/Tests/_files/source2.php      |    6 +
  .../php-token-stream/Tests/_files/source3.php      |   14 +
  .../php-token-stream/Tests/_files/source4.php      |   30 +
  .../php-token-stream/Tests/_files/source5.php      |    5 +
  .../vendor/phpunit/php-token-stream/build.xml      |  162 +
  .../ControlStructures/ControlSignatureSniff.php    |   22 +
  .../Whitespace/ConcatenationSpacingSniff.php       |   22 +
  .../php-token-stream/build/PHPCS/ruleset.xml       |   35 +
  .../phpunit/php-token-stream/build/phpmd.xml       |   27 +
  .../vendor/phpunit/php-token-stream/composer.json  |   38 +
  .../vendor/phpunit/php-token-stream/package.xml    |   69 +
  .../phpunit/php-token-stream/phpunit.xml.dist      |   27 +
  .../phpunit/phpunit-mock-objects/.gitattributes    |    1 +
  .../vendor/phpunit/phpunit-mock-objects/.gitignore |    8 +
  .../phpunit/phpunit-mock-objects/.travis.yml       |   25 +
  .../phpunit/phpunit-mock-objects/CONTRIBUTING.md   |    5 +
  .../vendor/phpunit/phpunit-mock-objects/LICENSE    |   33 +
  .../vendor/phpunit/phpunit-mock-objects/README.md  |   20 +
  .../vendor/phpunit/phpunit-mock-objects/build.xml  |   49 +
  .../phpunit-mock-objects/build/travis-ci.xml       |   21 +
  .../phpunit/phpunit-mock-objects/composer.json     |   45 +
  .../phpunit/phpunit-mock-objects/phpunit.xml.dist  |   25 +
  .../src/Framework/MockObject/Builder/Identity.php  |   70 +
  .../MockObject/Builder/InvocationMocker.php        |  294 ++
  .../src/Framework/MockObject/Builder/Match.php     |   66 +
  .../MockObject/Builder/MethodNameMatch.php         |   68 +
  .../src/Framework/MockObject/Builder/Namespace.php |   79 +
  .../MockObject/Builder/ParametersMatch.php         |   89 +
  .../src/Framework/MockObject/Builder/Stub.php      |   66 +
  .../src/Framework/MockObject/Exception.php         |   57 +
  .../src/Framework/MockObject/Generator.php         | 1059 +++++
  .../MockObject/Generator/mocked_class.tpl.dist     |   36 +
  .../Generator/mocked_class_method.tpl.dist         |    7 +
  .../MockObject/Generator/mocked_clone.tpl.dist     |    4 +
  .../MockObject/Generator/mocked_method.tpl.dist    |   22 +
  .../MockObject/Generator/proxied_method.tpl.dist   |   22 +
  .../MockObject/Generator/trait_class.tpl.dist      |    4 +
  .../MockObject/Generator/unmocked_clone.tpl.dist   |    5 +
  .../MockObject/Generator/wsdl_class.tpl.dist       |    7 +
  .../MockObject/Generator/wsdl_method.tpl.dist      |    4 +
  .../src/Framework/MockObject/Invocation.php        |   58 +
  .../src/Framework/MockObject/Invocation/Object.php |   75 +
  .../src/Framework/MockObject/Invocation/Static.php |  193 +
  .../src/Framework/MockObject/InvocationMocker.php  |  195 +
  .../src/Framework/MockObject/Invokable.php         |   79 +
  .../src/Framework/MockObject/Matcher.php           |  316 ++
  .../MockObject/Matcher/AnyInvokedCount.php         |   72 +
  .../Framework/MockObject/Matcher/AnyParameters.php |   74 +
  .../MockObject/Matcher/ConsecutiveParameters.php   |  162 +
  .../Framework/MockObject/Matcher/Invocation.php    |   88 +
  .../MockObject/Matcher/InvokedAtIndex.php          |  127 +
  .../MockObject/Matcher/InvokedAtLeastOnce.php      |   85 +
  .../Framework/MockObject/Matcher/InvokedCount.php  |  151 +
  .../MockObject/Matcher/InvokedRecorder.php         |  107 +
  .../Framework/MockObject/Matcher/MethodName.php    |  102 +
  .../Framework/MockObject/Matcher/Parameters.php    |  160 +
  .../MockObject/Matcher/StatelessInvocation.php     |   96 +
  .../src/Framework/MockObject/MockBuilder.php       |  363 ++
  .../src/Framework/MockObject/MockObject.php        |   86 +
  .../src/Framework/MockObject/Stub.php              |   71 +
  .../Framework/MockObject/Stub/ConsecutiveCalls.php |   87 +
  .../src/Framework/MockObject/Stub/Exception.php    |   80 +
  .../MockObject/Stub/MatcherCollection.php          |   66 +
  .../src/Framework/MockObject/Stub/Return.php       |   78 +
  .../Framework/MockObject/Stub/ReturnArgument.php   |   78 +
  .../Framework/MockObject/Stub/ReturnCallback.php   |   94 +
  .../src/Framework/MockObject/Stub/ReturnSelf.php   |   76 +
  .../Framework/MockObject/Stub/ReturnValueMap.php   |   87 +
  .../src/Framework/MockObject/Verifiable.php        |   65 +
  .../phpunit-mock-objects/tests/GeneratorTest.php   |  165 +
  .../phpunit-mock-objects/tests/MockBuilderTest.php |  148 +
  .../tests/MockObject/Invocation/ObjectTest.php     |   81 +
  .../tests/MockObject/Invocation/StaticTest.php     |   52 +
  .../Matcher/ConsecutiveParametersTest.php          |   32 +
  .../tests/MockObject/class.phpt                    |  121 +
  .../tests/MockObject/class_call_parent_clone.phpt  |   73 +
  .../MockObject/class_call_parent_constructor.phpt  |   72 +
  .../MockObject/class_dont_call_parent_clone.phpt   |   72 +
  .../class_dont_call_parent_constructor.phpt        |   72 +
  ...ementing_interface_call_parent_constructor.phpt |   77 +
  ...ing_interface_dont_call_parent_constructor.phpt |   77 +
  .../tests/MockObject/class_partial.phpt            |   99 +
  .../MockObject/class_with_method_named_method.phpt |   88 +
  .../tests/MockObject/interface.phpt                |   93 +
  .../MockObject/invocation_object_clone_object.phpt |  122 +
  .../tests/MockObject/namespaced_class.phpt         |  123 +
  .../namespaced_class_call_parent_clone.phpt        |   75 +
  .../namespaced_class_call_parent_constructor.phpt  |   74 +
  .../namespaced_class_dont_call_parent_clone.phpt   |   74 +
  ...espaced_class_dont_call_parent_constructor.phpt |   74 +
  ...ementing_interface_call_parent_constructor.phpt |   79 +
  ...ing_interface_dont_call_parent_constructor.phpt |   79 +
  .../tests/MockObject/namespaced_class_partial.phpt |  101 +
  .../tests/MockObject/namespaced_interface.phpt     |   95 +
  .../tests/MockObject/nonexistent_class.phpt        |   70 +
  .../nonexistent_class_with_namespace.phpt          |   78 +
  ...ass_with_namespace_starting_with_separator.phpt |   78 +
  .../tests/MockObject/proxy.phpt                    |  117 +
  .../tests/MockObject/wsdl_class.phpt               |   37 +
  .../tests/MockObject/wsdl_class_namespace.phpt     |   39 +
  .../tests/MockObject/wsdl_class_partial.phpt       |   30 +
  .../phpunit-mock-objects/tests/MockObjectTest.php  |  781 ++++
  .../phpunit-mock-objects/tests/ProxyObjectTest.php |   80 +
  .../tests/_fixture/AbstractMockTestClass.php       |   10 +
  .../tests/_fixture/AbstractTrait.php               |   15 +
  .../tests/_fixture/AnInterface.php                 |    5 +
  .../tests/_fixture/AnotherInterface.php            |    5 +
  .../phpunit-mock-objects/tests/_fixture/Bar.php    |    8 +
  .../phpunit-mock-objects/tests/_fixture/Foo.php    |    8 +
  .../tests/_fixture/FunctionCallback.php            |    9 +
  .../tests/_fixture/GoogleSearch.wsdl               |  198 +
  .../tests/_fixture/InterfaceWithStaticMethod.php   |    5 +
  .../tests/_fixture/MethodCallback.php              |   21 +
  .../tests/_fixture/MethodCallbackByReference.php   |   13 +
  .../tests/_fixture/Mockable.php                    |   28 +
  .../tests/_fixture/PartialMockTestClass.php        |   18 +
  .../tests/_fixture/SomeClass.php                   |   13 +
  .../tests/_fixture/StaticMockTestClass.php         |   12 +
  .../_fixture/TraversableMockTestInterface.php      |    4 +
  .../phpunit-mock-objects/tests/autoload.php        |   38 +
  .../phpunit-mock-objects/tests/bootstrap.php       |    4 +
  .../vendor/phpunit/phpunit-story/.gitattributes    |    1 +
  .../bundle/vendor/phpunit/phpunit-story/.gitignore |    1 +
  .../phpunit/phpunit-story/ChangeLog.markdown       |   19 +
  .../bundle/vendor/phpunit/phpunit-story/LICENSE    |   33 +
  .../PHPUnit/Extensions/Story/Autoload.php          |   73 +
  .../PHPUnit/Extensions/Story/Autoload.php.in       |   65 +
  .../PHPUnit/Extensions/Story/Given.php             |   71 +
  .../PHPUnit/Extensions/Story/ResultPrinter.php     |  102 +
  .../Extensions/Story/ResultPrinter/HTML.php        |  212 +
  .../ResultPrinter/Template/scenario.html.dist      |   12 +
  .../Template/scenario_header.html.dist             |    5 +
  .../ResultPrinter/Template/scenarios.html.dist     |   60 +
  .../Story/ResultPrinter/Template/step.html.dist    |    5 +
  .../Extensions/Story/ResultPrinter/Text.php        |  150 +
  .../PHPUnit/Extensions/Story/Scenario.php          |  189 +
  .../PHPUnit/Extensions/Story/Step.php              |  128 +
  .../PHPUnit/Extensions/Story/TestCase.php          |  210 +
  .../PHPUnit/Extensions/Story/Then.php              |   71 +
  .../PHPUnit/Extensions/Story/When.php              |   71 +
  .../phpunit-story/Tests/Functional/default.phpt    |   19 +
  .../phpunit-story/Tests/Functional/story.phpt      |   81 +
  .../phpunit-story/Tests/Functional/testdox.phpt    |   21 +
  .../phpunit-story/Tests/_files/BowlingGame.php     |  107 +
  .../phpunit-story/Tests/_files/BowlingGameSpec.php |  182 +
  .../bundle/vendor/phpunit/phpunit-story/build.xml  |   13 +
  .../vendor/phpunit/phpunit-story/composer.json     |   36 +
  .../vendor/phpunit/phpunit-story/package.xml       |   97 +
  .../vendor/phpunit/phpunit-story/phpunit.xml.dist  |   27 +
  .../bundle/vendor/phpunit/phpunit/.gitattributes   |    3 +
  .../Test/bundle/vendor/phpunit/phpunit/.gitignore  |   21 +
  .../Test/bundle/vendor/phpunit/phpunit/.travis.yml |   31 +
  .../bundle/vendor/phpunit/phpunit/CONTRIBUTING.md  |   23 +
  .../Test/bundle/vendor/phpunit/phpunit/LICENSE     |   33 +
  .../Test/bundle/vendor/phpunit/phpunit/README.md   |   40 +
  .../Test/bundle/vendor/phpunit/phpunit/build.xml   |  348 ++
  .../bundle/vendor/phpunit/phpunit/build/ca.pem     |   44 +
  .../phpunit/phpunit/build/phar-autoload.php.in     |   43 +
  .../vendor/phpunit/phpunit/build/phar-manifest.php |   27 +
  .../vendor/phpunit/phpunit/build/phar-version.php  |   22 +
  .../bundle/vendor/phpunit/phpunit/build/phpmd.xml  |   27 +
  .../vendor/phpunit/phpunit/build/travis-ci.xml     |   35 +
  .../bundle/vendor/phpunit/phpunit/composer.json    |   65 +
  .../bundle/vendor/phpunit/phpunit/phpdox.xml.dist  |   22 +
  .../Test/bundle/vendor/phpunit/phpunit/phpunit     |   55 +
  .../bundle/vendor/phpunit/phpunit/phpunit.xml.dist |   40 +
  .../Test/bundle/vendor/phpunit/phpunit/phpunit.xsd |  252 ++
  .../vendor/phpunit/phpunit/src/Exception.php       |   59 +
  .../phpunit/src/Extensions/GroupTestSuite.php      |   99 +
  .../phpunit/src/Extensions/PhptTestCase.php        |  256 ++
  .../phpunit/src/Extensions/PhptTestSuite.php       |   82 +
  .../phpunit/src/Extensions/RepeatedTest.php        |  145 +
  .../phpunit/src/Extensions/TestDecorator.php       |  149 +
  .../phpunit/src/Extensions/TicketListener.php      |  232 ++
  .../phpunit/phpunit/src/Framework/Assert.php       | 2993 ++++++++++++++
  .../phpunit/src/Framework/Assert/Functions.php     | 2461 ++++++++++++
  .../phpunit/src/Framework/AssertionFailedError.php |   68 +
  .../phpunit/src/Framework/BaseTestListener.php     |   78 +
  .../src/Framework/CodeCoverageException.php        |   57 +
  .../phpunit/phpunit/src/Framework/Constraint.php   |  189 +
  .../phpunit/src/Framework/Constraint/And.php       |  164 +
  .../src/Framework/Constraint/ArrayHasKey.php       |  123 +
  .../phpunit/src/Framework/Constraint/Attribute.php |  129 +
  .../phpunit/src/Framework/Constraint/Callback.php  |  116 +
  .../src/Framework/Constraint/ClassHasAttribute.php |  125 +
  .../Constraint/ClassHasStaticAttribute.php         |   98 +
  .../phpunit/src/Framework/Constraint/Composite.php |  113 +
  .../phpunit/src/Framework/Constraint/Count.php     |  146 +
  .../phpunit/src/Framework/Constraint/Exception.php |  132 +
  .../src/Framework/Constraint/ExceptionCode.php     |  110 +
  .../src/Framework/Constraint/ExceptionMessage.php  |  110 +
  .../src/Framework/Constraint/FileExists.php        |  102 +
  .../src/Framework/Constraint/GreaterThan.php       |   97 +
  .../src/Framework/Constraint/IsAnything.php        |  102 +
  .../phpunit/src/Framework/Constraint/IsEmpty.php   |  108 +
  .../phpunit/src/Framework/Constraint/IsEqual.php   |  216 +
  .../phpunit/src/Framework/Constraint/IsFalse.php   |   82 +
  .../src/Framework/Constraint/IsIdentical.php       |  172 +
  .../src/Framework/Constraint/IsInstanceOf.php      |  135 +
  .../phpunit/src/Framework/Constraint/IsJson.php    |  109 +
  .../phpunit/src/Framework/Constraint/IsNull.php    |   82 +
  .../phpunit/src/Framework/Constraint/IsTrue.php    |   82 +
  .../phpunit/src/Framework/Constraint/IsType.php    |  192 +
  .../src/Framework/Constraint/JsonMatches.php       |  111 +
  .../JsonMatches/ErrorMessageProvider.php           |  107 +
  .../phpunit/src/Framework/Constraint/LessThan.php  |   97 +
  .../phpunit/src/Framework/Constraint/Not.php       |  205 +
  .../Framework/Constraint/ObjectHasAttribute.php    |   77 +
  .../phpunit/src/Framework/Constraint/Or.php        |  157 +
  .../phpunit/src/Framework/Constraint/PCREMatch.php |  106 +
  .../phpunit/src/Framework/Constraint/SameSize.php  |   73 +
  .../src/Framework/Constraint/StringContains.php    |  124 +
  .../src/Framework/Constraint/StringEndsWith.php    |   97 +
  .../src/Framework/Constraint/StringMatches.php     |  145 +
  .../src/Framework/Constraint/StringStartsWith.php  |   97 +
  .../Framework/Constraint/TraversableContains.php   |  168 +
  .../Constraint/TraversableContainsOnly.php         |  136 +
  .../phpunit/src/Framework/Constraint/Xor.php       |  162 +
  .../vendor/phpunit/phpunit/src/Framework/Error.php |   75 +
  .../phpunit/src/Framework/Error/Deprecated.php     |   65 +
  .../phpunit/phpunit/src/Framework/Error/Notice.php |   65 +
  .../phpunit/src/Framework/Error/Warning.php        |   65 +
  .../phpunit/phpunit/src/Framework/Exception.php    |   57 +
  .../src/Framework/ExpectationFailedException.php   |   82 +
  .../phpunit/src/Framework/IncompleteTest.php       |   60 +
  .../phpunit/src/Framework/IncompleteTestError.php  |   60 +
  .../src/Framework/InvalidCoversTargetError.php     |   60 +
  .../src/Framework/InvalidCoversTargetException.php |   57 +
  .../phpunit/phpunit/src/Framework/OutputError.php  |   60 +
  .../phpunit/phpunit/src/Framework/RiskyTest.php    |   60 +
  .../phpunit/src/Framework/RiskyTestError.php       |   60 +
  .../phpunit/src/Framework/SelfDescribing.php       |   65 +
  .../phpunit/phpunit/src/Framework/SkippedTest.php  |   59 +
  .../phpunit/src/Framework/SkippedTestError.php     |   60 +
  .../src/Framework/SkippedTestSuiteError.php        |   60 +
  .../phpunit/src/Framework/SyntheticError.php       |  121 +
  .../vendor/phpunit/phpunit/src/Framework/Test.php  |   66 +
  .../phpunit/phpunit/src/Framework/TestCase.php     | 1914 +++++++++
  .../phpunit/phpunit/src/Framework/TestFailure.php  |  175 +
  .../phpunit/phpunit/src/Framework/TestListener.php |  136 +
  .../phpunit/phpunit/src/Framework/TestResult.php   | 1124 ++++++
  .../phpunit/phpunit/src/Framework/TestSuite.php    |  911 +++++
  .../src/Framework/TestSuite/DataProvider.php       |   70 +
  .../Framework/UnintentionallyCoveredCodeError.php  |   60 +
  .../phpunit/phpunit/src/Framework/Warning.php      |  120 +
  .../phpunit/phpunit/src/Runner/BaseTestRunner.php  |  183 +
  .../phpunit/phpunit/src/Runner/Exception.php       |   57 +
  .../phpunit/phpunit/src/Runner/Filter/Factory.php  |   92 +
  .../phpunit/phpunit/src/Runner/Filter/Group.php    |   98 +
  .../phpunit/src/Runner/Filter/Group/Exclude.php    |   61 +
  .../phpunit/src/Runner/Filter/Group/Include.php    |   61 +
  .../phpunit/phpunit/src/Runner/Filter/Test.php     |  159 +
  .../phpunit/src/Runner/StandardTestSuiteLoader.php |  157 +
  .../phpunit/phpunit/src/Runner/TestSuiteLoader.php |   71 +
  .../vendor/phpunit/phpunit/src/Runner/Version.php  |  105 +
  .../vendor/phpunit/phpunit/src/TextUI/Command.php  |  971 +++++
  .../phpunit/phpunit/src/TextUI/ResultPrinter.php   |  732 ++++
  .../phpunit/phpunit/src/TextUI/TestRunner.php      |  983 +++++
  .../vendor/phpunit/phpunit/src/Util/Blacklist.php  |  141 +
  .../phpunit/phpunit/src/Util/Configuration.php     | 1088 ++++++
  .../phpunit/phpunit/src/Util/DeprecatedFeature.php |  108 +
  .../phpunit/src/Util/DeprecatedFeature/Logger.php  |  212 +
  .../phpunit/phpunit/src/Util/ErrorHandler.php      |  126 +
  .../vendor/phpunit/phpunit/src/Util/Fileloader.php |  108 +
  .../vendor/phpunit/phpunit/src/Util/Filesystem.php |   81 +
  .../vendor/phpunit/phpunit/src/Util/Filter.php     |  142 +
  .../vendor/phpunit/phpunit/src/Util/Getopt.php     |  198 +
  .../phpunit/phpunit/src/Util/GlobalState.php       |  389 ++
  .../phpunit/src/Util/InvalidArgumentHelper.php     |   81 +
  .../vendor/phpunit/phpunit/src/Util/Log/JSON.php   |  282 ++
  .../vendor/phpunit/phpunit/src/Util/Log/JUnit.php  |  483 +++
  .../vendor/phpunit/phpunit/src/Util/Log/TAP.php    |  272 ++
  .../bundle/vendor/phpunit/phpunit/src/Util/PHP.php |  239 ++
  .../phpunit/phpunit/src/Util/PHP/Default.php       |  121 +
  .../src/Util/PHP/Template/TestCaseMethod.tpl.dist  |   65 +
  .../phpunit/phpunit/src/Util/PHP/Windows.php       |   92 +
  .../vendor/phpunit/phpunit/src/Util/Printer.php    |  208 +
  .../vendor/phpunit/phpunit/src/Util/String.php     |  110 +
  .../vendor/phpunit/phpunit/src/Util/Test.php       |  957 +++++
  .../phpunit/src/Util/TestDox/NamePrettifier.php    |  177 +
  .../phpunit/src/Util/TestDox/ResultPrinter.php     |  368 ++
  .../src/Util/TestDox/ResultPrinter/HTML.php        |  123 +
  .../src/Util/TestDox/ResultPrinter/Text.php        |   95 +
  .../phpunit/phpunit/src/Util/TestSuiteIterator.php |  148 +
  .../vendor/phpunit/phpunit/src/Util/Type.php       |   79 +
  .../bundle/vendor/phpunit/phpunit/src/Util/XML.php |  966 +++++
  .../phpunit/tests/Extensions/RepeatedTestTest.php  |  107 +
  .../phpunit/phpunit/tests/Framework/AssertTest.php | 4127 
++++++++++++++++++++
  .../tests/Framework/BaseTestListenerTest.php       |   75 +
  .../tests/Framework/Constraint/CountTest.php       |  106 +
  .../JsonMatches/ErrorMessageProviderTest.php       |  122 +
  .../tests/Framework/Constraint/JsonMatchesTest.php |   89 +
  .../phpunit/tests/Framework/ConstraintTest.php     | 3664 +++++++++++++++++
  .../tests/Framework/SelectorAssertionsTest.php     |  977 +++++
  .../phpunit/phpunit/tests/Framework/SuiteTest.php  |  216 +
  .../phpunit/tests/Framework/TestCaseTest.php       |  456 +++
  .../phpunit/tests/Framework/TestFailureTest.php    |   68 +
  .../tests/Framework/TestImplementorTest.php        |   71 +
  .../phpunit/tests/Framework/TestListenerTest.php   |  149 +
  .../phpunit/phpunit/tests/Regression/1021.phpt     |   19 +
  .../tests/Regression/1021/Issue1021Test.php        |   23 +
  .../phpunit/phpunit/tests/Regression/523.phpt      |   19 +
  .../phpunit/tests/Regression/523/Issue523Test.php  |   13 +
  .../phpunit/phpunit/tests/Regression/578.phpt      |   37 +
  .../phpunit/tests/Regression/578/Issue578Test.php  |   20 +
  .../phpunit/phpunit/tests/Regression/684.phpt      |   25 +
  .../phpunit/tests/Regression/684/Issue684Test.php  |    4 +
  .../phpunit/phpunit/tests/Regression/783.phpt      |   21 +
  .../phpunit/tests/Regression/783/ChildSuite.php    |   15 +
  .../phpunit/tests/Regression/783/OneTest.php       |   10 +
  .../phpunit/tests/Regression/783/ParentSuite.php   |   13 +
  .../phpunit/tests/Regression/783/TwoTest.php       |   10 +
  .../phpunit/tests/Regression/GitHub/244.phpt       |   32 +
  .../tests/Regression/GitHub/244/Issue244Test.php   |   55 +
  .../phpunit/tests/Regression/GitHub/322.phpt       |   28 +
  .../tests/Regression/GitHub/322/Issue322Test.php   |   17 +
  .../tests/Regression/GitHub/322/phpunit322.xml     |   11 +
  .../phpunit/tests/Regression/GitHub/433.phpt       |   31 +
  .../tests/Regression/GitHub/433/Issue433Test.php   |   21 +
  .../phpunit/tests/Regression/GitHub/445.phpt       |   32 +
  .../tests/Regression/GitHub/445/Issue445Test.php   |   21 +
  .../phpunit/tests/Regression/GitHub/498.phpt       |   29 +
  .../tests/Regression/GitHub/498/Issue498Test.php   |   46 +
  .../phpunit/tests/Regression/GitHub/503.phpt       |   33 +
  .../tests/Regression/GitHub/503/Issue503Test.php   |   11 +
  .../phpunit/tests/Regression/GitHub/581.phpt       |   42 +
  .../tests/Regression/GitHub/581/Issue581Test.php   |   10 +
  .../phpunit/tests/Regression/GitHub/74.phpt        |   28 +
  .../tests/Regression/GitHub/74/Issue74Test.php     |    9 +
  .../tests/Regression/GitHub/74/NewException.php    |    4 +
  .../phpunit/tests/Regression/GitHub/765.phpt       |   26 +
  .../tests/Regression/GitHub/765/Issue765Test.php   |   22 +
  .../phpunit/tests/Regression/GitHub/863.phpt       |   24 +
  .../phpunit/tests/Regression/GitHub/873.phpt       |   16 +
  .../tests/Regression/GitHub/873/Issue873Test.php   |    9 +
  .../phpunit/tests/Runner/BaseTestRunnerTest.php    |   63 +
  .../phpunit/tests/TextUI/abstract-test-class.phpt  |   25 +
  .../phpunit/tests/TextUI/concrete-test-class.phpt  |   19 +
  .../phpunit/tests/TextUI/custom-printer-debug.phpt |   29 +
  .../tests/TextUI/custom-printer-verbose.phpt       |   31 +
  .../TextUI/dataprovider-log-xml-isolation.phpt     |   47 +
  .../phpunit/tests/TextUI/dataprovider-log-xml.phpt |   46 +
  .../phpunit/tests/TextUI/dataprovider-testdox.phpt |   17 +
  .../vendor/phpunit/phpunit/tests/TextUI/debug.phpt |   26 +
  .../phpunit/tests/TextUI/default-isolation.phpt    |   20 +
  .../phpunit/phpunit/tests/TextUI/default.phpt      |   19 +
  .../tests/TextUI/dependencies-isolation.phpt       |   38 +
  .../phpunit/phpunit/tests/TextUI/dependencies.phpt |   37 +
  .../tests/TextUI/dependencies2-isolation.phpt      |   20 +
  .../phpunit/tests/TextUI/dependencies2.phpt        |   19 +
  .../tests/TextUI/dependencies3-isolation.phpt      |   20 +
  .../phpunit/tests/TextUI/dependencies3.phpt        |   19 +
  .../phpunit/tests/TextUI/empty-testcase.phpt       |   25 +
  .../phpunit/tests/TextUI/exception-stack.phpt      |   66 +
  .../tests/TextUI/exclude-group-isolation.phpt      |   22 +
  .../phpunit/tests/TextUI/exclude-group.phpt        |   21 +
  .../phpunit/tests/TextUI/failure-isolation.phpt    |  142 +
  .../phpunit/phpunit/tests/TextUI/failure.phpt      |  141 +
  .../phpunit/tests/TextUI/fatal-isolation.phpt      |   26 +
  .../vendor/phpunit/phpunit/tests/TextUI/fatal.phpt |   16 +
  .../tests/TextUI/filter-class-isolation.phpt       |   22 +
  .../phpunit/phpunit/tests/TextUI/filter-class.phpt |   21 +
  ...aprovider-by-classname-and-range-isolation.phpt |   22 +
  ...filter-dataprovider-by-classname-and-range.phpt |   21 +
  .../filter-dataprovider-by-number-isolation.phpt   |   22 +
  .../TextUI/filter-dataprovider-by-number.phpt      |   21 +
  ...ilter-dataprovider-by-only-range-isolation.phpt |   22 +
  .../TextUI/filter-dataprovider-by-only-range.phpt  |   21 +
  ...lter-dataprovider-by-only-regexp-isolation.phpt |   22 +
  .../TextUI/filter-dataprovider-by-only-regexp.phpt |   21 +
  ...lter-dataprovider-by-only-string-isolation.phpt |   22 +
  .../TextUI/filter-dataprovider-by-only-string.phpt |   21 +
  .../filter-dataprovider-by-range-isolation.phpt    |   22 +
  .../tests/TextUI/filter-dataprovider-by-range.phpt |   21 +
  .../filter-dataprovider-by-regexp-isolation.phpt   |   22 +
  .../TextUI/filter-dataprovider-by-regexp.phpt      |   21 +
  .../filter-dataprovider-by-string-isolation.phpt   |   22 +
  .../TextUI/filter-dataprovider-by-string.phpt      |   21 +
  .../tests/TextUI/filter-method-isolation.phpt      |   22 +
  .../phpunit/tests/TextUI/filter-method.phpt        |   21 +
  .../phpunit/tests/TextUI/filter-no-results.phpt    |   21 +
  .../phpunit/tests/TextUI/group-isolation.phpt      |   22 +
  .../vendor/phpunit/phpunit/tests/TextUI/group.phpt |   21 +
  .../vendor/phpunit/phpunit/tests/TextUI/help.phpt  |   83 +
  .../vendor/phpunit/phpunit/tests/TextUI/help2.phpt |   84 +
  .../phpunit/tests/TextUI/ini-isolation.phpt        |   22 +
  .../phpunit/phpunit/tests/TextUI/list-groups.phpt  |   20 +
  .../phpunit/phpunit/tests/TextUI/log-json-5.3.phpt |   25 +
  .../phpunit/phpunit/tests/TextUI/log-json-5.4.phpt |   74 +
  .../phpunit/phpunit/tests/TextUI/log-json-5.6.phpt |   68 +
  .../phpunit/phpunit/tests/TextUI/log-tap.phpt      |   26 +
  .../phpunit/phpunit/tests/TextUI/log-xml.phpt      |   29 +
  .../phpunit/phpunit/tests/TextUI/repeat.phpt       |   21 +
  .../phpunit/tests/TextUI/strict-incomplete.phpt    |   21 +
  .../phpunit/tests/TextUI/strict-isolation.phpt     |   22 +
  .../phpunit/phpunit/tests/TextUI/strict.phpt       |   21 +
  .../vendor/phpunit/phpunit/tests/TextUI/tap.phpt   |   18 +
  .../phpunit/tests/TextUI/test-suffix-multiple.phpt |   20 +
  .../phpunit/tests/TextUI/test-suffix-single.phpt   |   20 +
  .../phpunit/phpunit/tests/TextUI/testdox-html.phpt |   21 +
  .../phpunit/phpunit/tests/TextUI/testdox-text.phpt |   25 +
  .../phpunit/phpunit/tests/TextUI/testdox.phpt      |   18 +
  .../phpunit/tests/Util/ConfigurationTest.php       |  451 +++
  .../tests/Util/TestDox/NamePrettifierTest.php      |  122 +
  .../vendor/phpunit/phpunit/tests/Util/TestTest.php |  538 +++
  .../vendor/phpunit/phpunit/tests/Util/XMLTest.php  |  369 ++
  .../phpunit/phpunit/tests/_files/AbstractTest.php  |    7 +
  .../vendor/phpunit/phpunit/tests/_files/Author.php |   66 +
  .../phpunit/phpunit/tests/_files/BankAccount.php   |  116 +
  .../phpunit/tests/_files/BankAccountTest.php       |  130 +
  .../phpunit/tests/_files/BankAccountTest.test.php  |  130 +
  .../tests/_files/BaseTestListenerSample.php        |   11 +
  .../phpunit/tests/_files/BeforeAndAfterTest.php    |   31 +
  .../tests/_files/BeforeClassAndAfterClassTest.php  |   31 +
  .../vendor/phpunit/phpunit/tests/_files/Book.php   |   59 +
  .../phpunit/phpunit/tests/_files/Calculator.php    |   14 +
  .../_files/ChangeCurrentWorkingDirectoryTest.php   |   10 +
  .../tests/_files/ClassWithNonPublicAttributes.php  |   29 +
  .../phpunit/tests/_files/ClassWithToString.php     |   61 +
  .../phpunit/tests/_files/ConcreteTest.my.php       |    7 +
  .../phpunit/phpunit/tests/_files/ConcreteTest.php  |    7 +
  .../tests/_files/CoverageClassExtendedTest.php     |   12 +
  .../phpunit/tests/_files/CoverageClassTest.php     |   12 +
  .../_files/CoverageFunctionParenthesesTest.php     |   11 +
  .../CoverageFunctionParenthesesWhitespaceTest.php  |   11 +
  .../phpunit/tests/_files/CoverageFunctionTest.php  |   11 +
  .../_files/CoverageMethodOneLineAnnotationTest.php |   11 +
  .../tests/_files/CoverageMethodParenthesesTest.php |   12 +
  .../CoverageMethodParenthesesWhitespaceTest.php    |   12 +
  .../phpunit/tests/_files/CoverageMethodTest.php    |   12 +
  .../phpunit/tests/_files/CoverageNoneTest.php      |    9 +
  .../tests/_files/CoverageNotPrivateTest.php        |   12 +
  .../tests/_files/CoverageNotProtectedTest.php      |   12 +
  .../phpunit/tests/_files/CoverageNotPublicTest.php |   12 +
  .../phpunit/tests/_files/CoverageNothingTest.php   |   13 +
  .../phpunit/tests/_files/CoveragePrivateTest.php   |   12 +
  .../phpunit/tests/_files/CoverageProtectedTest.php |   12 +
  .../phpunit/tests/_files/CoveragePublicTest.php    |   12 +
  .../_files/CoverageTwoDefaultClassAnnotations.php  |   19 +
  .../phpunit/phpunit/tests/_files/CoveredClass.php  |   36 +
  .../phpunit/tests/_files/CoveredFunction.php       |    4 +
  .../phpunit/phpunit/tests/_files/CustomPrinter.php |    4 +
  .../tests/_files/DataProviderFilterTest.php        |   39 +
  .../phpunit/tests/_files/DataProviderTest.php      |   21 +
  .../phpunit/tests/_files/DependencyFailureTest.php |   22 +
  .../phpunit/tests/_files/DependencySuccessTest.php |   21 +
  .../phpunit/tests/_files/DependencyTestSuite.php   |   13 +
  .../phpunit/tests/_files/DoubleTestCase.php        |   25 +
  .../phpunit/tests/_files/DummyException.php        |    5 +
  .../phpunit/tests/_files/EmptyTestCaseTest.php     |    4 +
  .../vendor/phpunit/phpunit/tests/_files/Error.php  |    8 +
  .../_files/ExceptionInAssertPostConditionsTest.php |   35 +
  .../_files/ExceptionInAssertPreConditionsTest.php  |   35 +
  .../phpunit/tests/_files/ExceptionInSetUpTest.php  |   35 +
  .../tests/_files/ExceptionInTearDownTest.php       |   35 +
  .../phpunit/tests/_files/ExceptionInTest.php       |   35 +
  .../tests/_files/ExceptionNamespaceTest.php        |   38 +
  .../phpunit/tests/_files/ExceptionStackTest.php    |   23 +
  .../phpunit/phpunit/tests/_files/ExceptionTest.php |  102 +
  .../phpunit/phpunit/tests/_files/Failure.php       |    8 +
  .../phpunit/phpunit/tests/_files/FailureTest.php   |   76 +
  .../phpunit/phpunit/tests/_files/FatalTest.php     |   14 +
  .../phpunit/tests/_files/IncompleteTest.php        |    8 +
  .../phpunit/tests/_files/InheritedTestCase.php     |    7 +
  .../phpunit/phpunit/tests/_files/IniTest.php       |    8 +
  .../phpunit/tests/_files/JsonData/arrayObject.js   |    1 +
  .../phpunit/tests/_files/JsonData/simpleObject.js  |    1 +
  .../phpunit/tests/_files/JsonData/simpleObject2.js |    1 +
  .../phpunit/phpunit/tests/_files/MockRunner.php    |    7 +
  .../phpunit/tests/_files/MultiDependencyTest.php   |   23 +
  .../_files/NamespaceCoverageClassExtendedTest.php  |   12 +
  .../tests/_files/NamespaceCoverageClassTest.php    |   12 +
  .../NamespaceCoverageCoversClassPublicTest.php     |   15 +
  .../_files/NamespaceCoverageCoversClassTest.php    |   20 +
  .../tests/_files/NamespaceCoverageMethodTest.php   |   12 +
  .../_files/NamespaceCoverageNotPrivateTest.php     |   12 +
  .../_files/NamespaceCoverageNotProtectedTest.php   |   12 +
  .../_files/NamespaceCoverageNotPublicTest.php      |   12 +
  .../tests/_files/NamespaceCoveragePrivateTest.php  |   12 +
  .../_files/NamespaceCoverageProtectedTest.php      |   12 +
  .../tests/_files/NamespaceCoveragePublicTest.php   |   12 +
  .../phpunit/tests/_files/NamespaceCoveredClass.php |   38 +
  .../phpunit/tests/_files/NoArgTestCaseTest.php     |    7 +
  .../phpunit/tests/_files/NoTestCaseClass.php       |    4 +
  .../phpunit/phpunit/tests/_files/NoTestCases.php   |    7 +
  .../phpunit/phpunit/tests/_files/NonStatic.php     |    8 +
  .../tests/_files/NotExistingCoveredElementTest.php |   24 +
  .../phpunit/tests/_files/NotPublicTestCase.php     |   11 +
  .../phpunit/tests/_files/NotVoidTestCase.php       |    4 +
  .../phpunit/phpunit/tests/_files/NothingTest.php   |    7 +
  .../phpunit/phpunit/tests/_files/OneTestCase.php   |   11 +
  .../phpunit/tests/_files/OutputTestCase.php        |   27 +
  .../phpunit/tests/_files/OverrideTestCase.php      |    7 +
  .../tests/_files/RequirementsClassDocBlockTest.php |   23 +
  .../phpunit/tests/_files/RequirementsTest.php      |  142 +
  .../phpunit/tests/_files/SampleArrayAccess.php     |   32 +
  .../phpunit/phpunit/tests/_files/SampleClass.php   |   14 +
  .../tests/_files/SelectorAssertionsFixture.html    |   44 +
  .../phpunit/phpunit/tests/_files/Singleton.php     |   22 +
  .../phpunit/phpunit/tests/_files/StackTest.php     |   24 +
  .../vendor/phpunit/phpunit/tests/_files/Struct.php |   10 +
  .../phpunit/phpunit/tests/_files/Success.php       |    7 +
  .../phpunit/tests/_files/TemplateMethodsTest.php   |   51 +
  .../phpunit/phpunit/tests/_files/TestIterator.php  |   36 +
  .../phpunit/phpunit/tests/_files/TestIterator2.php |   35 +
  .../tests/_files/ThrowExceptionTestCase.php        |    8 +
  .../tests/_files/ThrowNoExceptionTestCase.php      |    7 +
  .../vendor/phpunit/phpunit/tests/_files/WasRun.php |   10 +
  .../vendor/phpunit/phpunit/tests/_files/bar.xml    |    1 +
  .../tests/_files/configuration.custom-printer.xml  |    2 +
  .../phpunit/phpunit/tests/_files/configuration.xml |  116 +
  .../tests/_files/configuration_xinclude.xml        |   68 +
  .../phpunit/tests/_files/expectedFileFormat.txt    |    1 +
  .../vendor/phpunit/phpunit/tests/_files/foo.xml    |    1 +
  .../structureAttributesAreSameButValuesAreNot.xml  |   10 +
  .../phpunit/tests/_files/structureExpected.xml     |   10 +
  .../tests/_files/structureIgnoreTextNodes.xml      |   13 +
  .../tests/_files/structureIsSameButDataIsNot.xml   |   10 +
  .../_files/structureWrongNumberOfAttributes.xml    |   10 +
  .../tests/_files/structureWrongNumberOfNodes.xml   |    9 +
  .../vendor/phpunit/phpunit/tests/autoload.php      |  162 +
  .../phpunit/phpunit/tests/bootstrap-travis.php     |    7 +
  .../vendor/phpunit/phpunit/tests/bootstrap.php     |   13 +
  .../bundle/vendor/sebastian/comparator/.gitignore  |    5 +
  .../bundle/vendor/sebastian/comparator/.travis.yml |   17 +
  .../bundle/vendor/sebastian/comparator/LICENSE     |   33 +
  .../bundle/vendor/sebastian/comparator/README.md   |   38 +
  .../bundle/vendor/sebastian/comparator/build.xml   |   34 +
  .../vendor/sebastian/comparator/composer.json      |   43 +
  .../vendor/sebastian/comparator/phpunit.xml.dist   |   17 +
  .../sebastian/comparator/src/ArrayComparator.php   |  175 +
  .../vendor/sebastian/comparator/src/Comparator.php |  108 +
  .../sebastian/comparator/src/ComparisonFailure.php |  170 +
  .../sebastian/comparator/src/DOMNodeComparator.php |  149 +
  .../comparator/src/DateTimeComparator.php          |  118 +
  .../sebastian/comparator/src/DoubleComparator.php  |   99 +
  .../comparator/src/ExceptionComparator.php         |   90 +
  .../vendor/sebastian/comparator/src/Factory.php    |  129 +
  .../comparator/src/MockObjectComparator.php        |   84 +
  .../sebastian/comparator/src/NumericComparator.php |  113 +
  .../sebastian/comparator/src/ObjectComparator.php  |  148 +
  .../comparator/src/ResourceComparator.php          |   95 +
  .../sebastian/comparator/src/ScalarComparator.php  |  133 +
  .../comparator/src/SplObjectStorageComparator.php  |  112 +
  .../sebastian/comparator/src/TypeComparator.php    |  102 +
  .../comparator/tests/DateTimeComparatorTest.php    |  232 ++
  .../comparator/tests/ExceptionComparatorTest.php   |  174 +
  .../sebastian/comparator/tests/FactoryTest.php     |  153 +
  .../comparator/tests/ResourceComparatorTest.php    |  158 +
  .../comparator/tests/ScalarComparatorTest.php      |  192 +
  .../tests/SplObjectStorageComparatorTest.php       |  175 +
  .../comparator/tests/TypeComparatorTest.php        |  142 +
  .../comparator/tests/_files/ClassWithToString.php  |   52 +
  .../comparator/tests/_files/TestClass.php          |   47 +
  .../tests/_files/TestClassComparator.php           |   47 +
  .../vendor/sebastian/comparator/tests/autoload.php |   22 +
  .../sebastian/comparator/tests/bootstrap.php       |    3 +
  .../Test/bundle/vendor/sebastian/diff/.gitignore   |    9 +
  .../Test/bundle/vendor/sebastian/diff/.travis.yml  |   12 +
  .../Test/bundle/vendor/sebastian/diff/LICENSE      |   33 +
  .../Test/bundle/vendor/sebastian/diff/README.md    |  137 +
  .../Test/bundle/vendor/sebastian/diff/build.xml    |   66 +
  .../bundle/vendor/sebastian/diff/build/package.xml |   58 +
  .../bundle/vendor/sebastian/diff/composer.json     |   30 +
  .../bundle/vendor/sebastian/diff/phpunit.xml.dist  |   23 +
  .../bundle/vendor/sebastian/diff/src/Chunk.php     |  101 +
  .../Test/bundle/vendor/sebastian/diff/src/Diff.php |   87 +
  .../bundle/vendor/sebastian/diff/src/Differ.php    |  303 ++
  .../Test/bundle/vendor/sebastian/diff/src/Line.php |   79 +
  .../bundle/vendor/sebastian/diff/src/Parser.php    |  139 +
  .../bundle/vendor/sebastian/diff/src/autoload.php  |   23 +
  .../vendor/sebastian/diff/tests/DifferTest.php     |  261 ++
  .../bundle/vendor/sebastian/environment/.gitignore |    5 +
  .../vendor/sebastian/environment/.travis.yml       |   16 +
  .../bundle/vendor/sebastian/environment/LICENSE    |   33 +
  .../bundle/vendor/sebastian/environment/README.md  |   71 +
  .../bundle/vendor/sebastian/environment/build.xml  |   16 +
  .../vendor/sebastian/environment/composer.json     |   30 +
  .../vendor/sebastian/environment/phpunit.xml.dist  |   17 +
  .../vendor/sebastian/environment/src/Runtime.php   |  208 +
  .../sebastian/environment/tests/RuntimeTest.php    |  145 +
  .../bundle/vendor/sebastian/exporter/.gitignore    |    8 +
  .../bundle/vendor/sebastian/exporter/.travis.yml   |   20 +
  .../Test/bundle/vendor/sebastian/exporter/LICENSE  |   33 +
  .../bundle/vendor/sebastian/exporter/README.md     |  181 +
  .../bundle/vendor/sebastian/exporter/build.xml     |   16 +
  .../bundle/vendor/sebastian/exporter/composer.json |   46 +
  .../vendor/sebastian/exporter/phpunit.xml.dist     |   17 +
  .../vendor/sebastian/exporter/src/Context.php      |  199 +
  .../vendor/sebastian/exporter/src/Exception.php    |   57 +
  .../vendor/sebastian/exporter/src/Exporter.php     |  296 ++
  .../sebastian/exporter/tests/ExporterTest.php      |  347 ++
  .../bundle/vendor/sebastian/version/.gitattributes |    1 +
  .../bundle/vendor/sebastian/version/.gitignore     |   10 +
  .../bundle/vendor/sebastian/version/ChangeLog.md   |   19 +
  .../Test/bundle/vendor/sebastian/version/LICENSE   |   33 +
  .../Test/bundle/vendor/sebastian/version/README.md |   46 +
  .../Test/bundle/vendor/sebastian/version/build.xml |   80 +
  .../vendor/sebastian/version/build/package.xml     |   55 +
  .../vendor/sebastian/version/build/phpunit.xml     |   29 +
  .../bundle/vendor/sebastian/version/composer.json  |   21 +
  .../vendor/sebastian/version/src/Version.php       |  118 +
  .../vendor/sebastian/version/src/autoload.php      |   19 +
  .../vendor/sebastian/version/tests/bootstrap.php   |    2 +
  .../symfony/yaml/Symfony/Component/Yaml/.gitignore |    3 +
  .../yaml/Symfony/Component/Yaml/CHANGELOG.md       |    8 +
  .../symfony/yaml/Symfony/Component/Yaml/Dumper.php |   73 +
  .../yaml/Symfony/Component/Yaml/Escaper.php        |   89 +
  .../Component/Yaml/Exception/DumpException.php     |   23 +
  .../Yaml/Exception/ExceptionInterface.php          |   23 +
  .../Component/Yaml/Exception/ParseException.php    |  148 +
  .../Component/Yaml/Exception/RuntimeException.php  |   23 +
  .../symfony/yaml/Symfony/Component/Yaml/Inline.php |  469 +++
  .../symfony/yaml/Symfony/Component/Yaml/LICENSE    |   19 +
  .../symfony/yaml/Symfony/Component/Yaml/Parser.php |  638 +++
  .../symfony/yaml/Symfony/Component/Yaml/README.md  |   19 +
  .../Symfony/Component/Yaml/Tests/DumperTest.php    |  207 +
  .../Yaml/Tests/Fixtures/YtsAnchorAlias.yml         |   31 +
  .../Yaml/Tests/Fixtures/YtsBasicTests.yml          |  178 +
  .../Yaml/Tests/Fixtures/YtsBlockMapping.yml        |   51 +
  .../Yaml/Tests/Fixtures/YtsDocumentSeparator.yml   |   85 +
  .../Yaml/Tests/Fixtures/YtsErrorTests.yml          |   25 +
  .../Yaml/Tests/Fixtures/YtsFlowCollections.yml     |   60 +
  .../Yaml/Tests/Fixtures/YtsFoldedScalars.yml       |  176 +
  .../Yaml/Tests/Fixtures/YtsNullsAndEmpties.yml     |   45 +
  .../Tests/Fixtures/YtsSpecificationExamples.yml    | 1695 ++++++++
  .../Yaml/Tests/Fixtures/YtsTypeTransfers.yml       |  244 ++
  .../Component/Yaml/Tests/Fixtures/embededPhp.yml   |    1 +
  .../Yaml/Tests/Fixtures/escapedCharacters.yml      |  147 +
  .../Component/Yaml/Tests/Fixtures/index.yml        |   18 +
  .../Component/Yaml/Tests/Fixtures/sfComments.yml   |   65 +
  .../Component/Yaml/Tests/Fixtures/sfCompact.yml    |  159 +
  .../Component/Yaml/Tests/Fixtures/sfMergeKey.yml   |   27 +
  .../Component/Yaml/Tests/Fixtures/sfObjects.yml    |   11 +
  .../Component/Yaml/Tests/Fixtures/sfQuotes.yml     |   33 +
  .../Component/Yaml/Tests/Fixtures/sfTests.yml      |  135 +
  .../Yaml/Tests/Fixtures/unindentedCollections.yml  |   62 +
  .../Symfony/Component/Yaml/Tests/InlineTest.php    |  231 ++
  .../Component/Yaml/Tests/ParseExceptionTest.php    |   30 +
  .../Symfony/Component/Yaml/Tests/ParserTest.php    |  619 +++
  .../yaml/Symfony/Component/Yaml/Tests/YamlTest.php |   31 +
  .../yaml/Symfony/Component/Yaml/Unescaper.php      |  146 +
  .../symfony/yaml/Symfony/Component/Yaml/Yaml.php   |  100 +
  .../yaml/Symfony/Component/Yaml/composer.json      |   31 +
  .../yaml/Symfony/Component/Yaml/phpunit.xml.dist   |   29 +
  framework/Test/lib/Horde/Test/AllTests.php         |    3 +-
  framework/Test/lib/Horde/Test/Autoload.php         |    2 +
  framework/Test/package.xml                         | 1978 ++++++++++-
  849 files changed, 94879 insertions(+), 5 deletions(-)

http://github.com/horde/horde/commit/4853562ca84d707ef3973516eabfc09474d1b612
09/18/2004 05:13:59 PM Jan Schneider Comment #14
State ⇒ Resolved
Reply to this comment
Fixed in CVS.
09/10/2004 09:05:01 AM david (at) tmv (dot) gov (dot) tw Comment #13 Reply to this comment
Yes,and fixed if unlock them.



David
09/10/2004 07:57:08 AM Jan Schneider Comment #12 Reply to this comment
Ahhh, did you lock the fullname and from_addr preferences?
09/10/2004 03:29:34 AM david (at) tmv (dot) gov (dot) tw Comment #11
New Attachment: prefs_new.html Download
Reply to this comment
line 191 was point to an out date html source not prefs.html,please forget it.



Here the prefs_new.html is another up2date html source that my I.E6 
complain at line 204



David
09/09/2004 10:02:45 AM Jan Schneider Comment #10 Reply to this comment
We don't try to access a javascript object in line 191 of this code. 
Is the error message still exactly the same?
09/09/2004 12:25:02 AM david (at) tmv (dot) gov (dot) tw Comment #9
New Attachment: prefs.html Download
Reply to this comment
The javascript dected an error while select identity from NONE to jk.


09/08/2004 09:21:35 AM Jan Schneider Comment #8
State ⇒ Feedback
Reply to this comment
And what's the affected line of this bunch of code? If you can't just 
copy the lines that raise the errors, then please upload the code as a 
.html file, the mime viewer shows line numbers.
09/08/2004 12:49:59 AM david (at) tmv (dot) gov (dot) tw Comment #7 Reply to this comment
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"DTD/xhtml1-transitional.dtd">

<!-- IMP: Copyright 2001-2004, The Horde Project. IMP is under the GPL. -->

<!--   Horde Project: http://horde.org/ | IMP: http://horde.org/imp/    -->

<!--      GNU Public License: http://www.fsf.org/copyleft/gpl.html      -->

<html lang="en-US"><head>

<title>Mail :: User Options</title>

<!--a75c305b1c0a6022--><link 
href="/horde.beta/imp/graphics/favicon.ico" rel="SHORTCUT ICON" />

<!--a75c305b1c0a6022--><link 
href="/horde.beta/imp/mailbox.php?mailbox=INBOX" rel="Top" />

<!--a75c305b1c0a6022--><link href="/horde.beta/imp/search.php" rel="search" />

<!--a75c305b1c0a6022--><link 
href="/horde.beta/services/css.php?app=imp&amp;theme=lucblue
rel="stylesheet" type="text/css" /></head>



<body>

<form action="/horde.beta/imp/mailbox.php" method="get" name="menu">

<input type="hidden" name="no_newmail_popup" value="1" />

<script language="JavaScript" type="text/javascript" 
src="/horde.beta/services/javascript.php?file=open_compose_win.js&amp;app=imp"></script><table border="0" cellpadding="0" cellspacing="0" 
width="100%">

<tr>

   <td class="menu">

     <table border="0" width="100%">

       <tr>

<td align="center" nowrap="nowrap" style="cursor:pointer;" 
valign="bottom" 
onclick="document.location='/horde.beta/imp/mailbox.php?mailbox=INBOX';"><a 
href="/horde.beta/imp/mailbox.php?mailbox=INBOX
onmouseout="window.status='';" onmouseover="window.status='Inbox'; 
return true;" class="menuitem"><img 
src="/horde.beta/imp/graphics/folders/inbox.gif" alt="Inbox" 
title="Inbox" /><br />Inbox</a>&nbsp;</td>

<td align="center" nowrap="nowrap" style="cursor:pointer;" 
valign="bottom" onclick="d = new Date(); if (d.getTime() - 
menu_trash_confirmed > 100) { menu_trash_cvalue = window.confirm('Are 
you sure you wish to empty your trash folder?'); d = new Date(); 
menu_trash_confirmed = d.getTime(); } return 
menu_trash_cvalue;document.location='/horde.beta/imp/mailbox.php?thismailbox=INBOX.trash&amp;actionID=empty_mailbox&amp;return_url=http%3A%2F%2Fwebmail.tmv.gov.tw%2Fhorde.beta%2Fimp%2Fmailbox.php%3Fmailbox%3DINBOX';"><a href="/horde.beta/imp/mailbox.php?thismailbox=INBOX.trash&amp;actionID=empty_mailbox&amp;return_url=http%3A%2F%2Fwebmail.tmv.gov.tw%2Fhorde.beta%2Fimp%2Fmailbox.php%3Fmailbox%3DINBOX" onclick="d = new Date(); if (d.getTime() - menu_trash_confirmed > 100) { menu_trash_cvalue = window.confirm('Are you sure you wish to empty your trash folder?'); d = new Date(); menu_trash_confirmed = d.getTime(); } return menu_trash_cvalue;" onmouseout="window.status='';" onmouseover="window.status='Empty Trash'; return true;" class="menuitem"><img src="/horde.beta/imp/graphics/empty_trash.gif" alt="Empty Trash" title="Empty Trash" /><br />Empty 
Trash</a>&nbsp;</td>

<td align="center" nowrap="nowrap" style="cursor:pointer;" 
valign="bottom" 
onclick="open_compose_win('thismailbox=INBOX.Z_LISTS.horde');"><a 
href="" onclick="return false;" onmouseout="window.status='';" 
onmouseover="window.status='Compose'; return true;" 
class="menuitem"><img src="/horde.beta/imp/graphics/compose.gif
alt="Compose" title="Compose" /><br />Compose</a>&nbsp;</td>

<td align="center" nowrap="nowrap" style="cursor:pointer;" 
valign="bottom" 
onclick="document.location='/horde.beta/imp/folders.php?nocache=4lmswip7t14w';"><a href="/horde.beta/imp/folders.php?nocache=4lmswip7t14w" onmouseout="window.status='';" onmouseover="window.status='Folders'; return true;" class="menuitem"><img src="/horde.beta/imp/graphics/folders/folder.gif" alt="Folders" title="Folders" /><br 
/>Folders</a>&nbsp;</td>

<td align="center" nowrap="nowrap" style="cursor:pointer;" 
valign="bottom" 
onclick="document.location='/horde.beta/imp/search.php';"><a 
href="/horde.beta/imp/search.php" onmouseout="window.status='';" 
onmouseover="window.status='Search'; return true;" 
class="menuitem"><img src="/horde.beta/graphics/search.png
alt="Search" title="Search" /><br />Search</a>&nbsp;</td>

<td align="center" nowrap="nowrap" style="cursor:pointer;" 
valign="bottom" 
onclick="document.location='/horde.beta/imp/fetchmail.php';"><a 
href="/horde.beta/imp/fetchmail.php" onmouseout="window.status='';" 
onmouseover="window.status='Accounts'; return true;" 
class="menuitem"><img src="/horde.beta/imp/graphics/fetchmail.gif
alt="Accounts" title="Accounts" /><br />Accounts</a>&nbsp;</td>

<td align="center" nowrap="nowrap" style="cursor:pointer;" 
valign="bottom" onclick="document.location='/horde.beta/mottle/';"><a 
href="/horde.beta/mottle/" onmouseout="window.status='';" 
onmouseover="window.status='MOTD'; return true;" class="menuitem"><img 
src="/horde.beta/mottle/graphics/mottle.png" alt="MOTD" title="MOTD" 
/><br />MOTD</a>&nbsp;</td>

<td align="center" nowrap="nowrap" style="cursor:pointer;" 
valign="bottom" 
onclick="document.location='/horde.beta/services/prefs.php?app=imp';" 
class="menuselected"><a href="/horde.beta/services/prefs.php?app=imp
onmouseout="window.status='';" onmouseover="window.status='Options'; 
return true;" class="menuitem"><img 
src="/horde.beta/graphics/prefs.gif" alt="Options" title="Options" 
/><br />Options</a>&nbsp;</td>

<td align="center" nowrap="nowrap" style="cursor:pointer;" 
valign="bottom" 
onclick="document.location='/horde.beta/services/problem.php?return_url=%2Fhorde.beta%2Fservices%2Fprefs.php%3Fnocache%3D4fsuj3qbcnpc%26amp%3Bgroup%3Didentities%26amp%3Bapp%3Dimp';"><a href="/horde.beta/services/problem.php?return_url=%2Fhorde.beta%2Fservices%2Fprefs.php%3Fnocache%3D4fsuj3qbcnpc%26amp%3Bgroup%3Didentities%26amp%3Bapp%3Dimp" onmouseout="window.status='';" onmouseover="window.status='Problem'; return true;" class="menuitem"><img src="/horde.beta/graphics/problem.gif" alt="Problem" title="Problem" /><br 
/>Problem</a>&nbsp;</td>

<script language="JavaScript" type="text/javascript" 
src="/horde.beta/services/javascript.php?file=open_help_win.js&amp;app=horde"></script><td align="center" nowrap="nowrap" style="cursor:pointer;" valign="bottom" onclick="open_help_win('imp');"><a href="" onclick="return false;" onmouseout="window.status='';" onmouseover="window.status='Help'; return true;" class="menuitem"><img src="/horde.beta/graphics/manual.gif" alt="Help" title="Help" /><br 
/>Help</a>&nbsp;</td>

<td width="100%">&nbsp;</td>

         <td class="light" align="center" nowrap="nowrap" valign="bottom">

           <a class="menuitem" href="" onclick="folderSubmit(true); 
return false;" onmouseover="window.status='Open Folder'; return true;" 
onmouseout="window.status=''; return true;">

<img src="/horde.beta/imp/graphics/folders/folder_open.gif" alt="Open 
Folder" title="Open Folder" /><br />Open Folder          </a>

         </td>

         <td class="light" align="right" nowrap="nowrap">

                     <label for="mailbox" accesskey=""></label>

           <select id="mailbox" name="mailbox" 
onchange="folderSubmit();"><option value="INBOX">Inbox</option>

<option value="INBOX.Apply">Apply</option>

<option value="board">board</option>

<option value="INBOX.bug-mail">bug-mail</option>

<option value="INBOX.bug-mail.good">&nbsp; &nbsp; good</option>

<option value="INBOX.ClaudiaWu">ClaudiaWu</option>

<option value="INBOX.drafts">drafts</option>

<option value="INBOX.report">report</option>

<option value="INBOX.saved-messages">saved-messages</option>

<option value="INBOX.sent-mail">sent-mail</option>

<option value="Service">Service</option>

<option value="INBOX.spam">spam</option>

<option value="INBOX.tax_fee">tax_fee</option>

<option value="INBOX.trash">trash</option>

<option value="INBOX.Z_LISTS">Z_LISTS</option>

<option value="INBOX.Z_LISTS.horde" selected="selected">&nbsp; &nbsp; 
horde</option>

<option value="INBOX.Z_LISTS.i18n">&nbsp; &nbsp; i18n</option>

<option value="INBOX.Z_LISTS.imp">&nbsp; &nbsp; imp</option>

<option value="INBOX.Z_LISTS.Tickets">&nbsp; &nbsp; Tickets</option>

</select>

         </td>



       </tr>

     </table>



   </td>

</tr>

</table>



<script language="JavaScript" type="text/javascript">

<!--

var menu_trash_confirmed = 0;

var menu_trash_cvalue = 0;

var loading;

function folderSubmit(clear)

{

     if 
(document.menu.mailbox[document.menu.mailbox.selectedIndex].value != 
'') {

         if ((loading == null) || (clear != null)) {

             loading = true;

             document.menu.submit();

         }

     }

}

// -->

</script>

</form>

<br />

<table cellpadding="0" cellspacing="0" border="0" width="100%">

<tr>

  <td class="header">

   Options for Mail </td>

  <td class="header" align="right" nowrap="nowrap">

   <form method="get" name="appswitch" 
action="/horde.beta/services/prefs.php?nocache=4lmswip7t14w">

       <span class="smallheader">Edit options for:</span>

    <select name="app" onchange="document.appswitch.submit();">

      <option value=""></option>

          <option value="turba">Address Book</option>

          <option value="midas">Ads</option>

          <option value="trean">Bookmarks</option>

          <option value="giapeto">CMS</option>

          <option value="kronolith">Calendar</option>

          <option value="gollem">File Manager</option>

          <option value="ingo">Filters</option>

          <option value="ulaform">Forms</option>

          <option value="agora">Forums</option>

          <option value="volos">Guestbook</option>

          <option value="horde">Horde</option>

          <option value="mottle">MOTD</option>

          <option value="imp">Mail</option>

          <option value="mimp">Mobile Mail</option>

          <option value="accounts">My Account</option>

          <option value="nic">Network</option>

          <option value="mnemo">Notes</option>

          <option value="passwd">Password</option>

          <option value="ansel">Photos</option>

          <option value="jeta">SSH</option>

          <option value="goops">Search Engines</option>

          <option value="nag">Tasks</option>

          <option value="whups">Tickets</option>

          <option value="hermes">Time Tracking</option>

          <option value="wicked">Wiki</option>

        </select>

    <input class="button" type="submit" onclick="if 
(document.appswitch.app.selectedIndex == 0) return false;" value="Go" />

   </form>

  </td>

</tr>

</table>

<br />

<form method="post" name="prefs" 
action="/horde.beta/services/prefs.php?nocache=4lmswip7t14w">

<input type="hidden" name="actionID" value="update_prefs" />

<input type="hidden" name="group" value="identities" />

<input type="hidden" name="app" value="imp" />



<table border="0" align="center" width="100%" cellspacing="0" cellpadding="0">

<tr><td class="header" align="left"><b>Personal Information</b></td>

<td class="header" align="right"><span class='smallheader'><a 
href="/horde.beta/imp/smime.php" onmouseout="window.status='';" 
onmouseover="window.status='Previous options'; return true;" 
class="menuitem">&lt;&lt; S/MIME Options</a>&nbsp;|&nbsp;<a 
href="/horde.beta/services/prefs.php?group=forgotpass&amp;app=imp
onmouseout="window.status='';" onmouseover="window.status='Next 
options'; return true;" class="menuitem">Account Password 
&gt;&gt;</a></span></td></tr>

</table>

<table border="0" align="center" width="100%" cellspacing="0" cellpadding="3">

<tr><td class="item"><table border="0"><tr valign="top"><td class="item">

<label for="default_identity">Your default identity:</label>&nbsp;<br />

<select id="default_identity" name="default_identity">

<option selected="selected" value="0">îAÔOµÄÉí·Ý×R„e</option>

<option value="1">jk</option>

</select>

<br />

<script language="JavaScript" type="text/javascript">

<!--



var identities = new Array();

identities[0] = new Array();

identities[0][0] = new Array("id", "text", "îAÔOµÄÉí·Ý×R„e");

identities[0][1] = new Array("fullname", "text", "ˆÁ¼ÎÄ");

identities[0][2] = new Array("from_addr", "text", "david@tmv.gov.tw");

identities[0][3] = new Array("replyto_addr", "text", "");

identities[0][4] = new Array("alias_addr", "textarea", "");

identities[0][5] = new Array("tieto_addr", "textarea", "");

identities[0][6] = new Array("bcc_addr", "textarea", "");

identities[0][7] = new Array("mail_hdr", "textarea", "");

identities[0][8] = new Array("signature", "textarea", "aa");

identities[0][9] = new Array("sig_dashes", "checkbox", false);

identities[0][10] = new Array("sig_first", "checkbox", false);

identities[0][11] = new Array("save_sent_mail", "checkbox", true);

identities[0][12] = new Array("sent_mail_folder", "implicit", "sent-mail");

identities[1] = new Array();

identities[1][0] = new Array("id", "text", "jk");

identities[1][1] = new Array("fullname", "text", "ˆÁ¼ÎÄ");

identities[1][2] = new Array("from_addr", "text", "david@tmv.gov.tw");

identities[1][3] = new Array("replyto_addr", "text", "");

identities[1][4] = new Array("alias_addr", "textarea", "");

identities[1][5] = new Array("tieto_addr", "textarea", "");

identities[1][6] = new Array("bcc_addr", "textarea", "");

identities[1][7] = new Array("mail_hdr", "textarea", "");

identities[1][8] = new Array("signature", "textarea", "");

identities[1][9] = new Array("sig_dashes", "checkbox", false);

identities[1][10] = new Array("sig_first", "checkbox", false);

identities[1][11] = new Array("save_sent_mail", "checkbox", true);

identities[1][12] = new Array("sent_mail_folder", "implicit", "sent-mail");



function newChoice()

{

     var field, val;

     var index = document.prefs.identity.selectedIndex;

     var id = document.prefs.identity.options[index].value;

     if (id < 0) {

         document.prefs.reset();

         document.prefs.identity.selectedIndex = index;

         return;

     }

     for (var i = 0; i < identities[id].length; i++) {

         field = eval("document.prefs." + identities[id][i][0]);

         val = identities[id][i][2];

         switch (identities[id][i][1]) {

             case "enum":

                 for (var j = 0; j < field.options.length; j++) {

                     if (field.options[j].value == val) {

                         field.selectedIndex = j;

                         break;

                     }

                 }

                 break;

             case "checkbox":

                 field.checked = val;

                 break;

             case "implicit":

                 eval("newChoice_" + identities[id][i][0] + "(val)");

                 break;

             default:

                 field.value = val;

                 break;

         }

     }

}



//-->

</script>

<br />

<label for="identity">Select the identity you want to change:</label><br />

<select name="identity" id="identity" onchange="javascript:newChoice()">

   <option value="-2" selected="selected"
None</option>
   <option value="-1">Create a new one</option>

   <option value="0">îAÔOµÄÉí·Ý×R„e</option>

   <option value="1">jk</option>

</select><br />

<script language="JavaScript" type="text/javascript">

<!--

function deleteIdentity()

{

     var index = document.prefs.identity.selectedIndex;

     var id = document.prefs.identity.options[index].value;

     if (id >= 0) {

         document.location.href = 
"/horde.beta/services/prefs.php?nocache=4fsuj3qbcnpc&group=identities&app=imp&actionID=delete_identity&id=" + 
id;

     }

}

//-->

</script>

<br />

<input type="button" onclick="deleteIdentity()" class="button" 
value="Delete selected identity" /><br /><br />

<label for="id">Identity's name:</label>&nbsp;<br />

<input id="id" name="id" size="30" maxlength="60" class="fixed" 
value="" /><br />

<label for="replyto_addr">Your Reply-to: address: 
<i>(optional)</i></label>&nbsp;<br />

<input id="replyto_addr" name="replyto_addr" size="30" maxlength="60" 
class="fixed" value="" /><br />

<label for="alias_addr">Your alias addresses: <i>(optional, enter each 
address on a new line)</i></label>&nbsp;<br />

<div class="fixed">

<textarea wrap="hard" id="alias_addr" name="alias_addr" rows="6" 
cols="80" class="fixed"></textarea><br />

</div>

<label for="tieto_addr">Addresses to explicitly tie to this identity: 
<i>(optional, enter each address on a new line)</i></label>&nbsp;<br />

<div class="fixed">

<textarea wrap="hard" id="tieto_addr" name="tieto_addr" rows="6" 
cols="80" class="fixed"></textarea><br />

</div>

<label for="bcc_addr">Addresses to BCC all messages: <i>(optional, 
enter each address on a new line)</i></label>&nbsp;<br />

<div class="fixed">

<textarea wrap="hard" id="bcc_addr" name="bcc_addr" rows="6" cols="80" 
class="fixed"></textarea><br />

</div>

<label for="mail_hdr">Additional headers to display when viewing: 
<i>(optional, enter each header on a new line)</i></label>&nbsp;<br />

<div class="fixed">

<textarea wrap="hard" id="mail_hdr" name="mail_hdr" rows="6" cols="80" 
class="fixed"></textarea><br />

</div>

<label for="signature">Your signature:</label>&nbsp;<br />

<div class="fixed">

<textarea wrap="hard" id="signature" name="signature" rows="6" 
cols="80" class="fixed"></textarea><br />

</div>

<input type="checkbox" id="sig_dashes" name="sig_dashes" />

<label for="sig_dashes">Precede your signature with dashes ('-- 
')?</label>&nbsp;<br />

<input type="checkbox" id="sig_first" name="sig_first" />

<label for="sig_first">Place your signature before replies and 
forwards?</label>&nbsp;<br />

<input type="checkbox" id="save_sent_mail" name="save_sent_mail" 
checked="checked" />

<label for="save_sent_mail">Save sent mail?</label>&nbsp;<br />

<script language="JavaScript" type="text/javascript">

<!--



function newChoice_sent_mail_folder(val)

{

     if (val == "") {

         document.prefs.sent_mail.selectedIndex = 0;

         return;

     }

     val = "INBOX." + val;

     var field = document.prefs.sent_mail;

     for (var i = 0; i < field.options.length; i++) {

         if (field.options[i].value == val) {

             field.selectedIndex = i;

             break;

         }

     }

}



function newFolderName()

{

     if (document.prefs.sent_mail.selectedIndex == 2) {

         var folder = window.prompt('Enter the name for your new sent 
mail folder', document.prefs.sent_mail_new.value ? 
document.prefs.sent_mail_new.value : '');

         if (folder != '' && folder != null) {

             document.prefs.sent_mail_new.value = folder;

             document.prefs.sent_mail[2].text = 'Create a new sent 
mail folder [' + document.prefs.sent_mail_new.value + ']';

         }

     }



     if (document.prefs.sent_mail.selectedIndex == 0) {

         document.prefs.save_sent_mail.checked = 0;

     }

}



//-->

</script>



<label for="sent_mail">Sent mail folder:</label><br />

<select name="sent_mail" id="sent_mail" onchange="newFolderName();">

   <option value="">None</option>

   <option value="-1" selected="selected">Use Default Value</option>

   <option value="">Create a new sent mail folder</option>

<option value="INBOX.Apply">Apply</option>

<option value="board">board</option>

<option value="INBOX.bug-mail">bug-mail</option>

<option value="INBOX.bug-mail.good">&nbsp; &nbsp; good</option>

<option value="INBOX.ClaudiaWu">ClaudiaWu</option>

<option value="INBOX.drafts">drafts</option>

<option value="INBOX.report">report</option>

<option value="INBOX.saved-messages">saved-messages</option>

<option value="INBOX.sent-mail">sent-mail</option>

<option value="Service">Service</option>

<option value="INBOX.spam">spam</option>

<option value="INBOX.tax_fee">tax_fee</option>

<option value="INBOX.trash">trash</option>

<option value="INBOX.Z_LISTS">Z_LISTS</option>

<option value="INBOX.Z_LISTS.horde">&nbsp; &nbsp; horde</option>

<option value="INBOX.Z_LISTS.i18n">&nbsp; &nbsp; i18n</option>

<option value="INBOX.Z_LISTS.imp">&nbsp; &nbsp; imp</option>

<option value="INBOX.Z_LISTS.Tickets">&nbsp; &nbsp; Tickets</option>

</select>

<input type="hidden" name="sent_mail_new" value="" />

</td></tr></table></td></tr></table>



<br />

<table border="0" align="center" width="100%" cellspacing="0" 
cellpadding="0"><tr><td nowrap="nowrap">

<input type="submit" class="button" value="Save Options" />&nbsp;

<input type="reset" class="button" value="Undo Changes" />&nbsp;

<input type="button" class="button" value="Return to Options" 
onclick="document.prefs.actionID.value=0; 
document.prefs.group.value=''; document.prefs.submit();" />

</td></tr></table>

</form>

<script language="JavaScript1.5" type="text/javascript">

var _setHordeTitle = 1;

try {

     if (parent.frames.horde_main) parent.document.title = 'Mail :: 
Options for Mail';

} catch (e) {

}

</script>

<script language="JavaScript" type="text/javascript">

<!--

if (typeof(_setHordeTitle) == undefined && parent.frames.horde_main) 
parent.document.title = 'Mail :: Options for Mail';

-->

</script>

</body>

</html>


08/06/2004 08:32:50 AM Jan Schneider Comment #6
Assigned to Jan Schneider
State ⇒ Assigned
Reply to this comment
This is the PHP code, not the generated javascript code.
08/06/2004 12:25:01 AM   Comment #5 Reply to this comment
horde/templates/common-footer.inc

=================================



<?php if (!empty($title)): ?>

<!--a75c305b1c0a6022--><script language="JavaScript" type="text/javascript">

<!--

if (parent.frames.horde_main) parent.document.title = '<?php echo 
addslashes($registry->getParam('name') . ' :: ' . $title) ?>';

//-->

</script>

<?php endif; if (isset($GLOBALS['notification'])) 
$GLOBALS['notification']->notify(array('listeners' => 
array('javascript'))); ?>

</body>

</html>


08/04/2004 09:45:09 AM   Comment #4 Reply to this comment
And what javascript code is on that line?
08/04/2004 09:20:44 AM   Comment #3 Reply to this comment
both IE6.0 & Mozilla/firefox have two drop down boxes.



IE6.0 detected javascript errors below but firefox not:

======================================================

line: 191

char: 17

error: 'undefined' is NULL not an object

code:0

URL: 
http://webmail.tmv.gov.tw/horde.beta/services/prefs.php?nocache=2ix4pfwdogzk&group=identities&app=imp


08/04/2004 09:03:02 AM   Comment #2 Reply to this comment
Works fine here. Do you get any javascript errors? Did you notice that 
there are two drop down boxes?
08/04/2004 12:35:30 AM david (at) tmv (dot) gov (dot) tw Comment #1
Priority ⇒ 2. Medium
Type ⇒ Bug
Summary ⇒ could not retrieve old preference setting
Queue ⇒ IMP
State ⇒ Unconfirmed
Reply to this comment
In IMP-->Option-->Personal Information ,the preference setting did not 
show to screen if identity was selected to change.




Saved Queries