You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2007/09/23 20:52:34 UTC

svn commit: r578592 [14/15] - in /myfaces/tobago/trunk: ./ core/ core/src/main/faces-config/ core/src/main/java/org/apache/myfaces/tobago/ core/src/main/java/org/apache/myfaces/tobago/ajax/api/ core/src/main/java/org/apache/myfaces/tobago/application/ ...

Modified: myfaces/tobago/trunk/tobago-tool/build-system/build-basic.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/build-system/build-basic.xml?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/build-system/build-basic.xml (original)
+++ myfaces/tobago/trunk/tobago-tool/build-system/build-basic.xml Sun Sep 23 11:51:32 2007
@@ -1,226 +1,226 @@
-<?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.
--->
-
-<project name="build-basic" default="dist">
-
-  <property name="build-system.dir" location="."/>
-
-  <!--XXX define tobago-home-->
-  <property file="${build-system.dir}/../../build.properties"/>
-
-  <property name="maven.task.version" value="2.0"/>
-  <property name="maven.task" value="maven-artifact-ant-${maven.task.version}-dep.jar"/>
-  <property name="maven.task.jar" value="${build-system.dir}/${maven.task}"/>
-  <available file="${maven.task.jar}" property="maven.task.present"/>
-
-  <property name="build" value="target"/>
-  <property name="build.classes.main" value="${build}/classes"/>
-  <property name="build.classes.test" value="${build}/test-classes"/>
-  <property name="build.config" value="${build}/config"/>
-  <property name="dist" value="${build}"/>
-
-  <property name="java.source.encoding" value="UTF-8"/>
-  <property name="java.version.source" value="1.5"/>
-  <property name="java.version.target" value="1.5"/>
-  <property name="java.compilerargs" value=""/>
-  <property name="java.version.bootclasspath" value=""/>
-  <property name="java.version.extdirs" value=""/>
-
-  <property name="src.main" value="src/main/java"/>
-  <property name="src.test" value="src/test/java"/>
-  <available file="${src.test}" property="src.test.present"/>
-  <property name="test.class.suffix" value="UnitTest"/>
-  <property name="report.junit" value="${build}/report/junit"/>
-
-  <target name="download-task" unless="maven.task.present">
-    <get
-        src="http://www.ibiblio.org/maven2/org/apache/maven/maven-artifact-ant/${maven.task.version}/${maven.task}"
-        dest="${maven.task.jar}"/>
-  </target>
-
-  <target name="init-task" depends="download-task">
-    <typedef resource="org/apache/maven/artifact/ant/antlib.xml">
-      <classpath>
-        <pathelement location="${maven.task.jar}"/>
-      </classpath>
-    </typedef>
-  </target>
-
-  <target name="init" depends="init-task">
-    <pom file="pom.xml" id="pom"/>
-    <dependencies filesetId="pom.dependencies" pathId="project.classpath.jar"
-                  verbose="false">
-      <pom refid="pom"/>
-    </dependencies>
-
-    <path id="project.classpath.test">
-      <path refid="project.classpath.jar"/>
-      <pathelement path="${build.classes.main}/"/>
-    </path>
-    <path id="build.classpath.run">
-      <path refid="project.classpath.test"/>
-      <pathelement path="${build.classes.test}/"/>
-    </path>
-  </target>
-
-  <target name="init-apt" depends="init-task">
-    <pom file="${build-system.dir}/dependencies.xml" id="dependencies"/>
-    <dependencies pathId="build.classpath.apt" verbose="false">
-      <pom refid="dependencies"/>
-    </dependencies>
-
-    <taskdef name="apt"
-             classname="org.apache.myfaces.tobago.apt.ant.Apt"
-             classpathref="build.classpath.apt"/>
-    <taskdef name="sniplet-extract"
-             classname="org.apache.myfaces.tobago.ant.sniplet.CodeSnipletExtractTask"
-             classpathref="build.classpath.apt"/>
-  </target>
-
-  <presetdef name="javac-default">
-    <javac deprecation="on" debug="on"
-           encoding="${java.source.encoding}"
-           target="${java.version.target}" source="${java.version.source}"
-           bootclasspath="${java.version.bootclasspath}"
-           extdirs="${java.version.extdirs}"
-           classpathref="project.classpath.jar">
-      <compilerarg line="${java.compilerargs}"/>
-    </javac>
-  </presetdef>
-
-  <target name="compile" depends="fetch-libs"
-          description="Compiles the sources of the artifact.">
-    <mkdir dir="${build.classes.main}"/>
-    <javac-default srcdir="${src.main}" destdir="${build.classes.main}"/>
-  </target>
-
-  <target name="test" depends="compile" if="src.test.present"
-          description="Run the unit tests.">
-    <mkdir dir="${build.classes.test}"/>
-    <javac-default srcdir="${src.test}"
-                   destdir="${build.classes.test}"
-                   classpathref="project.classpath.test"/>
-    <mkdir dir="${report.junit}"/>
-    <junit printsummary="yes" haltonfailure="yes" haltonerror="yes"
-           dir="${basedir}" maxmemory="128m">
-      <classpath refid="build.classpath.run"/>
-      <formatter type="xml"/>
-      <formatter type='brief' usefile='false'/>
-      <batchtest fork="yes" todir="${report.junit}">
-        <fileset dir="${build.classes.test}">
-          <include name="**/*${test.class.suffix}.class"/>
-        </fileset>
-      </batchtest>
-    </junit>
-  </target>
-
-  <!-- not really necessary, but currently easier to include libs in IDE -->
-  <!-- XXX need flattenmapper for file sets to include POM dependencies directly -->
-  <target name="fetch-libs" depends="init">
-    <mkdir dir="lib"/>
-    <copy todir="lib">
-      <fileset refid="pom.dependencies"/>
-      <flattenmapper/>
-    </copy>
-  </target>
-
-  <target name="dist" depends="compile"
-          description="Create a distribution of the artifact.">
-    <mkdir dir="${dist}"/>
-    <jar jarfile="${dist}/${pom.artifactId}.jar">
-      <fileset dir="${build.classes.main}">
-        <include name="**/*.class"/>
-      </fileset>
-      <fileset dir="${src.main}">
-        <include name="**/*.properties"/>
-        <include name="**/*.xml"/>
-        <include name="**/*.txt"/>
-        <include name="**/*.dtd"/>
-      </fileset>
-      <manifest>
-        <attribute name="Implementation-Title" value="${pom.artifactId}"/>
-        <attribute name="Implementation-Version" value="${pom.version}"/>
-      </manifest>
-    </jar>
-  </target>
-
-  <target name="install" depends="dist"
-          description="Install artifact into the local repository.">
-    <install file="${dist}/${pom.artifactId}.jar">
-      <pom refid="pom"/>
-    </install>
-  </target>
-
-  <target name="clean" description="Delete temporary files.">
-    <delete dir="${build}" quiet="true"/>
-    <mkdir dir="${build}"/>
-    <delete dir="lib" quiet="true"/>
-    <mkdir dir="lib"/>
-  </target>
-
-  <target name="war" depends="compile" description="Generate WAR archive.">
-    <mkdir dir="${dist}"/>
-    <property name="module" value="${build}/module"/>
-    <mkdir dir="${module}"/>
-    <unjar dest="${module}">
-      <!-- XXX need selector for scope attribute in POM -->
-      <fileset dir="lib" includes="tobago-theme-*.zip"/>
-    </unjar>
-
-    <!-- build the war-file -->
-    <war warfile="${dist}/${pom.artifactId}.war"
-         webxml="src/main/webapp/WEB-INF/web.xml">
-      <fileset dir="src/main/webapp">
-        <include name="**"/>
-        <exclude name="WEB-INF/**"/>
-      </fileset>
-      <fileset dir="${module}">
-        <include name="**/*"/>
-        <exclude name="META-INF"/>
-      </fileset>
-      <lib dir="${module}/WEB-INF/lib" includes="*.jar"/>
-      <lib dir="lib">
-        <include name="*.jar"/>
-        <!-- XXX not used yet; use exclude via POM dependency scope -->
-        <exclude name="fop*"/>
-        <exclude name="avalon*"/>
-        <exclude name="batik*"/>
-        <!-- XXX use exclude via POM dependency scope -->
-        <exclude name="servletapi*"/>
-        <exclude name="jsp-api*"/>
-        <exclude name="ant*"/>
-        <exclude name="junit*"/>
-        <exclude name="tobago-apt*"/>
-      </lib>
-      <!-- application classes -->
-      <classes dir="${build.classes.main}">
-        <include name="**/*.class"/>
-      </classes>
-      <classes dir="${src.main}">
-        <include name="**/*.properties"/>
-        <include name="**/*.xml"/>
-      </classes>
-      <webinf dir="src/main/webapp/WEB-INF">
-        <include name="**"/>
-        <exclude name="web.xml"/>
-      </webinf>
-    </war>
-  </target>
-
-</project>
+<?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.
+-->
+
+<project name="build-basic" default="dist">
+
+  <property name="build-system.dir" location="."/>
+
+  <!--XXX define tobago-home-->
+  <property file="${build-system.dir}/../../build.properties"/>
+
+  <property name="maven.task.version" value="2.0"/>
+  <property name="maven.task" value="maven-artifact-ant-${maven.task.version}-dep.jar"/>
+  <property name="maven.task.jar" value="${build-system.dir}/${maven.task}"/>
+  <available file="${maven.task.jar}" property="maven.task.present"/>
+
+  <property name="build" value="target"/>
+  <property name="build.classes.main" value="${build}/classes"/>
+  <property name="build.classes.test" value="${build}/test-classes"/>
+  <property name="build.config" value="${build}/config"/>
+  <property name="dist" value="${build}"/>
+
+  <property name="java.source.encoding" value="UTF-8"/>
+  <property name="java.version.source" value="1.5"/>
+  <property name="java.version.target" value="1.5"/>
+  <property name="java.compilerargs" value=""/>
+  <property name="java.version.bootclasspath" value=""/>
+  <property name="java.version.extdirs" value=""/>
+
+  <property name="src.main" value="src/main/java"/>
+  <property name="src.test" value="src/test/java"/>
+  <available file="${src.test}" property="src.test.present"/>
+  <property name="test.class.suffix" value="UnitTest"/>
+  <property name="report.junit" value="${build}/report/junit"/>
+
+  <target name="download-task" unless="maven.task.present">
+    <get
+        src="http://www.ibiblio.org/maven2/org/apache/maven/maven-artifact-ant/${maven.task.version}/${maven.task}"
+        dest="${maven.task.jar}"/>
+  </target>
+
+  <target name="init-task" depends="download-task">
+    <typedef resource="org/apache/maven/artifact/ant/antlib.xml">
+      <classpath>
+        <pathelement location="${maven.task.jar}"/>
+      </classpath>
+    </typedef>
+  </target>
+
+  <target name="init" depends="init-task">
+    <pom file="pom.xml" id="pom"/>
+    <dependencies filesetId="pom.dependencies" pathId="project.classpath.jar"
+                  verbose="false">
+      <pom refid="pom"/>
+    </dependencies>
+
+    <path id="project.classpath.test">
+      <path refid="project.classpath.jar"/>
+      <pathelement path="${build.classes.main}/"/>
+    </path>
+    <path id="build.classpath.run">
+      <path refid="project.classpath.test"/>
+      <pathelement path="${build.classes.test}/"/>
+    </path>
+  </target>
+
+  <target name="init-apt" depends="init-task">
+    <pom file="${build-system.dir}/dependencies.xml" id="dependencies"/>
+    <dependencies pathId="build.classpath.apt" verbose="false">
+      <pom refid="dependencies"/>
+    </dependencies>
+
+    <taskdef name="apt"
+             classname="org.apache.myfaces.tobago.apt.ant.Apt"
+             classpathref="build.classpath.apt"/>
+    <taskdef name="sniplet-extract"
+             classname="org.apache.myfaces.tobago.ant.sniplet.CodeSnipletExtractTask"
+             classpathref="build.classpath.apt"/>
+  </target>
+
+  <presetdef name="javac-default">
+    <javac deprecation="on" debug="on"
+           encoding="${java.source.encoding}"
+           target="${java.version.target}" source="${java.version.source}"
+           bootclasspath="${java.version.bootclasspath}"
+           extdirs="${java.version.extdirs}"
+           classpathref="project.classpath.jar">
+      <compilerarg line="${java.compilerargs}"/>
+    </javac>
+  </presetdef>
+
+  <target name="compile" depends="fetch-libs"
+          description="Compiles the sources of the artifact.">
+    <mkdir dir="${build.classes.main}"/>
+    <javac-default srcdir="${src.main}" destdir="${build.classes.main}"/>
+  </target>
+
+  <target name="test" depends="compile" if="src.test.present"
+          description="Run the unit tests.">
+    <mkdir dir="${build.classes.test}"/>
+    <javac-default srcdir="${src.test}"
+                   destdir="${build.classes.test}"
+                   classpathref="project.classpath.test"/>
+    <mkdir dir="${report.junit}"/>
+    <junit printsummary="yes" haltonfailure="yes" haltonerror="yes"
+           dir="${basedir}" maxmemory="128m">
+      <classpath refid="build.classpath.run"/>
+      <formatter type="xml"/>
+      <formatter type='brief' usefile='false'/>
+      <batchtest fork="yes" todir="${report.junit}">
+        <fileset dir="${build.classes.test}">
+          <include name="**/*${test.class.suffix}.class"/>
+        </fileset>
+      </batchtest>
+    </junit>
+  </target>
+
+  <!-- not really necessary, but currently easier to include libs in IDE -->
+  <!-- XXX need flattenmapper for file sets to include POM dependencies directly -->
+  <target name="fetch-libs" depends="init">
+    <mkdir dir="lib"/>
+    <copy todir="lib">
+      <fileset refid="pom.dependencies"/>
+      <flattenmapper/>
+    </copy>
+  </target>
+
+  <target name="dist" depends="compile"
+          description="Create a distribution of the artifact.">
+    <mkdir dir="${dist}"/>
+    <jar jarfile="${dist}/${pom.artifactId}.jar">
+      <fileset dir="${build.classes.main}">
+        <include name="**/*.class"/>
+      </fileset>
+      <fileset dir="${src.main}">
+        <include name="**/*.properties"/>
+        <include name="**/*.xml"/>
+        <include name="**/*.txt"/>
+        <include name="**/*.dtd"/>
+      </fileset>
+      <manifest>
+        <attribute name="Implementation-Title" value="${pom.artifactId}"/>
+        <attribute name="Implementation-Version" value="${pom.version}"/>
+      </manifest>
+    </jar>
+  </target>
+
+  <target name="install" depends="dist"
+          description="Install artifact into the local repository.">
+    <install file="${dist}/${pom.artifactId}.jar">
+      <pom refid="pom"/>
+    </install>
+  </target>
+
+  <target name="clean" description="Delete temporary files.">
+    <delete dir="${build}" quiet="true"/>
+    <mkdir dir="${build}"/>
+    <delete dir="lib" quiet="true"/>
+    <mkdir dir="lib"/>
+  </target>
+
+  <target name="war" depends="compile" description="Generate WAR archive.">
+    <mkdir dir="${dist}"/>
+    <property name="module" value="${build}/module"/>
+    <mkdir dir="${module}"/>
+    <unjar dest="${module}">
+      <!-- XXX need selector for scope attribute in POM -->
+      <fileset dir="lib" includes="tobago-theme-*.zip"/>
+    </unjar>
+
+    <!-- build the war-file -->
+    <war warfile="${dist}/${pom.artifactId}.war"
+         webxml="src/main/webapp/WEB-INF/web.xml">
+      <fileset dir="src/main/webapp">
+        <include name="**"/>
+        <exclude name="WEB-INF/**"/>
+      </fileset>
+      <fileset dir="${module}">
+        <include name="**/*"/>
+        <exclude name="META-INF"/>
+      </fileset>
+      <lib dir="${module}/WEB-INF/lib" includes="*.jar"/>
+      <lib dir="lib">
+        <include name="*.jar"/>
+        <!-- XXX not used yet; use exclude via POM dependency scope -->
+        <exclude name="fop*"/>
+        <exclude name="avalon*"/>
+        <exclude name="batik*"/>
+        <!-- XXX use exclude via POM dependency scope -->
+        <exclude name="servletapi*"/>
+        <exclude name="jsp-api*"/>
+        <exclude name="ant*"/>
+        <exclude name="junit*"/>
+        <exclude name="tobago-apt*"/>
+      </lib>
+      <!-- application classes -->
+      <classes dir="${build.classes.main}">
+        <include name="**/*.class"/>
+      </classes>
+      <classes dir="${src.main}">
+        <include name="**/*.properties"/>
+        <include name="**/*.xml"/>
+      </classes>
+      <webinf dir="src/main/webapp/WEB-INF">
+        <include name="**"/>
+        <exclude name="web.xml"/>
+      </webinf>
+    </war>
+  </target>
+
+</project>

