You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@click.apache.org by sa...@apache.org on 2008/12/18 10:52:19 UTC

svn commit: r727685 - in /incubator/click/trunk/click/mock: src/net/sf/click/ src/net/sf/click/servlet/ test/net/sf/click/ test/net/sf/click/pages/ test/net/sf/click/servlet/ test/web/ test/web/WEB-INF/

Author: sabob
Date: Thu Dec 18 01:52:18 2008
New Revision: 727685

URL: http://svn.apache.org/viewvc?rev=727685&view=rev
Log:
updated license headers for Mock package

Modified:
    incubator/click/trunk/click/mock/src/net/sf/click/MockContainer.java
    incubator/click/trunk/click/mock/src/net/sf/click/MockContext.java
    incubator/click/trunk/click/mock/src/net/sf/click/package.html
    incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockRequest.java
    incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockRequestDispatcher.java
    incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockResponse.java
    incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockServletConfig.java
    incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockServletContext.java
    incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockSession.java
    incubator/click/trunk/click/mock/src/net/sf/click/servlet/package.html
    incubator/click/trunk/click/mock/test/net/sf/click/MockContainerTest.java
    incubator/click/trunk/click/mock/test/net/sf/click/MockContextTest.java
    incubator/click/trunk/click/mock/test/net/sf/click/MockRequestTest.java
    incubator/click/trunk/click/mock/test/net/sf/click/pages/BorderPage.java
    incubator/click/trunk/click/mock/test/net/sf/click/pages/BorderTestPage.java
    incubator/click/trunk/click/mock/test/net/sf/click/pages/FormPage.java
    incubator/click/trunk/click/mock/test/net/sf/click/pages/ForwardPage.java
    incubator/click/trunk/click/mock/test/net/sf/click/pages/RedirectPage.java
    incubator/click/trunk/click/mock/test/net/sf/click/pages/TestPage.java
    incubator/click/trunk/click/mock/test/net/sf/click/servlet/MockTests.java
    incubator/click/trunk/click/mock/test/web/WEB-INF/click.xml
    incubator/click/trunk/click/mock/test/web/border-template.htm
    incubator/click/trunk/click/mock/test/web/border-test.htm
    incubator/click/trunk/click/mock/test/web/form.htm
    incubator/click/trunk/click/mock/test/web/forward.htm
    incubator/click/trunk/click/mock/test/web/redirect.htm
    incubator/click/trunk/click/mock/test/web/test.htm

