From d411b3bb83f2b0a91cf7ad9d2c12fd1b63ec850a Mon Sep 17 00:00:00 2001
From: Claudio Sacerdoti Coen <claudio.sacerdoticoen@unibo.it>
Date: Wed, 6 Mar 2002 10:12:22 +0000
Subject: [PATCH] * New data * <date>s of the news are now numerical

---
 helm/mowgli/home/xml/news.xml | 23 ++++++++++++++++-------
 helm/mowgli/home/xsl/news.xsl |  6 +++++-
 2 files changed, 21 insertions(+), 8 deletions(-)

diff --git a/helm/mowgli/home/xml/news.xml b/helm/mowgli/home/xml/news.xml
index 910f30b18..063497f32 100644
--- a/helm/mowgli/home/xml/news.xml
+++ b/helm/mowgli/home/xml/news.xml
@@ -18,9 +18,18 @@
 ]>
 
 <news>
-
   <event>
-    <date>February 26, 2002</date>
+    <date>20020306</date>
+    <description>
+     The agenda of the
+     <a href="mowgli-events/kick-off.html">MOWGLI Kick-Off meeting</a>
+     has been detailed.
+    </description>
+    <who file="bologna/sacerdoti"/>
+  </event>
+      
+  <event>
+    <date>20020226</date>
     <description>
       The site is now available in two versions: with and without
       frames. Please, try
@@ -31,7 +40,7 @@
   </event>
       
   <event>
-    <date>February 22, 2002</date>
+    <date>20020222</date>
     <description>
       The MOWGLI Kick-Off is approaching. Find out more
       informations under MOWGLI Events.
@@ -40,7 +49,7 @@
   </event>
       
   <event>
-    <date>February 22, 2002</date>
+    <date>20020222</date>
     <description>
       MOWGLI Web Site announced. MKM03 added to events.
     </description>
@@ -48,7 +57,7 @@
   </event>
       
   <event>
-    <date>February 14, 2002</date>
+    <date>20020214</date>
     <header>Valentine's Day</header>
     <description>
       New fancy colours, improved layout, especially for I.E. (bleah), main page
@@ -58,7 +67,7 @@
   </event>
   
   <event>
-    <date>February 12, 2002</date>
+    <date>20020212</date>
     <description>
       Site moved into CVS. XSLT stylesheets are used to generate
       HTML pages from XML sources.
@@ -67,7 +76,7 @@
   </event>
   
   <event>
-    <date>January 19, 2002</date>
+    <date>20020119</date>
     <description>
       First Web pages created.
     </description>
diff --git a/helm/mowgli/home/xsl/news.xsl b/helm/mowgli/home/xsl/news.xsl
index 2d513bec0..6ed83b3aa 100644
--- a/helm/mowgli/home/xsl/news.xsl
+++ b/helm/mowgli/home/xsl/news.xsl
@@ -24,7 +24,11 @@
 <xsl:template match="event">
  <xsl:param name="small" select="false()"/>
  <dt>
-  <b><xsl:value-of select="date"/></b>
+  <b>
+   <xsl:call-template name="print_date">
+    <xsl:with-param name="date" select="date"/>
+   </xsl:call-template>
+  </b>
   <xsl:if test="header">
    <xsl:value-of select="' -- '"/>
    <em>
-- 
2.39.2