Propchange: myfaces/tobago/trunk/tobago-tool/build-system/build-basic.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/build-system/build-basic.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/build-system/build-theme.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/build-system/build-theme.xml?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/build-system/build-theme.xml (original)
+++ myfaces/tobago/trunk/tobago-tool/build-system/build-theme.xml Sun Sep 23 11:51:32 2007
@@ -1,52 +1,52 @@
-<?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.
--->
-
-<project name="theme">
-
-  <import file="${build-system.dir}/build-basic.xml"/>
-
-  <target name="init-theme-pom" depends="init">
-    <pom file="pom-theme.xml" id="pom-theme"/>
-    <dependencies filesetId="pom-theme.dependencies" verbose="false">
-      <pom refid="pom-theme"/>
-    </dependencies>
-    <mkdir dir="lib"/>
-    <copy todir="lib">
-      <fileset refid="pom-theme.dependencies"/>
-      <flattenmapper/>
-    </copy>
-  </target>
-
-  <target name="dist" depends="build-basic.dist,init-theme-pom">
-    <jar jarfile="${dist}/${pom-theme.artifactId}.${pom-theme.packaging}">
-      <fileset dir="src/main/webapp">
-        <include name="**/*"/>
-      </fileset>
-      <zipfileset dir="${dist}" includes="${pom.artifactId}.jar"
-                  fullpath="WEB-INF/lib/${pom.artifactId}-${pom.version}.jar"/>
-    </jar>
-  </target>
-
-  <target name="install" depends="build-basic.install,init-theme-pom">
-    <install file="${dist}/${pom-theme.artifactId}.${pom-theme.packaging}">
-      <pom refid="pom-theme"/>
-    </install>
-  </target>
-
-</project>
+<?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.
+-->
+
+<project name="theme">
+
+  <import file="${build-system.dir}/build-basic.xml"/>
+
+  <target name="init-theme-pom" depends="init">
+    <pom file="pom-theme.xml" id="pom-theme"/>
+    <dependencies filesetId="pom-theme.dependencies" verbose="false">
+      <pom refid="pom-theme"/>
+    </dependencies>
+    <mkdir dir="lib"/>
+    <copy todir="lib">
+      <fileset refid="pom-theme.dependencies"/>
+      <flattenmapper/>
+    </copy>
+  </target>
+
+  <target name="dist" depends="build-basic.dist,init-theme-pom">
+    <jar jarfile="${dist}/${pom-theme.artifactId}.${pom-theme.packaging}">
+      <fileset dir="src/main/webapp">
+        <include name="**/*"/>
+      </fileset>
+      <zipfileset dir="${dist}" includes="${pom.artifactId}.jar"
+                  fullpath="WEB-INF/lib/${pom.artifactId}-${pom.version}.jar"/>
+    </jar>
+  </target>
+
+  <target name="install" depends="build-basic.install,init-theme-pom">
+    <install file="${dist}/${pom-theme.artifactId}.${pom-theme.packaging}">
+      <pom refid="pom-theme"/>
+    </install>
+  </target>
+
+</project>