Modified: incubator/click/trunk/click/mock/src/net/sf/click/MockContainer.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/src/net/sf/click/MockContainer.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/src/net/sf/click/MockContainer.java (original)
+++ incubator/click/trunk/click/mock/src/net/sf/click/MockContainer.java Thu Dec 18 01:52:18 2008
@@ -1,17 +1,20 @@
 /*
- * Copyright 2004-2008 Malcolm A. Edgar
+ * 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
  *
- * Licensed 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
  *
- *     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.
+ * 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 net.sf.click;
 

Modified: incubator/click/trunk/click/mock/src/net/sf/click/MockContext.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/src/net/sf/click/MockContext.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/src/net/sf/click/MockContext.java (original)
+++ incubator/click/trunk/click/mock/src/net/sf/click/MockContext.java Thu Dec 18 01:52:18 2008
@@ -1,17 +1,20 @@
 /*
- * Copyright 2004-2008 Malcolm A. Edgar
+ * 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
  *
- * Licensed 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
  *
- *     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.
+ * 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 net.sf.click;
 

Modified: incubator/click/trunk/click/mock/src/net/sf/click/package.html
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/src/net/sf/click/package.html?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/src/net/sf/click/package.html (original)
+++ incubator/click/trunk/click/mock/src/net/sf/click/package.html Thu Dec 18 01:52:18 2008
@@ -1,3 +1,22 @@
+<!--
+   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.
+-->
+
 <body>
 Provides a mock package for Click, enabling unit testing of Pages and Controls.
 <p/>

Modified: incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockRequest.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockRequest.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockRequest.java (original)
+++ incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockRequest.java Thu Dec 18 01:52:18 2008
@@ -1,18 +1,20 @@
 /*
- * 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
+ * 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
+ *   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.
+ * 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 net.sf.click.servlet;
 

Modified: incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockRequestDispatcher.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockRequestDispatcher.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockRequestDispatcher.java (original)
+++ incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockRequestDispatcher.java Thu Dec 18 01:52:18 2008
@@ -1,18 +1,20 @@
 /*
- * 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
+ * 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
+ *   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.
+ * 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 net.sf.click.servlet;
 

Modified: incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockResponse.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockResponse.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockResponse.java (original)
+++ incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockResponse.java Thu Dec 18 01:52:18 2008
@@ -1,18 +1,20 @@
 /*
- * 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
+ * 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
+ *   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.
+ * 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 net.sf.click.servlet;
 

Modified: incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockServletConfig.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockServletConfig.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockServletConfig.java (original)
+++ incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockServletConfig.java Thu Dec 18 01:52:18 2008
@@ -1,15 +1,20 @@
 /*
- * Licensed 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
+ * 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
+ *   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.
+ * 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 net.sf.click.servlet;
 

Modified: incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockServletContext.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockServletContext.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockServletContext.java (original)
+++ incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockServletContext.java Thu Dec 18 01:52:18 2008
@@ -1,18 +1,20 @@
 /*
- * 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
+ * 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
+ *   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.
+ * 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 net.sf.click.servlet;
 

Modified: incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockSession.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockSession.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockSession.java (original)
+++ incubator/click/trunk/click/mock/src/net/sf/click/servlet/MockSession.java Thu Dec 18 01:52:18 2008
@@ -1,15 +1,20 @@
 /*
- * Licensed 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
+ * 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
+ *   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.
+ * 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 net.sf.click.servlet;
 

Modified: incubator/click/trunk/click/mock/src/net/sf/click/servlet/package.html
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/src/net/sf/click/servlet/package.html?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/src/net/sf/click/servlet/package.html (original)
+++ incubator/click/trunk/click/mock/src/net/sf/click/servlet/package.html Thu Dec 18 01:52:18 2008
@@ -1,3 +1,22 @@
+<!--
+   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.
+-->
+
 <body>
 Provides mock implementations of the Servlet API interfaces.
 </body
\ No newline at end of file

Modified: incubator/click/trunk/click/mock/test/net/sf/click/MockContainerTest.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/net/sf/click/MockContainerTest.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/net/sf/click/MockContainerTest.java (original)
+++ incubator/click/trunk/click/mock/test/net/sf/click/MockContainerTest.java Thu Dec 18 01:52:18 2008
@@ -1,3 +1,21 @@
+/*
+ * 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 net.sf.click;
 
 import java.io.File;

Modified: incubator/click/trunk/click/mock/test/net/sf/click/MockContextTest.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/net/sf/click/MockContextTest.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/net/sf/click/MockContextTest.java (original)
+++ incubator/click/trunk/click/mock/test/net/sf/click/MockContextTest.java Thu Dec 18 01:52:18 2008
@@ -1,3 +1,21 @@
+/*
+ * 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 net.sf.click;
 
 import junit.framework.TestCase;

Modified: incubator/click/trunk/click/mock/test/net/sf/click/MockRequestTest.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/net/sf/click/MockRequestTest.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/net/sf/click/MockRequestTest.java (original)
+++ incubator/click/trunk/click/mock/test/net/sf/click/MockRequestTest.java Thu Dec 18 01:52:18 2008
@@ -1,3 +1,21 @@
+/*
+ * 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 net.sf.click;
 
 import junit.framework.TestCase;

Modified: incubator/click/trunk/click/mock/test/net/sf/click/pages/BorderPage.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/net/sf/click/pages/BorderPage.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/net/sf/click/pages/BorderPage.java (original)
+++ incubator/click/trunk/click/mock/test/net/sf/click/pages/BorderPage.java Thu Dec 18 01:52:18 2008
@@ -1,3 +1,21 @@
+/*
+ * 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 net.sf.click.pages;
 
 import net.sf.click.Page;

Modified: incubator/click/trunk/click/mock/test/net/sf/click/pages/BorderTestPage.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/net/sf/click/pages/BorderTestPage.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/net/sf/click/pages/BorderTestPage.java (original)
+++ incubator/click/trunk/click/mock/test/net/sf/click/pages/BorderTestPage.java Thu Dec 18 01:52:18 2008
@@ -1,3 +1,21 @@
+/*
+ * 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 net.sf.click.pages;
 
 /**

Modified: incubator/click/trunk/click/mock/test/net/sf/click/pages/FormPage.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/net/sf/click/pages/FormPage.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/net/sf/click/pages/FormPage.java (original)
+++ incubator/click/trunk/click/mock/test/net/sf/click/pages/FormPage.java Thu Dec 18 01:52:18 2008
@@ -1,3 +1,21 @@
+/*
+ * 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 net.sf.click.pages;
 
 import net.sf.click.Page;

Modified: incubator/click/trunk/click/mock/test/net/sf/click/pages/ForwardPage.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/net/sf/click/pages/ForwardPage.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/net/sf/click/pages/ForwardPage.java (original)
+++ incubator/click/trunk/click/mock/test/net/sf/click/pages/ForwardPage.java Thu Dec 18 01:52:18 2008
@@ -1,3 +1,21 @@
+/*
+ * 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 net.sf.click.pages;
 
 import net.sf.click.*;

Modified: incubator/click/trunk/click/mock/test/net/sf/click/pages/RedirectPage.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/net/sf/click/pages/RedirectPage.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/net/sf/click/pages/RedirectPage.java (original)
+++ incubator/click/trunk/click/mock/test/net/sf/click/pages/RedirectPage.java Thu Dec 18 01:52:18 2008
@@ -1,3 +1,21 @@
+/*
+ * 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 net.sf.click.pages;
 
 import net.sf.click.*;

Modified: incubator/click/trunk/click/mock/test/net/sf/click/pages/TestPage.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/net/sf/click/pages/TestPage.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/net/sf/click/pages/TestPage.java (original)
+++ incubator/click/trunk/click/mock/test/net/sf/click/pages/TestPage.java Thu Dec 18 01:52:18 2008
@@ -1,3 +1,21 @@
+/*
+ * 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 net.sf.click.pages;
 
 import net.sf.click.*;

Modified: incubator/click/trunk/click/mock/test/net/sf/click/servlet/MockTests.java
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/net/sf/click/servlet/MockTests.java?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/net/sf/click/servlet/MockTests.java (original)
+++ incubator/click/trunk/click/mock/test/net/sf/click/servlet/MockTests.java Thu Dec 18 01:52:18 2008
@@ -1,3 +1,21 @@
+/*
+ * 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 net.sf.click.servlet;
 
 import net.sf.click.*;

Modified: incubator/click/trunk/click/mock/test/web/WEB-INF/click.xml
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/web/WEB-INF/click.xml?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/web/WEB-INF/click.xml (original)
+++ incubator/click/trunk/click/mock/test/web/WEB-INF/click.xml Thu Dec 18 01:52:18 2008
@@ -1,4 +1,24 @@
 <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
+
+<!--
+   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.
+-->
+
 <click-app charset="UTF-8">
     <pages package="net.sf.click.pages"/>
     <mode value="production"/>

Modified: incubator/click/trunk/click/mock/test/web/border-template.htm
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/web/border-template.htm?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/web/border-template.htm (original)
+++ incubator/click/trunk/click/mock/test/web/border-template.htm Thu Dec 18 01:52:18 2008
@@ -1,3 +1,22 @@
+<!--
+   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.
+-->
+
 <h1>Header</h1>
 #parse($path)
 

Modified: incubator/click/trunk/click/mock/test/web/border-test.htm
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/web/border-test.htm?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/web/border-test.htm (original)
+++ incubator/click/trunk/click/mock/test/web/border-test.htm Thu Dec 18 01:52:18 2008
@@ -1 +1,20 @@
+<!--
+   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.
+-->
+
 This is a template with a border. Can we see parameter: $myparam
\ No newline at end of file

Modified: incubator/click/trunk/click/mock/test/web/form.htm
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/web/form.htm?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/web/form.htm (original)
+++ incubator/click/trunk/click/mock/test/web/form.htm Thu Dec 18 01:52:18 2008
@@ -1 +1,20 @@
+<!--
+   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.
+-->
+
 $form
\ No newline at end of file

Modified: incubator/click/trunk/click/mock/test/web/forward.htm
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/web/forward.htm?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/web/forward.htm (original)
+++ incubator/click/trunk/click/mock/test/web/forward.htm Thu Dec 18 01:52:18 2008
@@ -1 +1,20 @@
+<!--
+   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.
+-->
+
 This is a forward template. Can we see parameter: $myparam
\ No newline at end of file

Modified: incubator/click/trunk/click/mock/test/web/redirect.htm
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/web/redirect.htm?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/web/redirect.htm (original)
+++ incubator/click/trunk/click/mock/test/web/redirect.htm Thu Dec 18 01:52:18 2008
@@ -1 +1,20 @@
+<!--
+   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.
+-->
+
 This is a redirect template. Can we see parameter: $myparam
\ No newline at end of file

Modified: incubator/click/trunk/click/mock/test/web/test.htm
URL: http://svn.apache.org/viewvc/incubator/click/trunk/click/mock/test/web/test.htm?rev=727685&r1=727684&r2=727685&view=diff
==============================================================================
--- incubator/click/trunk/click/mock/test/web/test.htm (original)
+++ incubator/click/trunk/click/mock/test/web/test.htm Thu Dec 18 01:52:18 2008
@@ -1 +1,20 @@
+<!--
+   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.
+-->
+
 This is a normal template. Can we see parameter: $myparam
\ No newline at end of file