[Yanel-commits] rev 22889 - in public/yanel/trunk/src: contributions/resources/contact-form/xslt contributions/resources/nutch/xslt core/java/org/wyona/yanel/core/transformation realms/test/yanel/data/xslt realms/use-cases/yanel/data/xslt realms/yanel-website/content/xslt resources/add-realm/xslt webapp/xslt

josias at wyona.com josias at wyona.com
Thu Feb 22 21:03:51 CET 2007


Author: josias
Date: 2007-02-22 21:03:49 +0100 (Thu, 22 Feb 2007)
New Revision: 22889

Modified:
   public/yanel/trunk/src/contributions/resources/contact-form/xslt/contact-form.xsl
   public/yanel/trunk/src/contributions/resources/nutch/xslt/result2xhtml.xsl
   public/yanel/trunk/src/core/java/org/wyona/yanel/core/transformation/I18nTransformer2.java
   public/yanel/trunk/src/realms/test/yanel/data/xslt/global.xsl
   public/yanel/trunk/src/realms/use-cases/yanel/data/xslt/global.xsl
   public/yanel/trunk/src/realms/yanel-website/content/xslt/contact-form.xsl
   public/yanel/trunk/src/realms/yanel-website/content/xslt/global.xsl
   public/yanel/trunk/src/realms/yanel-website/content/xslt/homepage.xsl
   public/yanel/trunk/src/resources/add-realm/xslt/add-realm.xsl
   public/yanel/trunk/src/webapp/xslt/xmlInfo2xhtml.xsl
Log:
changed i18n namespace, because i18n handling of yanel is currently not compatible with the i18n syntax of cocoon.

Modified: public/yanel/trunk/src/contributions/resources/contact-form/xslt/contact-form.xsl
===================================================================
--- public/yanel/trunk/src/contributions/resources/contact-form/xslt/contact-form.xsl	2007-02-22 19:15:18 UTC (rev 22888)
+++ public/yanel/trunk/src/contributions/resources/contact-form/xslt/contact-form.xsl	2007-02-22 20:03:49 UTC (rev 22889)
@@ -3,7 +3,7 @@
 <xsl:stylesheet version="1.0"
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
   xmlns:xhtml="http://www.w3.org/1999/xhtml"
-  xmlns:i18n="http://apache.org/cocoon/i18n/2.1"
+  xmlns:i18n="http://www.wyona.org/yanel/i18n/1.0"
   xmlns="http://www.w3.org/1999/xhtml"
 >
 

Modified: public/yanel/trunk/src/contributions/resources/nutch/xslt/result2xhtml.xsl
===================================================================
--- public/yanel/trunk/src/contributions/resources/nutch/xslt/result2xhtml.xsl	2007-02-22 19:15:18 UTC (rev 22888)
+++ public/yanel/trunk/src/contributions/resources/nutch/xslt/result2xhtml.xsl	2007-02-22 20:03:49 UTC (rev 22889)
@@ -5,7 +5,7 @@
   xmlns:xhtml="http://www.w3.org/1999/xhtml"
   xmlns="http://www.w3.org/1999/xhtml"
   xmlns:yanel="http://www.wyona.org/yanel/1.0"
-  xmlns:i18n="http://apache.org/cocoon/i18n/2.1"  
+  xmlns:i18n="http://www.wyona.org/yanel/i18n/1.0"  
 >
  
   <xsl:output method="xhtml"/>

Modified: public/yanel/trunk/src/core/java/org/wyona/yanel/core/transformation/I18nTransformer2.java
===================================================================
--- public/yanel/trunk/src/core/java/org/wyona/yanel/core/transformation/I18nTransformer2.java	2007-02-22 19:15:18 UTC (rev 22888)
+++ public/yanel/trunk/src/core/java/org/wyona/yanel/core/transformation/I18nTransformer2.java	2007-02-22 20:03:49 UTC (rev 22889)
@@ -19,7 +19,7 @@
     private String key;
     private StringBuffer textBuffer;
 