Propchange: myfaces/tobago/trunk/tobago-tool/build-system/build-theme.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/build-system/build-theme.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/build-system/dependencies.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/build-system/dependencies.xml?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/build-system/dependencies.xml (original)
+++ myfaces/tobago/trunk/tobago-tool/build-system/dependencies.xml Sun Sep 23 11:51:32 2007
@@ -1,51 +1,51 @@
-<?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.
--->
-
-<project>
-  <modelVersion>4.0.0</modelVersion>
-  <groupId>build-system</groupId>
-  <artifactId>tobago-core</artifactId>
-  <version>empty</version>
-
-  <repositories>
-    <repository>
-      <id>ibiblio</id>
-      <url>http://www.ibiblio.org/maven2</url>
-    </repository>
-  </repositories>
-
-  <dependencies>
-
-    <dependency>
-      <groupId>org.apache.myfaces.tobago</groupId>
-      <artifactId>tobago-apt</artifactId>
-      <version>1.0.7-SNAPSHOT</version>
-    </dependency>
-   
-    <dependency>
-      <groupId>sun.jdk</groupId>
-      <artifactId>tools</artifactId>
-      <version>1.5.0</version>
-      <scope>system</scope>
-      <systemPath>${java.home}/../lib/tools.jar</systemPath>
-    </dependency>
-
-  </dependencies>
-
-</project>
+<?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.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>build-system</groupId>
+  <artifactId>tobago-core</artifactId>
+  <version>empty</version>
+
+  <repositories>
+    <repository>
+      <id>ibiblio</id>
+      <url>http://www.ibiblio.org/maven2</url>
+    </repository>
+  </repositories>
+
+  <dependencies>
+
+    <dependency>
+      <groupId>org.apache.myfaces.tobago</groupId>
+      <artifactId>tobago-apt</artifactId>
+      <version>1.0.7-SNAPSHOT</version>
+    </dependency>
+   
+    <dependency>
+      <groupId>sun.jdk</groupId>
+      <artifactId>tools</artifactId>
+      <version>1.5.0</version>
+      <scope>system</scope>
+      <systemPath>${java.home}/../lib/tools.jar</systemPath>
+    </dependency>
+
+  </dependencies>
+
+</project>

