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/28 14:22:40 UTC

svn commit: r500789 - /velocity/site/site/src/site/velocity/xdoc/who-we-are.xml

Author: henning
Date: Sun Jan 28 05:22:39 2007
New Revision: 500789

URL: http://svn.apache.org/viewvc?view=rev&rev=500789
Log:
Emeriti should only show up in the appropriate list.


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

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=500789&r1=500788&r2=500789
==============================================================================
--- velocity/site/site/src/site/velocity/xdoc/who-we-are.xml (original)
+++ velocity/site/site/src/site/velocity/xdoc/who-we-are.xml Sun Jan 28 05:22:39 2007
@@ -77,6 +77,12 @@
             <th>Roles</th>
           </tr>
 #foreach ($dev in $project.developers)
+  #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>
@@ -90,6 +96,7 @@
   #end
             </td>
           </tr>
+  #end
 #end
         </table>
       </section>