Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/tapestry-5
Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/9cd336e5 Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/9cd336e5 Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/9cd336e5 Branch: refs/heads/master Commit: 9cd336e572dfcc36ba08ec750949b94f757bb3a7 Parents: 7bad88d c1c0c24 Author: Thiago H. de Paula Figueiredo <[email protected]> Authored: Tue Apr 1 19:58:57 2014 -0300 Committer: Thiago H. de Paula Figueiredo <[email protected]> Committed: Tue Apr 1 19:58:57 2014 -0300 ---------------------------------------------------------------------- 54_RELEASE_NOTES.md | 5 + build.gradle | 47 +- plastic/LICENSE-ASM-3_3_1.txt | 29 - plastic/LICENSE-ASM-5_0.txt | 29 + plastic/NOTICE.txt | 4 +- .../internal/plastic/asm/AnnotationVisitor.java | 82 +- .../internal/plastic/asm/AnnotationWriter.java | 123 +- .../internal/plastic/asm/Attribute.java | 213 +- .../internal/plastic/asm/ByteVector.java | 168 +- .../internal/plastic/asm/ClassReader.java | 3350 ++++++++++-------- .../internal/plastic/asm/ClassVisitor.java | 291 +- .../internal/plastic/asm/ClassWriter.java | 694 ++-- .../tapestry5/internal/plastic/asm/Context.java | 145 + .../tapestry5/internal/plastic/asm/Edge.java | 2 +- .../internal/plastic/asm/FieldVisitor.java | 75 +- .../internal/plastic/asm/FieldWriter.java | 138 +- .../tapestry5/internal/plastic/asm/Frame.java | 1087 +++--- .../tapestry5/internal/plastic/asm/Handle.java | 65 +- .../tapestry5/internal/plastic/asm/Handler.java | 13 +- .../tapestry5/internal/plastic/asm/Item.java | 188 +- .../tapestry5/internal/plastic/asm/Label.java | 169 +- .../internal/plastic/asm/MethodVisitor.java | 808 +++-- .../internal/plastic/asm/MethodWriter.java | 1535 ++++---- .../tapestry5/internal/plastic/asm/Opcodes.java | 9 +- .../tapestry5/internal/plastic/asm/Type.java | 333 +- .../internal/plastic/asm/TypePath.java | 193 + .../internal/plastic/asm/TypeReference.java | 452 +++ .../plastic/asm/commons/AdviceAdapter.java | 646 ++++ .../plastic/asm/commons/AnalyzerAdapter.java | 947 +++++ .../plastic/asm/commons/CodeSizeEvaluator.java | 238 ++ .../plastic/asm/commons/GeneratorAdapter.java | 1628 +++++++++ .../plastic/asm/commons/InstructionAdapter.java | 1170 ++++++ .../plastic/asm/commons/JSRInlinerAdapter.java | 333 +- .../asm/commons/LocalVariablesSorter.java | 381 ++ .../internal/plastic/asm/commons/Method.java | 282 ++ .../internal/plastic/asm/commons/Remapper.java | 223 ++ .../asm/commons/RemappingAnnotationAdapter.java | 79 + .../asm/commons/RemappingClassAdapter.java | 135 + .../asm/commons/RemappingFieldAdapter.java | 71 + .../asm/commons/RemappingMethodAdapter.java | 224 ++ .../asm/commons/RemappingSignatureAdapter.java | 155 + .../asm/commons/SerialVersionUIDAdder.java | 540 +++ .../plastic/asm/commons/SimpleRemapper.java | 69 + .../plastic/asm/commons/StaticInitMerger.java | 97 + .../asm/commons/TableSwitchGenerator.java | 57 + .../asm/commons/TryCatchBlockSorter.java | 96 + .../internal/plastic/asm/commons/package.html | 48 + .../optimizer/AnnotationConstantsCollector.java | 147 + .../asm/optimizer/ClassConstantsCollector.java | 198 ++ .../plastic/asm/optimizer/ClassOptimizer.java | 260 ++ .../plastic/asm/optimizer/Constant.java | 323 ++ .../plastic/asm/optimizer/ConstantPool.java | 249 ++ .../asm/optimizer/FieldConstantsCollector.java | 89 + .../plastic/asm/optimizer/JarOptimizer.java | 235 ++ .../asm/optimizer/MethodConstantsCollector.java | 224 ++ .../plastic/asm/optimizer/MethodOptimizer.java | 136 + .../plastic/asm/optimizer/NameMapping.java | 114 + .../plastic/asm/optimizer/Shrinker.java | 283 ++ .../plastic/asm/optimizer/jdk1.2.2_017.txt.gz | Bin 0 -> 113814 bytes .../plastic/asm/optimizer/jdk1.3.1_19.txt.gz | Bin 0 -> 128067 bytes .../asm/optimizer/shrink-annotations.properties | 53 + .../asm/optimizer/shrink-frames.properties | 62 + .../asm/optimizer/shrink-resize.properties | 37 + .../asm/optimizer/shrink-signatures.properties | 43 + .../asm/optimizer/shrink-writer.properties | 66 + .../plastic/asm/optimizer/shrink.properties | 380 ++ .../plastic/asm/signature/SignatureReader.java | 191 +- .../plastic/asm/signature/SignatureVisitor.java | 88 +- .../plastic/asm/signature/SignatureWriter.java | 6 +- .../plastic/asm/tree/AbstractInsnNode.java | 132 +- .../plastic/asm/tree/AnnotationNode.java | 72 +- .../internal/plastic/asm/tree/ClassNode.java | 199 +- .../plastic/asm/tree/FieldInsnNode.java | 48 +- .../internal/plastic/asm/tree/FieldNode.java | 198 +- .../internal/plastic/asm/tree/FrameNode.java | 141 +- .../internal/plastic/asm/tree/IincInsnNode.java | 17 +- .../plastic/asm/tree/InnerClassNode.java | 46 +- .../internal/plastic/asm/tree/InsnList.java | 184 +- .../internal/plastic/asm/tree/InsnNode.java | 46 +- .../internal/plastic/asm/tree/IntInsnNode.java | 26 +- .../plastic/asm/tree/InvokeDynamicInsnNode.java | 32 +- .../internal/plastic/asm/tree/JumpInsnNode.java | 39 +- .../internal/plastic/asm/tree/LabelNode.java | 4 +- .../internal/plastic/asm/tree/LdcInsnNode.java | 18 +- .../plastic/asm/tree/LineNumberNode.java | 16 +- .../asm/tree/LocalVariableAnnotationNode.java | 157 + .../plastic/asm/tree/LocalVariableNode.java | 51 +- .../plastic/asm/tree/LookupSwitchInsnNode.java | 36 +- .../plastic/asm/tree/MethodInsnNode.java | 77 +- .../internal/plastic/asm/tree/MethodNode.java | 542 ++- .../asm/tree/MultiANewArrayInsnNode.java | 17 +- .../plastic/asm/tree/ParameterNode.java | 76 + .../plastic/asm/tree/TableSwitchInsnNode.java | 41 +- .../plastic/asm/tree/TryCatchBlockNode.java | 97 +- .../plastic/asm/tree/TypeAnnotationNode.java | 100 + .../internal/plastic/asm/tree/TypeInsnNode.java | 28 +- .../internal/plastic/asm/tree/VarInsnNode.java | 34 +- .../plastic/asm/tree/analysis/Analyzer.java | 549 +++ .../asm/tree/analysis/AnalyzerException.java | 61 + .../asm/tree/analysis/BasicInterpreter.java | 358 ++ .../plastic/asm/tree/analysis/BasicValue.java | 111 + .../asm/tree/analysis/BasicVerifier.java | 433 +++ .../plastic/asm/tree/analysis/Frame.java | 738 ++++ .../plastic/asm/tree/analysis/Interpreter.java | 226 ++ .../asm/tree/analysis/SimpleVerifier.java | 320 ++ .../plastic/asm/tree/analysis/SmallSet.java | 134 + .../asm/tree/analysis/SourceInterpreter.java | 198 ++ .../plastic/asm/tree/analysis/SourceValue.java | 97 + .../plastic/asm/tree/analysis/Subroutine.java | 90 + .../plastic/asm/tree/analysis/Value.java | 45 + .../plastic/asm/tree/analysis/package.html | 67 + .../internal/plastic/asm/util/ASMifiable.java | 19 +- .../internal/plastic/asm/util/ASMifier.java | 1285 +++++++ .../asm/util/CheckAnnotationAdapter.java | 136 + .../plastic/asm/util/CheckClassAdapter.java | 1009 ++++++ .../plastic/asm/util/CheckFieldAdapter.java | 122 + .../plastic/asm/util/CheckMethodAdapter.java | 1542 ++++++++ .../plastic/asm/util/CheckSignatureAdapter.java | 330 ++ .../internal/plastic/asm/util/Printer.java | 421 ++- .../internal/plastic/asm/util/Textifiable.java | 16 +- .../internal/plastic/asm/util/Textifier.java | 732 ++-- .../asm/util/TraceAnnotationVisitor.java | 32 +- .../plastic/asm/util/TraceClassVisitor.java | 158 +- .../plastic/asm/util/TraceFieldVisitor.java | 27 +- .../plastic/asm/util/TraceMethodVisitor.java | 172 +- .../plastic/asm/util/TraceSignatureVisitor.java | 70 +- .../plastic/asm/xml/ASMContentHandler.java | 1453 ++++++++ .../internal/plastic/asm/xml/Processor.java | 1044 ++++++ .../internal/plastic/asm/xml/SAXAdapter.java | 89 + .../plastic/asm/xml/SAXAnnotationAdapter.java | 242 ++ .../plastic/asm/xml/SAXClassAdapter.java | 335 ++ .../plastic/asm/xml/SAXCodeAdapter.java | 415 +++ .../plastic/asm/xml/SAXFieldAdapter.java | 71 + .../internal/plastic/asm/xml/asm-xml.dtd | 349 ++ .../internal/plastic/asm/xml/package.html | 96 + settings.gradle | 2 +- .../TapestryBeanValidationIntegrationTests.java | 2 +- .../META-INF/modules/t5/core/events.coffee | 9 +- .../META-INF/modules/t5/core/forms.coffee | 26 +- .../tapestry5/corelib/components/Form.java | 13 +- .../corelib/components/FormFragment.java | 8 +- .../tapestry5/corelib/components/Zone.java | 8 +- .../corelib/internal/ComponentActionSink.java | 15 +- .../corelib/internal/FormSupportAdapter.java | 7 +- .../corelib/internal/FormSupportImpl.java | 7 +- .../internal/services/AssetSourceImpl.java | 17 +- .../ClasspathAssetAliasManagerImpl.java | 9 +- .../services/ajax/JavaScriptSupportImpl.java | 26 +- .../apache/tapestry5/services/AssetAlias.java | 4 +- .../apache/tapestry5/services/FormSupport.java | 16 +- .../org/apache/tapestry5/t5-core-dom.coffee | 7 +- .../assets/tapestry5/exception-frame.css | 2 +- .../assets/tapestry5/tapestry-console.css | 2 +- tapestry-core/src/test/app1/AjaxRadioDemo.tml | 64 + .../src/test/app1/LinkSubmitInZoneDemo.tml | 2 +- .../integration/app1/AjaxGroovyTests.groovy | 25 + .../integration/app1/FormCancelTests.groovy | 19 + .../ajax/JavaScriptSupportImplTest.groovy | 10 +- .../ActivationContextIntegrationTests.java | 19 +- .../integration/app1/pages/AjaxRadioDemo.java | 78 + .../app1/pages/FormCancelActionDemo.java | 48 + .../tapestry5/integration/app1/pages/Index.java | 16 +- .../ClasspathAssetAliasManagerImplTest.java | 29 +- .../app1/pages/FormCancelActionDemo.tml | 14 + tapestry-ioc-test/build.gradle | 10 + .../apache/tapestry5/ioc/test/ModuleDef.java | 33 + .../org/apache/tapestry5/ioc/test/Registry.java | 41 + .../ioc/test/RegistryShutdownType.java | 30 + .../ioc/test/TapestryIOCJUnit4ClassRunner.java | 102 + .../tapestry5/ioc/test/TestRegistryManager.java | 137 + .../apache/tapestry5/ioc/test/MapModuleDef.java | 94 + ...estryIOCJUnit4ClassRunnerAfterClassTest.java | 53 + ...stryIOCJUnit4ClassRunnerAfterMethodTest.java | 55 + ...pestryIOCJUnit4ClassRunnerModuleDefTest.java | 63 + 174 files changed, 32090 insertions(+), 5948 deletions(-) ----------------------------------------------------------------------