Propchange: myfaces/tobago/trunk/tobago-tool/build-system/dependencies.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/build-system/dependencies.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/maven-apt-plugin/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/maven-apt-plugin/src/main/java/org/apache/myfaces/maven/plugin/AbstractAPTMojo.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/maven-apt-plugin/src/main/java/org/apache/myfaces/maven/plugin/AllSourcesInclusionScanner.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/maven-apt-plugin/src/main/java/org/apache/myfaces/maven/plugin/AptMojo.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/maven-apt-plugin/src/main/java/org/apache/myfaces/maven/plugin/TestAptMojo.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/maven-apt-plugin/src/main/resources/META-INF/LICENSE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/maven-apt-plugin/src/main/resources/META-INF/LICENSE.txt
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/maven-apt-plugin/src/main/resources/META-INF/NOTICE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/maven-apt-plugin/src/main/resources/META-INF/NOTICE.txt
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/maven-apt-plugin/src/site/site.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/maven-apt-plugin/src/site/site.xml?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/maven-apt-plugin/src/site/site.xml (original)
+++ myfaces/tobago/trunk/tobago-tool/maven-apt-plugin/src/site/site.xml Sun Sep 23 11:51:32 2007
@@ -1,43 +1,43 @@
-<?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="Maven Apt Plugin">
-  <bannerLeft>
-    <name>MyFaces</name>
-    <src>images/myfaces-logo.png</src>
-    <href>http://myfaces.apache.org/</href>
-  </bannerLeft>
-  <bannerRight>
-    <name>Tobago</name>
-    <src>images/tobagoLogo.png</src>
-    <href>http://myfaces.apache.org/tobago</href>
-  </bannerRight>
-  <publishDate format="dd MMM yyyy" />
-  <body>
-    <links>
-      <item name="Maven 2" href="http://maven.apache.org/maven2/"/>
-    </links>
-
-    <menu name="Overview">
-      <item name="Introduction" href="introduction.html"/>
-      <item name="How to Use" href="howto.html"/>
-    </menu>
-    ${reports}
-  </body>
-</project>
+<?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="Maven Apt Plugin">
+  <bannerLeft>
+    <name>MyFaces</name>
+    <src>images/myfaces-logo.png</src>
+    <href>http://myfaces.apache.org/</href>
+  </bannerLeft>
+  <bannerRight>
+    <name>Tobago</name>
+    <src>images/tobagoLogo.png</src>
+    <href>http://myfaces.apache.org/tobago</href>
+  </bannerRight>
+  <publishDate format="dd MMM yyyy" />
+  <body>
+    <links>
+      <item name="Maven 2" href="http://maven.apache.org/maven2/"/>
+    </links>
+
+    <menu name="Overview">
+      <item name="Introduction" href="introduction.html"/>
+      <item name="How to Use" href="howto.html"/>
+    </menu>
+    ${reports}
+  </body>
+</project>

