You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by he...@apache.org on 2007/01/13 00:59:50 UTC

svn commit: r495790 - in /velocity/site/site: pom.xml src/site/velocity/xdoc/who-we-are.xml

Author: henning
Date: Fri Jan 12 15:59:47 2007
New Revision: 495790

URL: http://svn.apache.org/viewvc?view=rev&rev=495790
Log:
Add our emeriti to the pom


Modified:
    velocity/site/site/pom.xml
    velocity/site/site/src/site/velocity/xdoc/who-we-are.xml

Modified: velocity/site/site/pom.xml
URL: http://svn.apache.org/viewvc/velocity/site/site/pom.xml?view=diff&rev=495790&r1=495789&r2=495790
==============================================================================
--- velocity/site/site/pom.xml (original)
+++ velocity/site/site/pom.xml Fri Jan 12 15:59:47 2007
@@ -107,6 +107,22 @@
       <timezone>2</timezone>
     </developer>
 
+    <developer>
+      <name>Jon S. Stevens</name>
+      <id>jons</id>
+      <roles>
+        <role>Emeritus</role>
+      </roles>
+    </developer>
+
+    <developer>
+      <name>Jason van Zyl</name>
+      <id>jvzyl</id>
+      <roles>
+        <role>Emeritus</role>
+      </roles>
+    </developer>
+
   </developers>
 
   <mailingLists>

Modified: velocity/site/site/src/site/velocity/xdoc/who-we-are.xml
URL: http://svn.apache.org/viewvc/velocity/site/site/src/site/velocity/xdoc/who-we-are.xml?view=diff&rev=495790&r1=495789&r2=495790
==============================================================================
--- velocity/site/site/src/site/velocity/xdoc/who-we-are.xml (original)
+++ velocity/site/site/src/site/velocity/xdoc/who-we-are.xml Fri Jan 12 15:59:47 2007
@@ -94,6 +94,42 @@
         </table>
       </section>
     </section>
+
+      <section name="Velocity Emeriti">
+
+        <p>
+         Our emeriti are project committers that have not been active on the project, committed code
+         or participated on the mailing lists for more than twelve months.
+        </p>
+
+        <table>
+           <tr>
+            <th>Name</th>
+            <th>Id</th>
+            <th>Email</th>
+            <th>Organization</th>
+            <th>Roles</th>
+          </tr>
+#foreach ($dev in $project.developers)
+  #set ($emeritus = false)
+  #foreach ($role in ${dev.roles})
+    #if ($role.contains("Emeritus"))
+      #set ($emeritus = true)
+    #end
+  #end
+  #if ($emeritus)
+          <tr>
+            <td>${dev.name}</td>
+            <td>${dev.id}</td>
+            <td>$!{dev.email}</td>
+            <td>$!{dev.organization}</td>
+            <td/>
+          </tr>
+  #end
+#end
+        </table>
+      </section>
+
   </body>
 </document>