Modified: shale/framework/trunk/shale-apps/shale-test-view/src/main/webapp/META-INF/context.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/shale-test-view/src/main/webapp/META-INF/context.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-apps/shale-test-view/src/main/webapp/META-INF/context.xml (original) +++ shale/framework/trunk/shale-apps/shale-test-view/src/main/webapp/META-INF/context.xml Thu Jan 11 13:31:37 2007 @@ -1,2 +1,20 @@ <?xml version="1.0" encoding="UTF-8"?> +<!-- + + 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. + +--> <Context path="/shale-test-view"/>
Modified: shale/framework/trunk/shale-apps/shale-test-view/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/shale-test-view/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-apps/shale-test-view/src/site/site.xml (original) +++ shale/framework/trunk/shale-apps/shale-test-view/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,5 +1,21 @@ <?xml version="1.0" encoding="ISO-8859-1"?> -<project name="Apache Shale Framework - Blank Starter App"> +<!-- + 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. +--> +<project name="Apache Shale Framework - Shale View Test Application"> <bannerLeft> <name>Apache Software Foundation</name> Modified: shale/framework/trunk/shale-apps/shale-usecases/pom.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/shale-usecases/pom.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-apps/shale-usecases/pom.xml (original) +++ shale/framework/trunk/shale-apps/shale-usecases/pom.xml Thu Jan 11 13:31:37 2007 @@ -15,7 +15,7 @@ * See the License for the specific language governing permissions and * limitations under the License. * - * $Id: pom.xml 412639 2006-06-08 03:18:28Z wsmoak $ + * $Id$ */ --> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" @@ -39,6 +39,29 @@ <groupId>commons-digester</groupId> <artifactId>commons-digester</artifactId> <version>1.8</version> + </dependency> + + <dependency> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + <exclusions> + <exclusion> + <groupId>avalon-framework</groupId> + <artifactId>avalon-framework</artifactId> + </exclusion> + <exclusion> + <groupId>logkit</groupId> + <artifactId>logkit</artifactId> + </exclusion> + <exclusion> + <groupId>log4j</groupId> + <artifactId>log4j</artifactId> + </exclusion> + <exclusion> + <groupId>javax.servlet</groupId> + <artifactId>servlet-api</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> Propchange: shale/framework/trunk/shale-apps/shale-usecases/pom.xml ------------------------------------------------------------------------------ svn:keywords = Author Date Rev URL Id Modified: shale/framework/trunk/shale-apps/shale-usecases/src/main/assembly/dep.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/shale-usecases/src/main/assembly/dep.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-apps/shale-usecases/src/main/assembly/dep.xml (original) +++ shale/framework/trunk/shale-apps/shale-usecases/src/main/assembly/dep.xml Thu Jan 11 13:31:37 2007 @@ -22,7 +22,6 @@ <id></id> <formats> - <format>tar.gz</format> <format>zip</format> </formats> <includeBaseDirectory>true</includeBaseDirectory> Modified: shale/framework/trunk/shale-apps/shale-usecases/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/shale-usecases/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-apps/shale-usecases/src/site/site.xml (original) +++ shale/framework/trunk/shale-apps/shale-usecases/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <project name="Apache Shale Framework - Usecases Sample App"> <bannerLeft> Modified: shale/framework/trunk/shale-apps/shale-usecases/src/site/xdoc/dependencies.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/shale-usecases/src/site/xdoc/dependencies.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-apps/shale-usecases/src/site/xdoc/dependencies.xml (original) +++ shale/framework/trunk/shale-apps/shale-usecases/src/site/xdoc/dependencies.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0"?> +<!-- + 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. +--> <document> <properties> Modified: shale/framework/trunk/shale-apps/src/site/apt/selenium.apt URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/src/site/apt/selenium.apt?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-apps/src/site/apt/selenium.apt (original) +++ shale/framework/trunk/shale-apps/src/site/apt/selenium.apt Thu Jan 11 13:31:37 2007 @@ -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. +~~ ----------- Selenium Testing ----------- Modified: shale/framework/trunk/shale-apps/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-apps/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-apps/src/site/site.xml (original) +++ shale/framework/trunk/shale-apps/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <project name="Apache Shale Framework - Sample Applications"> <bannerLeft> Modified: shale/framework/trunk/shale-clay/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-clay/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-clay/src/site/site.xml (original) +++ shale/framework/trunk/shale-clay/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <project name="Apache Shale Framework - Clay"> <bannerLeft> Modified: shale/framework/trunk/shale-clay/src/test/java/org/apache/shale/clay/config/AssignViewRootTestCase.java URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-clay/src/test/java/org/apache/shale/clay/config/AssignViewRootTestCase.java?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-clay/src/test/java/org/apache/shale/clay/config/AssignViewRootTestCase.java (original) +++ shale/framework/trunk/shale-clay/src/test/java/org/apache/shale/clay/config/AssignViewRootTestCase.java Thu Jan 11 13:31:37 2007 @@ -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.shale.clay.config; import java.io.StringWriter; Modified: shale/framework/trunk/shale-clay/src/test/java/org/apache/shale/clay/config/ConverterTestCase.java URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-clay/src/test/java/org/apache/shale/clay/config/ConverterTestCase.java?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-clay/src/test/java/org/apache/shale/clay/config/ConverterTestCase.java (original) +++ shale/framework/trunk/shale-clay/src/test/java/org/apache/shale/clay/config/ConverterTestCase.java Thu Jan 11 13:31:37 2007 @@ -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.shale.clay.config; import java.io.StringWriter; Modified: shale/framework/trunk/shale-clay/src/test/java/org/apache/shale/clay/config/LimitedJspxTestCase.java URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-clay/src/test/java/org/apache/shale/clay/config/LimitedJspxTestCase.java?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-clay/src/test/java/org/apache/shale/clay/config/LimitedJspxTestCase.java (original) +++ shale/framework/trunk/shale-clay/src/test/java/org/apache/shale/clay/config/LimitedJspxTestCase.java Thu Jan 11 13:31:37 2007 @@ -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.shale.clay.config; import java.util.ArrayList; Modified: shale/framework/trunk/shale-core/README.html URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-core/README.html?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-core/README.html (original) +++ shale/framework/trunk/shale-core/README.html Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <html> +<!-- + 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. +--> <head> <title>Struts 2.x 'Shale' Proposal</title> </head> Modified: shale/framework/trunk/shale-core/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-core/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-core/src/site/site.xml (original) +++ shale/framework/trunk/shale-core/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <project name="Apache Shale Framework - Core Library"> <bannerLeft> Modified: shale/framework/trunk/shale-dialog-basic/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-dialog-basic/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-dialog-basic/src/site/site.xml (original) +++ shale/framework/trunk/shale-dialog-basic/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <project name="Apache Shale Framework - Dialog Manager - Basic Implementation"> <bannerLeft> Modified: shale/framework/trunk/shale-dialog-scxml/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-dialog-scxml/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-dialog-scxml/src/site/site.xml (original) +++ shale/framework/trunk/shale-dialog-scxml/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <project name="Apache Shale Framework - Dialog Manager - SCXML Implementation"> <bannerLeft> Modified: shale/framework/trunk/shale-dialog/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-dialog/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-dialog/src/site/site.xml (original) +++ shale/framework/trunk/shale-dialog/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <project name="Apache Shale Framework - Dialog Manager"> <bannerLeft> Modified: shale/framework/trunk/shale-dist/src/assemble/dist.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-dist/src/assemble/dist.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-dist/src/assemble/dist.xml (original) +++ shale/framework/trunk/shale-dist/src/assemble/dist.xml Thu Jan 11 13:31:37 2007 @@ -23,7 +23,6 @@ <id></id> <formats> - <format>tar.gz</format> <format>zip</format> </formats> <includeBaseDirectory>true</includeBaseDirectory> Modified: shale/framework/trunk/shale-remoting/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-remoting/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-remoting/src/site/site.xml (original) +++ shale/framework/trunk/shale-remoting/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <project name="Apache Shale Framework - Remoting"> <bannerLeft> Modified: shale/framework/trunk/shale-spring/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-spring/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-spring/src/site/site.xml (original) +++ shale/framework/trunk/shale-spring/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <project name="Apache Shale Framework - Spring Integration"> <bannerLeft> Modified: shale/framework/trunk/shale-test/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-test/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-test/src/site/site.xml (original) +++ shale/framework/trunk/shale-test/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <project name="Apache Shale Framework - Test Framework"> <bannerLeft> Modified: shale/framework/trunk/shale-tiger/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-tiger/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-tiger/src/site/site.xml (original) +++ shale/framework/trunk/shale-tiger/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <project name="Apache Shale Framework - Tiger Extensions"> <bannerLeft> Modified: shale/framework/trunk/shale-tiles/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-tiles/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-tiles/src/site/site.xml (original) +++ shale/framework/trunk/shale-tiles/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <project name="Apache Shale Framework - Tiles Integration"> <bannerLeft> Modified: shale/framework/trunk/shale-validator/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-validator/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-validator/src/site/site.xml (original) +++ shale/framework/trunk/shale-validator/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <project name="Apache Shale Framework - Validator Integration"> <bannerLeft> Modified: shale/framework/trunk/shale-view/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/shale-view/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/shale-view/src/site/site.xml (original) +++ shale/framework/trunk/shale-view/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <project name="Apache Shale Framework - View Controller"> <bannerLeft> Modified: shale/framework/trunk/src/site/resources/doap_Shale.rdf URL: http://svn.apache.org/viewvc/shale/framework/trunk/src/site/resources/doap_Shale.rdf?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/src/site/resources/doap_Shale.rdf (original) +++ shale/framework/trunk/src/site/resources/doap_Shale.rdf Thu Jan 11 13:31:37 2007 @@ -6,12 +6,20 @@ xmlns:asfext="http://projects.apache.org/ns/asfext#" xmlns:foaf="http://xmlns.com/foaf/0.1/"> <!-- - ======================================================================= + 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 - Copyright (c) 2006 The Apache Software Foundation. - All rights reserved. + 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. --> <Project rdf:about="http://Shale.rdf.apache.org/"> <created>2006-03-16</created> Modified: shale/framework/trunk/src/site/site.xml URL: http://svn.apache.org/viewvc/shale/framework/trunk/src/site/site.xml?view=diff&rev=495383&r1=495382&r2=495383 ============================================================================== --- shale/framework/trunk/src/site/site.xml (original) +++ shale/framework/trunk/src/site/site.xml Thu Jan 11 13:31:37 2007 @@ -1,4 +1,20 @@ <?xml version="1.0" encoding="ISO-8859-1"?> +<!-- + 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. +--> <project name="Apache Shale Framework"> <bannerLeft>
