You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by gr...@apache.org on 2006/11/08 18:45:27 UTC

svn commit: r472560 - in /myfaces: maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/ maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ maven/trunk/build-tools/src/main/resources/org/apache/myfaces/ maven/trunk/...

Author: grantsmith
Date: Wed Nov  8 09:45:25 2006
New Revision: 472560

URL: http://svn.apache.org/viewvc?view=rev&rev=472560
Log:
MYFACES-1488: License headers (Part 3)

Modified:
    myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/CodeGenerator.java
    myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentDef.java
    myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentDefinitionParser.java
    myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentGenerator.java
    myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentGeneratorTask.java
    myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/FieldDef.java
    myfaces/maven/trunk/build-tools/src/main/resources/org/apache/myfaces/checkstyle.xml
    myfaces/maven/trunk/build-tools/src/main/resources/org/apache/myfaces/tobago/checkstyle-strict.xml
    myfaces/maven/trunk/build-tools/src/main/resources/org/apache/myfaces/tobago/checkstyle.xml
    myfaces/maven/trunk/maven-archetype-jsfcomponents/pom.xml
    myfaces/maven/trunk/maven-archetype-jsfcomponents/src/main/resources/META-INF/archetype.xml
    myfaces/maven/trunk/maven-archetype-myfaces/pom.xml
    myfaces/maven/trunk/maven-archetype-myfaces/src/main/resources/META-INF/archetype.xml
    myfaces/maven/trunk/maven-archetype-myfaces/src/main/resources/archetype-resources/src/main/java/org/apache/myfaces/blank/HelloWorldBacking.java
    myfaces/maven/trunk/maven-archetype-myfaces/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml
    myfaces/maven/trunk/tobago-site-skin/pom.xml
    myfaces/site/trunk/src/site/xdoc/binary.xml
    myfaces/site/trunk/src/site/xdoc/project_management/bylaws.xml
    myfaces/site/trunk/src/site/xdoc/project_management/legal.xml
    myfaces/site/trunk/src/site/xdoc/source.xml

Modified: myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/CodeGenerator.java
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/CodeGenerator.java?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/CodeGenerator.java (original)
+++ myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/CodeGenerator.java Wed Nov  8 09:45:25 2006
@@ -1,18 +1,21 @@
 /*
- * Copyright 2002,2004 The Apache Software Foundation.
- * 
- * 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
- * 
- * 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.
- */
+ * 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.myfaces.codegen;
 
 import org.apache.velocity.Template;

Modified: myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentDef.java
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentDef.java?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentDef.java (original)
+++ myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentDef.java Wed Nov  8 09:45:25 2006
@@ -1,18 +1,21 @@
 /*
- * Copyright 2002,2004 The Apache Software Foundation.
- * 
- * 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
- * 
- * 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.
- */
+ * 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.myfaces.codegen.component;
 
 import java.io.IOException;

Modified: myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentDefinitionParser.java
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentDefinitionParser.java?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentDefinitionParser.java (original)
+++ myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentDefinitionParser.java Wed Nov  8 09:45:25 2006
@@ -1,18 +1,21 @@
 /*
- * Copyright 2002,2004 The Apache Software Foundation.
- * 
- * 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
- * 
- * 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.
- */
+ * 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.myfaces.codegen.component;
 
 import org.w3c.dom.Document;

Modified: myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentGenerator.java
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentGenerator.java?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentGenerator.java (original)
+++ myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentGenerator.java Wed Nov  8 09:45:25 2006
@@ -1,18 +1,21 @@
 /*
- * Copyright 2002,2004 The Apache Software Foundation.
- * 
- * 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
- * 
- * 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.
- */
+ * 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.myfaces.codegen.component;
 
 import org.apache.myfaces.codegen.CodeGenerator;

Modified: myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentGeneratorTask.java
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentGeneratorTask.java?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentGeneratorTask.java (original)
+++ myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/ComponentGeneratorTask.java Wed Nov  8 09:45:25 2006
@@ -1,18 +1,21 @@
 /*
- * Copyright 2002,2004 The Apache Software Foundation.
- * 
- * 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
- * 
- * 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.
- */
+ * 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.myfaces.codegen.component;
 
 import org.apache.tools.ant.BuildException;

Modified: myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/FieldDef.java
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/FieldDef.java?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/FieldDef.java (original)
+++ myfaces/maven/trunk/build-tools/src/main/java/org/apache/myfaces/codegen/component/FieldDef.java Wed Nov  8 09:45:25 2006
@@ -1,18 +1,21 @@
 /*
- * Copyright 2002,2004 The Apache Software Foundation.
- * 
- * 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
- * 
- * 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.
- */
+ * 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.myfaces.codegen.component;
 
 import java.io.IOException;

