Updated Branches: refs/heads/master 35843c196 -> 420bf1992
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/420bf199 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/420bf199 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/420bf199 Branch: refs/heads/master Commit: 420bf1992c7801a739a9631c37cfbda8b168390f Parents: 35843c1 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:51:41 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/420bf199/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;
