]> git.saurik.com Git - wxWidgets.git/commitdiff
Add email address lookup table for wx devs.
authorMichael Wetherell <mike.wetherell@ntlworld.com>
Tue, 5 Feb 2008 22:16:45 +0000 (22:16 +0000)
committerMichael Wetherell <mike.wetherell@ntlworld.com>
Tue, 5 Feb 2008 22:16:45 +0000 (22:16 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@51563 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/buildbot/config/include/wx-devs.xml [new file with mode: 0644]
build/buildbot/tools/email.xsl [new file with mode: 0644]

diff --git a/build/buildbot/config/include/wx-devs.xml b/build/buildbot/config/include/wx-devs.xml
new file mode 100644 (file)
index 0000000..e172095
--- /dev/null
@@ -0,0 +1,38 @@
+<?xml version="1.0"?>
+<emaillookup>
+  <email id="AG">andrea.gavana -at- gmail.com</email>
+  <email id="BIW">bwilliams -at- kirix.com</email>
+  <email id="BP">bryan -at- ibaku.net</email>
+  <email id="BY">techrazy.yang -at- gmail.com</email>
+  <email id="CE">biol75 -at- york.ac.uk</email>
+  <email id="CJP">admin -at- editra.org</email>
+  <email id="DE">dfe -at- cox.net</email>
+  <email id="FM">f18m_cpp217828 -at- yahoo.it</email>
+  <email id="FT">frank.tobia -at- gmail.com</email>
+  <email id="JG">jrgadd2 -at- cs.latrobe.edu.au</email>
+  <email id="JJ">joukj -at- hrem.nano.tudelft.nl</email>
+  <email id="JS">julian -at- anthemion.co.uk</email>
+  <email id="JW">hc.john -at- gmail.com</email>
+  <email id="KO">kevino -at- theolliviers.com</email>
+  <email id="MBN">mbarbon -at- cpan.org</email>
+  <email id="MR">leio -at- gentoo.org</email>
+  <email id="MW">mike.wetherell -at- ntlworld.com</email>
+  <email id="PC">paulcor -at- bullseye.com</email>
+  <email id="RD">robin -at- alldunn.com</email>
+  <email id="ROL">rolinsky -at- femagsoft.com</email>
+  <email id="RR">robert -at- roebling.de</email>
+  <email id="SC">csomor -at- advancedconcepts.ch</email>
+  <email id="SN">Stefan.Neis -at- t-online.de</email>
+  <email id="VS">vslavik -at- fastmail.fm</email>
+  <email id="VZ">vadim -at- wxwidgets.org</email>
+  <email id="ABX">abx -at- abx.art.pl</email>
+  <email id="AMB">alex -at- alex.org.uk</email>
+  <email id="AVV">cafedetal -at- gmail.com</email>
+  <email id="DJL">daniel.lauk -at- gmail.com</email>
+  <email id="DMS">diaasami -at- gmail.com</email>
+  <email id="DS">d.schoolwerth -at- xs4all.nl</email>
+  <email id="GD">gilles_depeyrot -at- mac.com</email>
+  <email id="KH">hockkn -at- yahoo.com</email>
+  <email id="KLB">KendallB -at- scitechsoft.com</email>
+  <email id="RN">wxprojects -at- comcast.net</email>
+</emaillookup>
diff --git a/build/buildbot/tools/email.xsl b/build/buildbot/tools/email.xsl
new file mode 100644 (file)
index 0000000..68351fd
--- /dev/null
@@ -0,0 +1,38 @@
+<?xml version="1.0"?>
+
+<!--
+    Name:       email.xsl
+    Purpose:    Create email address lookup.
+    Author:     Mike Wetherell
+    RCS-ID:     $Id$
+    Copyright:  (c) 2007 Mike Wetherell
+    Licence:    wxWidgets licence
+
+    Usage: xsltproc -html tools/email.xsl http://svn.wxwidgets.org/users.cgi \
+            > config/include/wx-devs.xml
+-->
+
+<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
+
+<xsl:param name="at"> -at- </xsl:param>
+
+<xsl:output indent="yes"/>
+
+<xsl:template match="/">
+    <emaillookup>
+        <xsl:apply-templates select="//table/tr"/>
+    </emaillookup>
+</xsl:template>
+
+<xsl:template match="tr">
+    <xsl:variable name="id" select="normalize-space(td[1])"/>
+    <xsl:variable name="email" select="normalize-space(td[3])"/>
+
+    <xsl:if test="$id and not(contains($id, ' ')) and contains($email, $at)">
+        <email id="{$id}">
+            <xsl:value-of select="$email"/>
+        </email>
+    </xsl:if>
+</xsl:template>
+
+</xsl:transform>