Modified: myfaces/maven/trunk/build-tools/src/main/resources/org/apache/myfaces/checkstyle.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/build-tools/src/main/resources/org/apache/myfaces/checkstyle.xml?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/build-tools/src/main/resources/org/apache/myfaces/checkstyle.xml (original)
+++ myfaces/maven/trunk/build-tools/src/main/resources/org/apache/myfaces/checkstyle.xml Wed Nov  8 09:45:25 2006
@@ -1,20 +1,23 @@
 <?xml version="1.0"?>
 <!-- 
 /*
- * Copyright 2001-2004 The Apache Software Foundation.
- * 
- * 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
- * 
- * 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.
- */
+ * 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.
+*/
  -->
 
 <!DOCTYPE module PUBLIC

Modified: myfaces/maven/trunk/build-tools/src/main/resources/org/apache/myfaces/tobago/checkstyle-strict.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/build-tools/src/main/resources/org/apache/myfaces/tobago/checkstyle-strict.xml?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/build-tools/src/main/resources/org/apache/myfaces/tobago/checkstyle-strict.xml (original)
+++ myfaces/maven/trunk/build-tools/src/main/resources/org/apache/myfaces/tobago/checkstyle-strict.xml Wed Nov  8 09:45:25 2006
@@ -1,20 +1,23 @@
 <?xml version="1.0"?>
 <!-- 
 /*
- * Copyright 2001-2004 The Apache Software Foundation.
- * 
- * 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
- * 
- * 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.
- */
+ * 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.
+*/
  -->
 
 <!DOCTYPE module PUBLIC

Modified: myfaces/maven/trunk/build-tools/src/main/resources/org/apache/myfaces/tobago/checkstyle.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/build-tools/src/main/resources/org/apache/myfaces/tobago/checkstyle.xml?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/build-tools/src/main/resources/org/apache/myfaces/tobago/checkstyle.xml (original)
+++ myfaces/maven/trunk/build-tools/src/main/resources/org/apache/myfaces/tobago/checkstyle.xml Wed Nov  8 09:45:25 2006
@@ -1,20 +1,23 @@
 <?xml version="1.0"?>
 <!-- 
 /*
- * Copyright 2001-2004 The Apache Software Foundation.
- * 
- * 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
- * 
- * 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.
- */
+ * 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.
+*/
  -->
 
 <!DOCTYPE module PUBLIC

Modified: myfaces/maven/trunk/maven-archetype-jsfcomponents/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/maven-archetype-jsfcomponents/pom.xml?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/maven-archetype-jsfcomponents/pom.xml (original)
+++ myfaces/maven/trunk/maven-archetype-jsfcomponents/pom.xml Wed Nov  8 09:45:25 2006
@@ -1,18 +1,23 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
- * Copyright 2002-2006 The Apache Software Foundation.
+ 
+ * 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.
+
  
  @author Bruno Aranda (latest modification by $Author$)
  @version $Revision$ $Date$

Modified: myfaces/maven/trunk/maven-archetype-jsfcomponents/src/main/resources/META-INF/archetype.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/maven-archetype-jsfcomponents/src/main/resources/META-INF/archetype.xml?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/maven-archetype-jsfcomponents/src/main/resources/META-INF/archetype.xml (original)
+++ myfaces/maven/trunk/maven-archetype-jsfcomponents/src/main/resources/META-INF/archetype.xml Wed Nov  8 09:45:25 2006
@@ -1,19 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
 <!--
- * Copyright 2002-2006 The Apache Software Foundation.
+ * 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.
  
  @author Bruno Aranda (latest modification by $Author$)
  @version $Revision$ $Date$

Modified: myfaces/maven/trunk/maven-archetype-myfaces/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/maven-archetype-myfaces/pom.xml?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/maven-archetype-myfaces/pom.xml (original)
+++ myfaces/maven/trunk/maven-archetype-myfaces/pom.xml Wed Nov  8 09:45:25 2006
@@ -1,19 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!--
- * Copyright 2002-2005 The Apache Software Foundation.
+ * 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.
+
  @author Bruno Aranda (latest modification by $Author$)
  @version $Revision$ $Date$
  

Modified: myfaces/maven/trunk/maven-archetype-myfaces/src/main/resources/META-INF/archetype.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/maven-archetype-myfaces/src/main/resources/META-INF/archetype.xml?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/maven-archetype-myfaces/src/main/resources/META-INF/archetype.xml (original)
+++ myfaces/maven/trunk/maven-archetype-myfaces/src/main/resources/META-INF/archetype.xml Wed Nov  8 09:45:25 2006
@@ -1,19 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
 <!--