Propchange: myfaces/tobago/trunk/tobago-tool/maven-apt-plugin/src/site/site.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/maven-apt-plugin/src/site/site.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/maven-theme-plugin/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/maven-theme-plugin/src/main/java/org/apache/myfaces/tobago/maven/plugin/AbstractThemeMojo.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/maven-theme-plugin/src/main/java/org/apache/myfaces/tobago/maven/plugin/PackThemeMojo.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/maven-theme-plugin/src/main/java/org/apache/myfaces/tobago/maven/plugin/UnPackThemeMojo.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/maven-theme-plugin/src/main/java/org/apache/myfaces/tobago/maven/plugin/UnPackThemeMojo.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/maven-theme-plugin/src/main/java/org/apache/myfaces/tobago/maven/plugin/UnPackThemeMojo.java (original)
+++ myfaces/tobago/trunk/tobago-tool/maven-theme-plugin/src/main/java/org/apache/myfaces/tobago/maven/plugin/UnPackThemeMojo.java Sun Sep 23 11:51:32 2007
@@ -37,7 +37,7 @@
  * Created by IntelliJ IDEA.
  * User: bommel
  *
- * @version $Id:  $
+ * @version $Id$
  * @goal resources
  * @phase process-resources
  * @requiresDependencyResolution compile

