- From: Hugo Haas via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 14 Mar 2006 09:37:02 +0000
- To: public-ws-addressing-eds@w3.org
Update of /sources/public/2004/ws/addressing
In directory homer:/tmp/cvs-serv22623
Modified Files:
generate-acknowledgements.xsl
Added Files:
generate-acknowledgements.sh
Log Message:
New acknowledgement generation
--- NEW FILE: generate-acknowledgements.sh ---
#!/bin/sh
if [ $# -lt 2 ]; then
exit 1
fi
url='http://www.w3.org/2000/09/dbwg/details?group=36696&order=name&former=1'
xsl=generate-acknowledgements.xsl
un=$1
pw=$2
getack() {
wget -q --http-user=$un --http-passwd=$pw -O - $url | xsltproc --stringparam participating $1 $xsl -
}
getack 1 > acknowledgements-current.txt
echo "Updated current ack"
echo
echo "Past members:"
getack 0
Index: generate-acknowledgements.xsl
===================================================================
RCS file: /sources/public/2004/ws/addressing/generate-acknowledgements.xsl,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** generate-acknowledgements.xsl 13 Feb 2006 15:11:05 -0000 1.8
--- generate-acknowledgements.xsl 14 Mar 2006 09:37:00 -0000 1.9
***************
*** 7,37 ****
<xsl:output
! method="xml"
indent="yes"
encoding="utf-8"
/>
<xsl:template match="/">
! <inform-div1 id="acknowledgments">
! <head>Acknowledgements</head>
! <p>This document is the work of the <loc
! href="http://www.w3.org/2002/ws/addr/">W3C Web Service
! Addressing Working Group</loc>.</p>
! <p>Members of the Working Group are (at the time of writing, and by
! alphabetical order):
! <xsl:call-template name="list-participants">
! <xsl:with-param name="participating" select="1"/>
! </xsl:call-template>
! </p>
! <p>Previous members of the Working Group were:
! <xsl:call-template name="list-participants">
! <xsl:with-param name="participating" select="0"/>
! </xsl:call-template>
! </p>
! <p>The people who have contributed to <loc
! href="http://lists.w3.org/Archives/Public/public-ws-addressing/">discussions
! on public-ws-addressing@w3.org</loc> are also gratefully
! acknowledged.</p>
! </inform-div1>
</xsl:template>
--- 7,21 ----
<xsl:output
! method="text"
indent="yes"
encoding="utf-8"
/>
+ <xsl:param name="participating" />
+
<xsl:template match="/">
! <xsl:call-template name="list-participants">
! <xsl:with-param name="participating" select="$participating"/>
! </xsl:call-template>
</xsl:template>
Received on Tuesday, 14 March 2006 09:37:12 UTC