- * Copyright 2002-2005 The Apache Software Foundation.
+ * 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.
  
  @author Bruno Aranda (latest modification by $Author$)
  @version $Revision$ $Date$

Modified: myfaces/maven/trunk/maven-archetype-myfaces/src/main/resources/archetype-resources/src/main/java/org/apache/myfaces/blank/HelloWorldBacking.java
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/maven-archetype-myfaces/src/main/resources/archetype-resources/src/main/java/org/apache/myfaces/blank/HelloWorldBacking.java?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/maven-archetype-myfaces/src/main/resources/archetype-resources/src/main/java/org/apache/myfaces/blank/HelloWorldBacking.java (original)
+++ myfaces/maven/trunk/maven-archetype-myfaces/src/main/resources/archetype-resources/src/main/java/org/apache/myfaces/blank/HelloWorldBacking.java Wed Nov  8 09:45:25 2006
@@ -1,18 +1,21 @@
 /*
- * Copyright 2004 The Apache Software Foundation.
- * 
- * 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
- * 
- * 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.
- */
+ * 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.myfaces.blank;
 
 /**

Modified: myfaces/maven/trunk/maven-archetype-myfaces/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/maven-archetype-myfaces/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/maven-archetype-myfaces/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml (original)
+++ myfaces/maven/trunk/maven-archetype-myfaces/src/main/resources/archetype-resources/src/main/webapp/WEB-INF/web.xml Wed Nov  8 09:45:25 2006
@@ -1,19 +1,22 @@
 <?xml version="1.0"?>
 
 <!--
- * Copyright 2006 The Apache Software Foundation.
+ * 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.
 -->
 <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

Modified: myfaces/maven/trunk/tobago-site-skin/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/tobago-site-skin/pom.xml?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/maven/trunk/tobago-site-skin/pom.xml (original)
+++ myfaces/maven/trunk/tobago-site-skin/pom.xml Wed Nov  8 09:45:25 2006
@@ -1,19 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
 
 <!--
- * Copyright 2002-2005 The Apache Software Foundation.
+ * 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.
 -->
 
 <project xmlns="http://maven.apache.org/POM/4.0.0"

Modified: myfaces/site/trunk/src/site/xdoc/binary.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/binary.xml?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/binary.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/binary.xml Wed Nov  8 09:45:25 2006
@@ -3,20 +3,22 @@
         <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
       
     <!--
-  Copyright 2005 The Apache Software Foundation or its licensors,
-  as applicable.
-
-  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
-
-  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.
+ * 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.
 --><!-- Note: To understand how this template is used, see the documentation
   at http://forrest.apache.org/howto/howto-asf-mirror.html
 --><document>

Modified: myfaces/site/trunk/src/site/xdoc/project_management/bylaws.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/project_management/bylaws.xml?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/project_management/bylaws.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/project_management/bylaws.xml Wed Nov  8 09:45:25 2006
@@ -3,20 +3,24 @@
         <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
       
     <!--
-  Copyright 2004 The Apache Software Foundation
-
-  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
-
-  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>
+ * 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>
 
 <body>
 

Modified: myfaces/site/trunk/src/site/xdoc/project_management/legal.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/project_management/legal.xml?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/project_management/legal.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/project_management/legal.xml Wed Nov  8 09:45:25 2006
@@ -3,20 +3,25 @@
         <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
       
     <!--
-  Copyright 2004-2005 The Apache Software Foundation
+ * 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.
+-->
 
-  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
-
-  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>
+<document>
 
   <body>
 

Modified: myfaces/site/trunk/src/site/xdoc/source.xml
URL: http://svn.apache.org/viewvc/myfaces/site/trunk/src/site/xdoc/source.xml?view=diff&rev=472560&r1=472559&r2=472560
==============================================================================
--- myfaces/site/trunk/src/site/xdoc/source.xml (original)
+++ myfaces/site/trunk/src/site/xdoc/source.xml Wed Nov  8 09:45:25 2006
@@ -3,20 +3,22 @@
         <!DOCTYPE document PUBLIC "-//APACHE//DTD Documentation Maven//EN" "http://maven.apache.org/dtd/maven-xdoc.dtd">
       
     <!--
-  Copyright 2005 The Apache Software Foundation or its licensors,
-  as applicable.
-
-  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
-
-  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.
+ * 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.
 --><!-- Note: To understand how this template is used, see the documentation
   at http://forrest.apache.org/howto/howto-asf-mirror.html
 --><document>