- From: Damien Leroy via cvs-syncmail <cvsmail@w3.org>
- Date: Fri, 29 Sep 2006 09:25:14 +0000
- To: www-validator-cvs@w3.org
Update of /sources/public/2006/unicorn/org/w3c/unicorn/output
In directory hutz:/tmp/cvs-serv18469/org/w3c/unicorn/output
Modified Files:
OutputFactory.java XHTMLize.java
Log Message:
Add use of property DEFAULT_LANGUAGE from the property file to set default language of the class org.w3c.unicorn.util.LocalizedString.
Index: OutputFactory.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/output/OutputFactory.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- OutputFactory.java 31 Aug 2006 09:09:25 -0000 1.1.1.1
+++ OutputFactory.java 29 Sep 2006 09:25:11 -0000 1.2
@@ -42,7 +42,7 @@
e.printStackTrace();
}
}
-
+
/**
* Create a new output module and add it to the map.
* @param aEnumOutputModule To identify which type of output module will be created.
Index: XHTMLize.java
===================================================================
RCS file: /sources/public/2006/unicorn/org/w3c/unicorn/output/XHTMLize.java,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- XHTMLize.java 31 Aug 2006 09:09:25 -0000 1.1.1.1
+++ XHTMLize.java 29 Sep 2006 09:25:11 -0000 1.2
@@ -36,7 +36,7 @@
Code code = (Code) oValue;
return insertCode(code);
}
- return EscapeXMLEntities.escapeText(oValue.toString());
+ return EscapeXMLEntities.escapeText(oValue.toString());
}
private Object insertA (final A aLink) {
Received on Friday, 29 September 2006 09:25:25 UTC