Propchange: myfaces/tobago/trunk/tobago-tool/maven-theme-plugin/src/main/java/org/apache/myfaces/tobago/maven/plugin/UnPackThemeMojo.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/maven-theme-plugin/src/main/resources/META-INF/LICENSE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/maven-theme-plugin/src/main/resources/META-INF/LICENSE.txt
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/maven-theme-plugin/src/main/resources/META-INF/NOTICE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/maven-theme-plugin/src/main/resources/META-INF/NOTICE.txt
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/BodyContent.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/BodyContent.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/BodyContent.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/BodyContent.java Sun Sep 23 11:51:32 2007
@@ -20,7 +20,7 @@
 /*
  * Created: Apr 20, 2005 5:08:01 PM
  * User: bommel
- * $Id: BodyContent.java,v 1.3 2005/05/11 15:20:34 bommel Exp $
+ * $Id$
  */
 public enum BodyContent {
 

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/BodyContent.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/BodyContentDescription.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/BodyContentDescription.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/BodyContentDescription.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/BodyContentDescription.java Sun Sep 23 11:51:32 2007
@@ -20,7 +20,7 @@
 /*
  * Created: Apr 20, 2005 4:02:24 PM
  * User: bommel
- * $Id: $
+ * $Id$
  */
 
 import java.lang.annotation.Retention;

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/BodyContentDescription.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Category.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Category.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Converter.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Converter.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/DynamicExpression.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/DynamicExpression.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/DynamicExpression.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/DynamicExpression.java Sun Sep 23 11:51:32 2007
@@ -20,7 +20,7 @@
 /*
  * Created: Apr 27, 2005 5:08:45 PM
  * User: bommel
- * $Id: DynamicExpression.java,v 1.1 2005/05/11 15:20:34 bommel Exp $
+ * $Id$
  */
 public enum DynamicExpression {
 

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/DynamicExpression.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/ExtensionTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/ExtensionTag.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/ExtensionTag.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/ExtensionTag.java Sun Sep 23 11:51:32 2007
@@ -1,31 +1,31 @@
-package org.apache.myfaces.tobago.apt.annotation;
-
-/*
- * 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.
- */
-
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-import java.lang.annotation.ElementType;
-
-@Retention(value = RetentionPolicy.SOURCE)
-@Target(value = ElementType.TYPE)
-public @interface ExtensionTag {
-
-  String baseClassName();
-
-}
+package org.apache.myfaces.tobago.apt.annotation;
+
+/*
+ * 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.
+ */
+
+import java.lang.annotation.Retention;
+import java.lang.annotation.RetentionPolicy;
+import java.lang.annotation.Target;
+import java.lang.annotation.ElementType;
+
+@Retention(value = RetentionPolicy.SOURCE)
+@Target(value = ElementType.TYPE)
+public @interface ExtensionTag {
+
+  String baseClassName();
+
+}

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/ExtensionTag.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/ExtensionTag.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Facet.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Facet.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Preliminary.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Tag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Tag.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Tag.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Tag.java Sun Sep 23 11:51:32 2007
@@ -25,7 +25,7 @@
 /*
  * Created: Mar 8, 2005 5:40:59 PM
  * User: bommel
- * $Id: Tag.java,v 1.2 2005/04/20 18:39:09 bommel Exp $
+ * $Id$
  */
 @Retention(value = RetentionPolicy.SOURCE)
 @Target(value = ElementType.TYPE)

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Tag.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/TagAttribute.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/TagAttribute.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/TagAttribute.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/TagAttribute.java Sun Sep 23 11:51:32 2007
@@ -25,7 +25,7 @@
 /*
  * Created: Mar 8, 2005 5:37:08 PM
  * User: bommel
- * $Id: TagAttribute.java,v 1.1 2005/03/22 20:30:52 bommel Exp $
+ * $Id$
  */
 @Retention(value = RetentionPolicy.SOURCE)
 @Target(value = ElementType.METHOD)

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/TagAttribute.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Taglib.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Taglib.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Taglib.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Taglib.java Sun Sep 23 11:51:32 2007
@@ -25,7 +25,7 @@
 /*
  * Created: Apr 20, 2005 6:55:06 PM
  * User: bommel
- * $Id: Taglib.java,v 1.1 2005/04/20 18:39:09 bommel Exp $
+ * $Id$
  */
 @Retention(value = RetentionPolicy.SOURCE)
 @Target(value = ElementType.PACKAGE)

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Taglib.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/UIComponentTag.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/UIComponentTag.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/UIComponentTag.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/UIComponentTag.java Sun Sep 23 11:51:32 2007
@@ -25,7 +25,7 @@
 /*
  * Created: Aug 5, 2005 3:11:18 PM
  * User: bommel
- * $Id: $
+ * $Id$
  */
 
 @Retention(value = RetentionPolicy.SOURCE)

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/UIComponentTag.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/UIComponentTagAttribute.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/UIComponentTagAttribute.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/UIComponentTagAttribute.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/UIComponentTagAttribute.java Sun Sep 23 11:51:32 2007
@@ -24,7 +24,7 @@
 
 /*
  * Created 05.03.2005 16:13:42.
- * $Id: UIComponentTagAttribute.java,v 1.4 2005/05/11 15:20:34 bommel Exp $
+ * $Id$
  */
 
 @Retention(value = RetentionPolicy.SOURCE)

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/UIComponentTagAttribute.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Validator.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/java/org/apache/myfaces/tobago/apt/annotation/Validator.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/resources/META-INF/LICENSE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/resources/META-INF/LICENSE.txt
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/resources/META-INF/NOTICE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-annotation/src/main/resources/META-INF/NOTICE.txt
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/ant/sniplet/CodeSniplet.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/ant/sniplet/CodeSnipletExtractTask.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/AbstractAnnotationVisitor.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/AnnotationDeclarationVisitorCollector.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/AnnotationDeclarationVisitorCollector.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/AnnotationDeclarationVisitorCollector.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/AnnotationDeclarationVisitorCollector.java Sun Sep 23 11:51:32 2007
@@ -31,7 +31,7 @@
 /*
  * Created: Mar 22, 2005 8:12:24 PM
  * User: bommel
- * $Id: AnnotationDeclarationVisitorCollector.java,v 1.3 2005/04/20 18:39:06 bommel Exp $
+ * $Id$
  */
 public class AnnotationDeclarationVisitorCollector extends SimpleDeclarationVisitor {
 

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/AnnotationDeclarationVisitorCollector.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/FaceletAnnotationProcessor.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/FaceletAnnotationProcessorFactory.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/FaceletAnnotationVisitor.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/FacesConfigAnnotationProcessor.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/FacesConfigAnnotationProcessor.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/FacesConfigAnnotationProcessorFactory.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/FacesConfigAnnotationProcessorFactory.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/FacesConfigAnnotationVisitor.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/FacesConfigAnnotationVisitor.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/PrintAnnotationVisitor.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/PrintAnnotationVisitor.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/PrintAnnotationVisitor.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/PrintAnnotationVisitor.java Sun Sep 23 11:51:32 2007
@@ -34,7 +34,7 @@
 /*
  * Created: Mar 22, 2005 8:10:05 PM
  * User: bommel
- * $Id: PrintAnnotationVisitor.java,v 1.1 2005/03/22 20:30:52 bommel Exp $
+ * $Id$
  */
 public class PrintAnnotationVisitor extends AnnotationDeclarationVisitorCollector {
   private static final Log LOG = LogFactory.getLog(PrintAnnotationVisitor.class);

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/PrintAnnotationVisitor.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TaglibAnnotationProcessor.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TaglibAnnotationProcessor.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TaglibAnnotationProcessor.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TaglibAnnotationProcessor.java Sun Sep 23 11:51:32 2007
@@ -29,7 +29,7 @@
 /*
  * Created: Mar 22, 2005 8:14:29 PM
  * User: bommel
- * $Id: TaglibAnnotationProcessor.java,v 1.6 2005/05/11 15:20:34 bommel Exp $
+ * $Id$
  */
 public class TaglibAnnotationProcessor implements AnnotationProcessor {
 

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TaglibAnnotationProcessor.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TaglibAnnotationProcessorFactory.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TaglibAnnotationProcessorFactory.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TaglibAnnotationProcessorFactory.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TaglibAnnotationProcessorFactory.java Sun Sep 23 11:51:32 2007
@@ -30,7 +30,7 @@
 /*
  * Created: Mar 5, 2005 12:39:32 PM
  * User: bommel
- * $Id: TaglibAnnotationProcessorFactory.java,v 1.3 2005/04/20 18:39:06 bommel Exp $
+ * $Id$
  */
 public class TaglibAnnotationProcessorFactory implements AnnotationProcessorFactory {
 

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TaglibAnnotationProcessorFactory.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TaglibAnnotationVisitor.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TobagoAnnotationProcessor.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TobagoAnnotationProcessor.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TobagoAnnotationProcessor.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TobagoAnnotationProcessor.java Sun Sep 23 11:51:32 2007
@@ -30,7 +30,7 @@
 /*
  * Created: Apr 27, 2005 4:37:16 PM
  * User: bommel
- * $Id: TobagoAnnotationProcessor.java,v 1.1 2005/05/11 15:20:34 bommel Exp $
+ * $Id$
  */
 public class TobagoAnnotationProcessor implements AnnotationProcessor {
 

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TobagoAnnotationProcessor.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TobagoAnnotationProcessorFactory.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TobagoAnnotationProcessorFactory.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TobagoAnnotationProcessorFactory.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TobagoAnnotationProcessorFactory.java Sun Sep 23 11:51:32 2007
@@ -30,7 +30,7 @@
 /*
  * Created: Apr 27, 2005 4:27:27 PM
  * User: bommel
- * $Id: TobagoAnnotationProcessorFactory.java,v 1.1 2005/05/11 15:20:34 bommel Exp $
+ * $Id$
  */
 public class TobagoAnnotationProcessorFactory implements AnnotationProcessorFactory  {
 

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TobagoAnnotationProcessorFactory.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Modified: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TobagoAnnotationVisitor.java
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TobagoAnnotationVisitor.java?rev=578592&r1=578591&r2=578592&view=diff
==============================================================================
--- myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TobagoAnnotationVisitor.java (original)
+++ myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TobagoAnnotationVisitor.java Sun Sep 23 11:51:32 2007
@@ -46,7 +46,7 @@
 /*
  * Created: Apr 27, 2005 4:45:44 PM
  * User: bommel
- * $Id: TobagoAnnotationVisitor.java,v 1.4 2005/05/25 15:44:34 bommel Exp $
+ * $Id$
  */
 public class TobagoAnnotationVisitor extends TaglibAnnotationVisitor {
 

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/java/org/apache/myfaces/tobago/apt/TobagoAnnotationVisitor.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/resources/META-INF/LICENSE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/resources/META-INF/LICENSE.txt
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/resources/META-INF/NOTICE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: myfaces/tobago/trunk/tobago-tool/tobago-tool-apt/src/main/resources/META-INF/NOTICE.txt
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL