Updated Branches: refs/heads/wicket-1.5.x bb87eb516 -> 2eae2bb8b
WICKET-4334 Prevent Wicket from causing redundant download of stateless resources (.js, .css etc.,) on browser with cookies enabled Add Apache licence to the new test class Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/2eae2bb8 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/2eae2bb8 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/2eae2bb8 Branch: refs/heads/wicket-1.5.x Commit: 2eae2bb8bcef72c0f335c937e93c05ca1eac37a0 Parents: bb87eb5 Author: martin-g <[email protected]> Authored: Mon Jan 16 14:28:37 2012 +0100 Committer: martin-g <[email protected]> Committed: Mon Jan 16 14:28:37 2012 +0100 ---------------------------------------------------------------------- .../request/cycle/RequestCycleUrlForTest.java | 16 +++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/2eae2bb8/wicket-core/src/test/java/org/apache/wicket/request/cycle/RequestCycleUrlForTest.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/test/java/org/apache/wicket/request/cycle/RequestCycleUrlForTest.java b/wicket-core/src/test/java/org/apache/wicket/request/cycle/RequestCycleUrlForTest.java index 13d43ba..b779521 100644 --- a/wicket-core/src/test/java/org/apache/wicket/request/cycle/RequestCycleUrlForTest.java +++ b/wicket-core/src/test/java/org/apache/wicket/request/cycle/RequestCycleUrlForTest.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.request.cycle; import static org.mockito.Matchers.argThat;