-    public static final String NS_URI = "http://apache.org/cocoon/i18n/2.1";
+    public static final String NS_URI = "http://www.wyona.org/yanel/i18n/1.0";
     
     public I18nTransformer2(String messages, String language) {
         currentLocale = new Locale(language);

Modified: public/yanel/trunk/src/realms/test/yanel/data/xslt/global.xsl
===================================================================
--- public/yanel/trunk/src/realms/test/yanel/data/xslt/global.xsl	2007-02-22 19:15:18 UTC (rev 22888)
+++ public/yanel/trunk/src/realms/test/yanel/data/xslt/global.xsl	2007-02-22 20:03:49 UTC (rev 22889)
@@ -3,7 +3,7 @@
 <xsl:stylesheet version="1.0"
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
   xmlns:xhtml="http://www.w3.org/1999/xhtml"
-  xmlns:i18n="http://apache.org/cocoon/i18n/2.1"
+  xmlns:i18n="http://www.wyona.org/yanel/i18n/1.0"
   xmlns="http://www.w3.org/1999/xhtml"
 >
 

Modified: public/yanel/trunk/src/realms/use-cases/yanel/data/xslt/global.xsl
===================================================================
--- public/yanel/trunk/src/realms/use-cases/yanel/data/xslt/global.xsl	2007-02-22 19:15:18 UTC (rev 22888)
+++ public/yanel/trunk/src/realms/use-cases/yanel/data/xslt/global.xsl	2007-02-22 20:03:49 UTC (rev 22889)
@@ -3,7 +3,7 @@
 <xsl:stylesheet version="1.0"
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
   xmlns:xhtml="http://www.w3.org/1999/xhtml"
-  xmlns:i18n="http://apache.org/cocoon/i18n/2.1"
+  xmlns:i18n="http://www.wyona.org/yanel/i18n/1.0"
   xmlns="http://www.w3.org/1999/xhtml"
 >
 

Modified: public/yanel/trunk/src/realms/yanel-website/content/xslt/contact-form.xsl
===================================================================
--- public/yanel/trunk/src/realms/yanel-website/content/xslt/contact-form.xsl	2007-02-22 19:15:18 UTC (rev 22888)
+++ public/yanel/trunk/src/realms/yanel-website/content/xslt/contact-form.xsl	2007-02-22 20:03:49 UTC (rev 22889)
@@ -3,7 +3,7 @@
 <xsl:stylesheet version="1.0"
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
   xmlns:xhtml="http://www.w3.org/1999/xhtml"
-  xmlns:i18n="http://apache.org/cocoon/i18n/2.1"
+  xmlns:i18n="http://www.wyona.org/yanel/i18n/1.0"
   xmlns="http://www.w3.org/1999/xhtml"
 >
 

Modified: public/yanel/trunk/src/realms/yanel-website/content/xslt/global.xsl
===================================================================
--- public/yanel/trunk/src/realms/yanel-website/content/xslt/global.xsl	2007-02-22 19:15:18 UTC (rev 22888)
+++ public/yanel/trunk/src/realms/yanel-website/content/xslt/global.xsl	2007-02-22 20:03:49 UTC (rev 22889)
@@ -3,7 +3,7 @@
 <xsl:stylesheet version="1.0"
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
   xmlns:xhtml="http://www.w3.org/1999/xhtml"
-  xmlns:i18n="http://apache.org/cocoon/i18n/2.1"
+  xmlns:i18n="http://www.wyona.org/yanel/i18n/1.0"
   xmlns="http://www.w3.org/1999/xhtml"
 >
 

Modified: public/yanel/trunk/src/realms/yanel-website/content/xslt/homepage.xsl
===================================================================
--- public/yanel/trunk/src/realms/yanel-website/content/xslt/homepage.xsl	2007-02-22 19:15:18 UTC (rev 22888)
+++ public/yanel/trunk/src/realms/yanel-website/content/xslt/homepage.xsl	2007-02-22 20:03:49 UTC (rev 22889)
@@ -4,7 +4,7 @@
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
   xmlns:xhtml="http://www.w3.org/1999/xhtml"
   xmlns:yh="http://yanel.wyona.org/homepage/1.0"
-  xmlns:i18n="http://apache.org/cocoon/i18n/2.1"
+  xmlns:i18n="http://www.wyona.org/yanel/i18n/1.0"
   xmlns="http://www.w3.org/1999/xhtml"
 >
 

Modified: public/yanel/trunk/src/resources/add-realm/xslt/add-realm.xsl
===================================================================
--- public/yanel/trunk/src/resources/add-realm/xslt/add-realm.xsl	2007-02-22 19:15:18 UTC (rev 22888)
+++ public/yanel/trunk/src/resources/add-realm/xslt/add-realm.xsl	2007-02-22 20:03:49 UTC (rev 22889)
@@ -3,7 +3,7 @@
 <xsl:stylesheet version="1.0"
   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
   xmlns:xhtml="http://www.w3.org/1999/xhtml"
-  xmlns:i18n="http://apache.org/cocoon/i18n/2.1"
+  xmlns:i18n="http://www.wyona.org/yanel/i18n/1.0"
   xmlns="http://www.w3.org/1999/xhtml"
 >
 

Modified: public/yanel/trunk/src/webapp/xslt/xmlInfo2xhtml.xsl
===================================================================
--- public/yanel/trunk/src/webapp/xslt/xmlInfo2xhtml.xsl	2007-02-22 19:15:18 UTC (rev 22888)
+++ public/yanel/trunk/src/webapp/xslt/xmlInfo2xhtml.xsl	2007-02-22 20:03:49 UTC (rev 22889)
@@ -5,7 +5,7 @@
   xmlns:xhtml="http://www.w3.org/1999/xhtml"
   xmlns="http://www.w3.org/1999/xhtml"
   xmlns:yanel="http://www.wyona.org/yanel/1.0"
-  xmlns:i18n="http://apache.org/cocoon/i18n/2.1"
+  xmlns:i18n="http://www.wyona.org/yanel/i18n/1.0"
 >
 
   <!-- TODO: Isn't there a more standardized i18n namespace? -->




More information about the Yanel-commits mailing list