Updated Branches: refs/heads/wicket-1.5.x 82a9803d3 -> 21264d6b3
WICKET-4494 HtmlHandler wrongly handles tags not requiring closed tags if the markup does not have "top" level tag Add licence header Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/21264d6b Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/21264d6b Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/21264d6b Branch: refs/heads/wicket-1.5.x Commit: 21264d6b39fa9b091c0272ad27085c4db23c4f60 Parents: 82a9803 Author: Martin Tzvetanov Grigorov <[email protected]> Authored: Fri Apr 13 14:50:51 2012 +0300 Committer: Martin Tzvetanov Grigorov <[email protected]> Committed: Fri Apr 13 14:50:51 2012 +0300 ---------------------------------------------------------------------- .../markup/parser/filter/CustomMarkupLabel.java | 16 +++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/21264d6b/wicket-core/src/test/java/org/apache/wicket/markup/parser/filter/CustomMarkupLabel.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/test/java/org/apache/wicket/markup/parser/filter/CustomMarkupLabel.java b/wicket-core/src/test/java/org/apache/wicket/markup/parser/filter/CustomMarkupLabel.java index 0209076..3b035eb 100644 --- a/wicket-core/src/test/java/org/apache/wicket/markup/parser/filter/CustomMarkupLabel.java +++ b/wicket-core/src/test/java/org/apache/wicket/markup/parser/filter/CustomMarkupLabel.java @@ -1,3 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ package org.apache.wicket.markup.parser.filter; import java.nio.charset.Charset;
