mkwan 2003/01/23 08:12:57
Modified: java/src/org/apache/xalan/lib Tag: XSLTC_DTM ExsltSets.java
java/src/org/apache/xalan/processor Tag: XSLTC_DTM
ProcessorInclude.java StylesheetHandler.java
TransformerFactoryImpl.java
java/src/org/apache/xalan/res Tag: XSLTC_DTM
XSLMessages.java XSLTErrorResources.java
XSLTErrorResources_de.java
XSLTErrorResources_es.java
XSLTErrorResources_fr.java
XSLTErrorResources_it.java
XSLTErrorResources_ja.java
XSLTErrorResources_ko.java
XSLTErrorResources_sv.java
XSLTErrorResources_zh_CN.java
XSLTErrorResources_zh_TW.java
java/src/org/apache/xalan/serialize Tag: XSLTC_DTM
SerializerToXML.java
java/src/org/apache/xalan/templates Tag: XSLTC_DTM
Constants.java
java/src/org/apache/xalan/transformer Tag: XSLTC_DTM
MsgMgr.java TransformerIdentityImpl.java
TransformerImpl.java TreeWalker2Result.java
java/src/org/apache/xalan/xsltc/dom Tag: XSLTC_DTM
XSLTCDTMManager.java
Log:
Propagating the DTM separation changes to XSLTC_DTM (part 3 of 3)
Revision Changes Path
No revision
No revision
1.2.2.4 +1 -1 xml-xalan/java/src/org/apache/xalan/lib/ExsltSets.java
Index: ExsltSets.java
===================================================================
RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/lib/ExsltSets.java,v
retrieving revision 1.2.2.3
retrieving revision 1.2.2.4
diff -u -r1.2.2.3 -r1.2.2.4
--- ExsltSets.java 26 Sep 2002 13:58:36 -0000 1.2.2.3
+++ ExsltSets.java 23 Jan 2003 16:12:47 -0000 1.2.2.4
@@ -59,7 +59,7 @@
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
import org.apache.xpath.NodeSet;
-import org.apache.xpath.DOMHelper;
+import org.apache.xml.utils.DOMHelper;
import java.util.Hashtable;
import javax.xml.parsers.*;
No revision
No revision
1.20.10.3 +1 -1
xml-xalan/java/src/org/apache/xalan/processor/ProcessorInclude.java
Index: ProcessorInclude.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/processor/ProcessorInclude.java,v
retrieving revision 1.20.10.2
retrieving revision 1.20.10.3
diff -u -r1.20.10.2 -r1.20.10.3
--- ProcessorInclude.java 17 Jan 2003 00:48:23 -0000 1.20.10.2
+++ ProcessorInclude.java 23 Jan 2003 16:12:47 -0000 1.20.10.3
@@ -247,7 +247,7 @@
}
- TreeWalker walker = new TreeWalker(handler, new
org.apache.xpath.DOM2Helper(), systemId);
+ TreeWalker walker = new TreeWalker(handler, new
org.apache.xml.utils.DOM2Helper(), systemId);
try
{
1.50.2.5 +2 -17
xml-xalan/java/src/org/apache/xalan/processor/StylesheetHandler.java
Index: StylesheetHandler.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/processor/StylesheetHandler.java,v
retrieving revision 1.50.2.4
retrieving revision 1.50.2.5
diff -u -r1.50.2.4 -r1.50.2.5
--- StylesheetHandler.java 17 Jan 2003 00:48:23 -0000 1.50.2.4
+++ StylesheetHandler.java 23 Jan 2003 16:12:47 -0000 1.50.2.5
@@ -878,7 +878,7 @@
public void warn(String msg, Object args[]) throws org.xml.sax.SAXException
{
- String formattedMsg = m_XSLMessages.createWarning(msg, args);
+ String formattedMsg = XSLMessages.createWarning(msg, args);
SAXSourceLocator locator = getLocator();
ErrorListener handler = m_stylesheetProcessor.getErrorListener();
@@ -972,7 +972,7 @@
throws org.xml.sax.SAXException
{
- String formattedMsg = m_XSLMessages.createMessage(msg, args);
+ String formattedMsg = XSLMessages.createMessage(msg, args);
error(formattedMsg, e);
}
@@ -1381,21 +1381,6 @@
}
- /**
- * A XSLMessages instance capable of producing user messages.
- */
- private static XSLMessages m_XSLMessages = new XSLMessages();
-
- /**
- * Get an XSLMessages instance capable of producing user messages.
- *
- * @return non-null reference to the error and warnings table.
- */
- XSLMessages getXSLMessages()
- {
- return m_XSLMessages;
- }
-
/**
* This will act as a stack to keep track of the
* current include base.
1.41.6.5 +7 -7
xml-xalan/java/src/org/apache/xalan/processor/TransformerFactoryImpl.java
Index: TransformerFactoryImpl.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/processor/TransformerFactoryImpl.java,v
retrieving revision 1.41.6.4
retrieving revision 1.41.6.5
diff -u -r1.41.6.4 -r1.41.6.5
--- TransformerFactoryImpl.java 10 Dec 2002 20:17:59 -0000 1.41.6.4
+++ TransformerFactoryImpl.java 23 Jan 2003 16:12:48 -0000 1.41.6.5
@@ -71,6 +71,7 @@
import org.apache.xml.utils.TreeWalker;
import org.apache.xml.utils.SystemIDResolver;
import org.apache.xml.utils.DefaultErrorHandler;
+import org.apache.xml.dtm.ref.sax2dtm.SAX2DTM;
import org.apache.xalan.transformer.TransformerImpl;
import org.apache.xalan.transformer.TransformerIdentityImpl;
import org.apache.xalan.transformer.TrAXFilter;
@@ -213,7 +214,7 @@
try
{
TemplatesHandler builder = newTemplatesHandler();
- TreeWalker walker = new TreeWalker(builder, new
org.apache.xpath.DOM2Helper(), builder.getSystemId());
+ TreeWalker walker = new TreeWalker(builder, new
org.apache.xml.utils.DOM2Helper(), builder.getSystemId());
walker.traverse(node);
@@ -379,7 +380,7 @@
{
if (null != node)
{
- TreeWalker walker = new TreeWalker(handler, new
org.apache.xpath.DOM2Helper(), baseID);
+ TreeWalker walker = new TreeWalker(handler, new
org.apache.xml.utils.DOM2Helper(), baseID);
walker.traverse(node);
}
@@ -506,11 +507,7 @@
*
* The default is false. Setting it true may significantly
* increase storage cost per node.
- *
- * %REVIEW% SAX2DTM is explicitly reaching up to retrieve this global
field.
- * We should instead have an architected pathway for passing hints of this
- * sort down from TransformerFactory to Transformer to DTMManager to DTM.
- * */
+ */
public static boolean m_source_location = false;
/**
@@ -574,11 +571,14 @@
{
// Accept a Boolean object..
m_source_location = ((Boolean)value).booleanValue();
+ // Pass the source location property to SAX2DTM, where it actually
gets used.
+ SAX2DTM.setUseSourceLocation(m_source_location);
}
else if(value instanceof String)
{
// .. or a String object
m_source_location = (new Boolean((String)value)).booleanValue();
+ SAX2DTM.setUseSourceLocation(m_source_location);
}
else
{
No revision
No revision
1.5.16.3 +3 -292 xml-xalan/java/src/org/apache/xalan/res/XSLMessages.java
Index: XSLMessages.java
===================================================================
RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/res/XSLMessages.java,v
retrieving revision 1.5.16.2
retrieving revision 1.5.16.3
diff -u -r1.5.16.2 -r1.5.16.3
--- XSLMessages.java 17 Jan 2003 00:48:24 -0000 1.5.16.2
+++ XSLMessages.java 23 Jan 2003 16:12:48 -0000 1.5.16.3
@@ -62,175 +62,23 @@
import java.util.ListResourceBundle;
import java.util.MissingResourceException;
-import org.apache.xpath.res.XPATHErrorResources;
+import org.apache.xpath.res.XPATHMessages;
/**
* <meta name="usage" content="internal"/>
* Sets things up for issuing error messages. This class is misnamed, and
* should be called XalanMessages, or some such.
*/
-public class XSLMessages
+public class XSLMessages extends XPATHMessages
{
- /** The local object to use. */
- private Locale fLocale = Locale.getDefault();
-
/** The language specific resource object for Xalan messages. */
private static ListResourceBundle XSLTBundle = null;
- /** The language specific resource object for XPath messages. */
- private static ListResourceBundle XPATHBundle = null;
-
/** The class name of the Xalan error message string table. */
private static final String XSLT_ERROR_RESOURCES =
"org.apache.xalan.res.XSLTErrorResources";
- /** The class name of the XPath error message string table. */
- private static final String XPATH_ERROR_RESOURCES =
- "org.apache.xpath.res.XPATHErrorResources";
-
- /** String to use if a bad message code is used. */
- private static String BAD_CODE = "BAD_CODE";
-
- /** String to use if the message format operation failed. */
- private static String FORMAT_FAILED = "FORMAT_FAILED";
-
- /**
- * Set the Locale object to use.
- *
- * @param locale non-null reference to Locale object.
- */
- public void setLocale(Locale locale)
- {
- fLocale = locale;
- }
-
- /**
- * Get the Locale object that is being used.
- *
- * @return non-null reference to Locale object.
- */
- public Locale getLocale()
- {
- return fLocale;
- }
-
- /**
- * Creates a message from the specified key and replacement
- * arguments, localized to the given locale.
- *
- * @param msgKey The key for the message text.
- * @param args The arguments to be used as replacement text
- * in the message created.
- *
- * @return The formatted warning string.
- */
- public static final String createXPATHWarning(String msgKey, Object
args[]) //throws Exception
- {
-
- if (XPATHBundle == null)
- XPATHBundle = loadResourceBundle(XPATH_ERROR_RESOURCES);
-
-
- if (XPATHBundle != null)
- {
- return createXPATHMsg(XPATHBundle, msgKey, args);
- }
- else
- return "Could not load any resource bundles.";
- }
-
-
- /**
- * Creates a message from the specified key and replacement
- * arguments, localized to the given locale.
- *
- * @param errorCode The key for the message text.
- * @param args The arguments to be used as replacement text
- * in the message created.
- *
- * @return The formatted message string.
- */
- public static final String createXPATHMessage(String msgKey, Object
args[]) //throws Exception
- {
-
- if (XPATHBundle == null)
- XPATHBundle = loadResourceBundle(XPATH_ERROR_RESOURCES);
-
-
- if (XPATHBundle != null)
- {
- return createXPATHMsg(XPATHBundle, msgKey, args);
- }
- else
- return "Could not load any resource bundles.";
- }
-
- /**
- * Creates a message from the specified key and replacement
- * arguments, localized to the given locale.
- *
- * @param errorCode The key for the message text.
- *
- * @param fResourceBundle The resource bundle to use.
- * @param msgKey The message key to use.
- * @param args The arguments to be used as replacement text
- * in the message created.
- *
- * @return The formatted message string.
- */
- public static final String createXPATHMsg(ListResourceBundle
fResourceBundle,
- String msgKey, Object args[])
//throws Exception
- {
-
- String fmsg = null;
- boolean throwex = false;
- String msg = null;
-
- if (msgKey != null)
- msg = fResourceBundle.getString( msgKey);
-
- if (msg == null)
- {
- msg = fResourceBundle.getString( XPATHErrorResources.BAD_CODE);
- throwex = true;
- }
-
- if (args != null)
- {
- try
- {
-
- // Do this to keep format from crying.
- // This is better than making a bunch of conditional
- // code all over the place.
- int n = args.length;
-
- for (int i = 0; i < n; i++)
- {
- if (null == args[i])
- args[i] = "";
- }
-
- fmsg = java.text.MessageFormat.format(msg, args);
- }
- catch (Exception e)
- {
- fmsg = fResourceBundle.getString(XPATHErrorResources.FORMAT_FAILED);
- fmsg += " " + msg;
- }
- }
- else
- fmsg = msg;
-
- if (throwex)
- {
- throw new RuntimeException(fmsg);
- }
-
- return fmsg;
- }
-
/**
* Creates a message from the specified key and replacement
* arguments, localized to the given locale.
@@ -243,11 +91,9 @@
*/
public static final String createMessage(String msgKey, Object args[])
//throws Exception
{
-
if (XSLTBundle == null)
XSLTBundle = loadResourceBundle(XSLT_ERROR_RESOURCES);
-
-
+
if (XSLTBundle != null)
{
return createMsg(XSLTBundle, msgKey, args);
@@ -268,149 +114,14 @@
*/
public static final String createWarning(String msgKey, Object args[])
//throws Exception
{
-
if (XSLTBundle == null)
XSLTBundle = loadResourceBundle(XSLT_ERROR_RESOURCES);
-
if (XSLTBundle != null)
{
return createMsg(XSLTBundle, msgKey, args);
}
else
return "Could not load any resource bundles.";
- }
-
-
- /**
- * Creates a message from the specified key and replacement
- * arguments, localized to the given locale.
- *
- * @param errorCode The key for the message text.
- *
- * @param fResourceBundle The resource bundle to use.
- * @param msgKey The message key to use.
- * @param args The arguments to be used as replacement text
- * in the message created.
- *
- * @return The formatted message string.
- */
- public static final String createMsg(ListResourceBundle fResourceBundle,
- String msgKey, Object args[]) //throws Exception
- {
-
- String fmsg = null;
- boolean throwex = false;
- String msg = null;
-
- if (msgKey != null)
- msg = fResourceBundle.getString( msgKey);
-
- if (msg == null)
- {
- msg = fResourceBundle.getString(BAD_CODE);
- throwex = true;
- }
-
- if (args != null)
- {
- try
- {
-
- // Do this to keep format from crying.
- // This is better than making a bunch of conditional
- // code all over the place.
- int n = args.length;
-
- for (int i = 0; i < n; i++)
- {
- if (null == args[i])
- args[i] = "";
- }
-
- fmsg = java.text.MessageFormat.format(msg, args);
- }
- catch (Exception e)
- {
- fmsg = fResourceBundle.getString(FORMAT_FAILED);
- fmsg += " " + msg;
- }
- }
- else
- fmsg = msg;
-
- if (throwex)
- {
- throw new RuntimeException(fmsg);
- }
-
- return fmsg;
- }
-
-
- /**
- * Return a named ResourceBundle for a particular locale. This method
mimics the behavior
- * of ResourceBundle.getBundle().
- *
- * @param res the name of the resource to load.
- * @param locale the locale to prefer when searching for the bundle
- *
- * @param className The class name of the resource bundle.
- * @return the ResourceBundle
- * @throws MissingResourceException
- */
- public static final ListResourceBundle loadResourceBundle(String className)
- throws MissingResourceException
- {
-
- Locale locale = Locale.getDefault();
-
- // String suffix = getResourceSuffix(locale);
- try
- {
-
- //System.out.println("resource " +className+suffix);
- // first try with the given locale
- return (ListResourceBundle) ResourceBundle.getBundle(className,
locale);
- }
- catch (MissingResourceException e)
- {
- try // try to fall back to en_US if we can't load
- {
-
- // Since we can't find the localized property file,
- // fall back to en_US.
- return (ListResourceBundle) ResourceBundle.getBundle(
- XSLT_ERROR_RESOURCES, new Locale("en", "US"));
- }
- catch (MissingResourceException e2)
- {
-
- // Now we are really in trouble.
- // very bad, definitely very bad...not going to get very far
- throw new MissingResourceException(
- "Could not load any resource bundles." + className, className, "");
- }
- }
- }
-
- /**
- * Return the resource file suffic for the indicated locale
- * For most locales, this will be based the language code. However
- * for Chinese, we do distinguish between Taiwan and PRC
- *
- * @param locale the locale
- * @return an String suffix which can be appended to a resource name
- */
- private static final String getResourceSuffix(Locale locale)
- {
-
- String suffix = "_" + locale.getLanguage();
- String country = locale.getCountry();
-
- if (country.equals("TW"))
- suffix += "_" + country;
-
- return suffix;
}
}
1.23.10.4 +103 -183
xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources.java
Index: XSLTErrorResources.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources.java,v
retrieving revision 1.23.10.3
retrieving revision 1.23.10.4
diff -u -r1.23.10.3 -r1.23.10.4
--- XSLTErrorResources.java 17 Jan 2003 00:48:24 -0000 1.23.10.3
+++ XSLTErrorResources.java 23 Jan 2003 16:12:48 -0000 1.23.10.4
@@ -118,7 +118,7 @@
*/
/** Maximum error messages, this is needed to keep track of the number of
messages. */
- public static final int MAX_CODE = 253;
+ public static final int MAX_CODE = 201;
/** Maximum warnings, this is needed to keep track of the number of
warnings. */
public static final int MAX_WARNING = 29;
@@ -249,8 +249,6 @@
public static final String ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL =
"ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL";
public static final String ER_SAX_EXCEPTION = "ER_SAX_EXCEPTION";
- public static final String ER_FUNCTION_NOT_SUPPORTED =
- "ER_FUNCTION_NOT_SUPPORTED";
public static final String ER_XSLT_ERROR = "ER_XSLT_ERROR";
public static final String ER_CURRENCY_SIGN_ILLEGAL=
"ER_CURRENCY_SIGN_ILLEGAL";
@@ -306,8 +304,6 @@
public static final String ER_FILE_CANNOT_BE_NULL =
"ER_FILE_CANNOT_BE_NULL";
public static final String ER_SOURCE_CANNOT_BE_NULL =
"ER_SOURCE_CANNOT_BE_NULL";
- public static final String ER_CANNOT_OVERWRITE_CAUSE =
- "ER_CANNOT_OVERWRITE_CAUSE";
public static final String ER_CANNOT_INIT_BSFMGR = "ER_CANNOT_INIT_BSFMGR";
public static final String ER_CANNOT_CMPL_EXTENSN =
"ER_CANNOT_CMPL_EXTENSN";
public static final String ER_CANNOT_CREATE_EXTENSN =
@@ -368,80 +364,15 @@
public static final String ER_NO_STYLESHEET_IN_MEDIA =
"ER_NO_STYLESHEET_IN_MEDIA";
public static final String ER_NO_STYLESHEET_PI = "ER_NO_STYLESHEET_PI";
- public static final String ER_NO_DEFAULT_IMPL = "ER_NO_DEFAULT_IMPL";
- public static final String ER_CHUNKEDINTARRAY_NOT_SUPPORTED =
- "ER_CHUNKEDINTARRAY_NOT_SUPPORTED";
- public static final String ER_OFFSET_BIGGER_THAN_SLOT =
- "ER_OFFSET_BIGGER_THAN_SLOT";
- public static final String ER_COROUTINE_NOT_AVAIL =
"ER_COROUTINE_NOT_AVAIL";
- public static final String ER_COROUTINE_CO_EXIT = "ER_COROUTINE_CO_EXIT";
- public static final String ER_COJOINROUTINESET_FAILED =
- "ER_COJOINROUTINESET_FAILED";
- public static final String ER_COROUTINE_PARAM = "ER_COROUTINE_PARAM";
- public static final String ER_PARSER_DOTERMINATE_ANSWERS =
- "ER_PARSER_DOTERMINATE_ANSWERS";
- public static final String ER_NO_PARSE_CALL_WHILE_PARSING =
- "ER_NO_PARSE_CALL_WHILE_PARSING";
- public static final String ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED =
- "ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED";
- public static final String ER_ITERATOR_AXIS_NOT_IMPLEMENTED =
- "ER_ITERATOR_AXIS_NOT_IMPLEMENTED";
- public static final String ER_ITERATOR_CLONE_NOT_SUPPORTED =
- "ER_ITERATOR_CLONE_NOT_SUPPORTED";
- public static final String ER_UNKNOWN_AXIS_TYPE = "ER_UNKNOWN_AXIS_TYPE";
- public static final String ER_AXIS_NOT_SUPPORTED = "ER_AXIS_NOT_SUPPORTED";
- public static final String ER_NO_DTMIDS_AVAIL = "ER_NO_DTMIDS_AVAIL";
public static final String ER_NOT_SUPPORTED = "ER_NOT_SUPPORTED";
- public static final String ER_NODE_NON_NULL = "ER_NODE_NON_NULL";
- public static final String ER_COULD_NOT_RESOLVE_NODE =
- "ER_COULD_NOT_RESOLVE_NODE";
- public static final String ER_STARTPARSE_WHILE_PARSING =
- "ER_STARTPARSE_WHILE_PARSING";
- public static final String ER_STARTPARSE_NEEDS_SAXPARSER =
- "ER_STARTPARSE_NEEDS_SAXPARSER";
- public static final String ER_COULD_NOT_INIT_PARSER =
- "ER_COULD_NOT_INIT_PARSER";
public static final String ER_PROPERTY_VALUE_BOOLEAN =
"ER_PROPERTY_VALUE_BOOLEAN";
- public static final String ER_EXCEPTION_CREATING_POOL =
- "ER_EXCEPTION_CREATING_POOL";
- public static final String ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE =
- "ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE";
- public static final String ER_SCHEME_REQUIRED = "ER_SCHEME_REQUIRED";
- public static final String ER_NO_SCHEME_IN_URI = "ER_NO_SCHEME_IN_URI";
- public static final String ER_NO_SCHEME_INURI = "ER_NO_SCHEME_INURI";
- public static final String ER_PATH_INVALID_CHAR = "ER_PATH_INVALID_CHAR";
- public static final String ER_SCHEME_FROM_NULL_STRING =
- "ER_SCHEME_FROM_NULL_STRING";
- public static final String ER_SCHEME_NOT_CONFORMANT =
- "ER_SCHEME_NOT_CONFORMANT";
- public static final String ER_HOST_ADDRESS_NOT_WELLFORMED =
- "ER_HOST_ADDRESS_NOT_WELLFORMED";
- public static final String ER_PORT_WHEN_HOST_NULL =
"ER_PORT_WHEN_HOST_NULL";
- public static final String ER_INVALID_PORT = "ER_INVALID_PORT";
- public static final String ER_FRAG_FOR_GENERIC_URI
="ER_FRAG_FOR_GENERIC_URI";
- public static final String ER_FRAG_WHEN_PATH_NULL =
"ER_FRAG_WHEN_PATH_NULL";
- public static final String ER_FRAG_INVALID_CHAR = "ER_FRAG_INVALID_CHAR";
- public static final String ER_PARSER_IN_USE = "ER_PARSER_IN_USE";
- public static final String ER_CANNOT_CHANGE_WHILE_PARSING =
- "ER_CANNOT_CHANGE_WHILE_PARSING";
- public static final String ER_SELF_CAUSATION_NOT_PERMITTED =
- "ER_SELF_CAUSATION_NOT_PERMITTED";
public static final String ER_COULD_NOT_FIND_EXTERN_SCRIPT =
"ER_COULD_NOT_FIND_EXTERN_SCRIPT";
public static final String ER_RESOURCE_COULD_NOT_FIND =
"ER_RESOURCE_COULD_NOT_FIND";
public static final String ER_OUTPUT_PROPERTY_NOT_RECOGNIZED =
"ER_OUTPUT_PROPERTY_NOT_RECOGNIZED";
- public static final String ER_NO_USERINFO_IF_NO_HOST =
- "ER_NO_USERINFO_IF_NO_HOST";
- public static final String ER_NO_PORT_IF_NO_HOST = "ER_NO_PORT_IF_NO_HOST";
- public static final String ER_NO_QUERY_STRING_IN_PATH =
- "ER_NO_QUERY_STRING_IN_PATH";
- public static final String ER_NO_FRAGMENT_STRING_IN_PATH =
- "ER_NO_FRAGMENT_STRING_IN_PATH";
- public static final String ER_CANNOT_INIT_URI_EMPTY_PARMS =
- "ER_CANNOT_INIT_URI_EMPTY_PARMS";
public static final String ER_FAILED_CREATING_ELEMLITRSLT =
"ER_FAILED_CREATING_ELEMLITRSLT";
public static final String ER_VALUE_SHOULD_BE_NUMBER =
@@ -453,16 +384,11 @@
"ER_FAILED_CREATING_ELEMTMPL";
public static final String ER_CHARS_NOT_ALLOWED = "ER_CHARS_NOT_ALLOWED";
public static final String ER_ATTR_NOT_ALLOWED = "ER_ATTR_NOT_ALLOWED";
- public static final String ER_METHOD_NOT_SUPPORTED
="ER_METHOD_NOT_SUPPORTED";
public static final String ER_BAD_VALUE = "ER_BAD_VALUE";
public static final String ER_ATTRIB_VALUE_NOT_FOUND =
"ER_ATTRIB_VALUE_NOT_FOUND";
public static final String ER_ATTRIB_VALUE_NOT_RECOGNIZED =
"ER_ATTRIB_VALUE_NOT_RECOGNIZED";
- public static final String ER_INCRSAXSRCFILTER_NOT_RESTARTABLE =
- "ER_INCRSAXSRCFILTER_NOT_RESTARTABLE";
- public static final String ER_XMLRDR_NOT_BEFORE_STARTPARSE =
- "ER_XMLRDR_NOT_BEFORE_STARTPARSE";
public static final String ER_NULL_URI_NAMESPACE = "ER_NULL_URI_NAMESPACE";
public static final String ER_NUMBER_TOO_BIG = "ER_NUMBER_TOO_BIG";
public static final String ER_CANNOT_FIND_SAX1_DRIVER =
@@ -492,17 +418,11 @@
"ER_ASSERT_NO_TEMPLATE_PARENT";
public static final String ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR =
"ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR";
- public static final String ER_AXIS_TRAVERSER_NOT_SUPPORTED =
- "ER_AXIS_TRAVERSER_NOT_SUPPORTED";
- public static final String ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER =
- "ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER";
public static final String ER_NOT_ALLOWED_IN_POSITION =
"ER_NOT_ALLOWED_IN_POSITION";
public static final String ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION =
"ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION";
public static final String INVALID_TCHAR = "INVALID_TCHAR";
- public static final String ER_SYSTEMID_UNKNOWN = "ER_SYSTEMID_UNKNOWN";
- public static final String ER_LOCATION_UNKNOWN = "ER_LOCATION_UNKNOWN";
public static final String INVALID_QNAME = "INVALID_QNAME";
public static final String INVALID_ENUM = "INVALID_ENUM";
public static final String INVALID_NMTOKEN = "INVALID_NMTOKEN";
@@ -1097,8 +1017,8 @@
/** ER_FUNCTION_NOT_SUPPORTED */
// public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
- { ER_FUNCTION_NOT_SUPPORTED,
- "Function not supported!"},
+ //{ ER_FUNCTION_NOT_SUPPORTED,
+ // "Function not supported!"},
/** ER_XSLT_ERROR */
// public static final int ER_XSLT_ERROR = 81;
@@ -1307,8 +1227,8 @@
/** Can't overwrite cause */
// public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
- { ER_CANNOT_OVERWRITE_CAUSE,
- "Cannot overwrite cause"},
+ //{ ER_CANNOT_OVERWRITE_CAUSE,
+ // "Cannot overwrite cause"},
/** Could not initialize BSF Manager */
// public static final int ER_CANNOT_INIT_BSFMGR = 116;
@@ -1554,92 +1474,92 @@
/** No default implementation found */
// public static final int ER_NO_DEFAULT_IMPL = 156;
- { ER_NO_DEFAULT_IMPL,
- "No default implementation found "},
+ //{ ER_NO_DEFAULT_IMPL,
+ // "No default implementation found "},
/** ChunkedIntArray({0}) not currently supported */
// public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
- { ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
- "ChunkedIntArray({0}) not currently supported"},
+ //{ ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
+ // "ChunkedIntArray({0}) not currently supported"},
/** Offset bigger than slot */
// public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
- { ER_OFFSET_BIGGER_THAN_SLOT,
- "Offset bigger than slot"},
+ //{ ER_OFFSET_BIGGER_THAN_SLOT,
+ // "Offset bigger than slot"},
/** Coroutine not available, id= */
// public static final int ER_COROUTINE_NOT_AVAIL = 159;
- { ER_COROUTINE_NOT_AVAIL,
- "Coroutine not available, id={0}"},
+ //{ ER_COROUTINE_NOT_AVAIL,
+ // "Coroutine not available, id={0}"},
/** CoroutineManager recieved co_exit() request */
// public static final int ER_COROUTINE_CO_EXIT = 160;
- { ER_COROUTINE_CO_EXIT,
- "CoroutineManager received co_exit() request"},
+ //{ ER_COROUTINE_CO_EXIT,
+ // "CoroutineManager received co_exit() request"},
/** co_joinCoroutineSet() failed */
// public static final int ER_COJOINROUTINESET_FAILED = 161;
- { ER_COJOINROUTINESET_FAILED,
- "co_joinCoroutineSet() failed"},
+ //{ ER_COJOINROUTINESET_FAILED,
+ // "co_joinCoroutineSet() failed"},
/** Coroutine parameter error () */
// public static final int ER_COROUTINE_PARAM = 162;
- { ER_COROUTINE_PARAM,
- "Coroutine parameter error ({0})"},
+ //{ ER_COROUTINE_PARAM,
+ // "Coroutine parameter error ({0})"},
/** UNEXPECTED: Parser doTerminate answers */
// public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
- { ER_PARSER_DOTERMINATE_ANSWERS,
- "\nUNEXPECTED: Parser doTerminate answers {0}"},
+ //{ ER_PARSER_DOTERMINATE_ANSWERS,
+ // "\nUNEXPECTED: Parser doTerminate answers {0}"},
/** parse may not be called while parsing */
// public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
- { ER_NO_PARSE_CALL_WHILE_PARSING,
- "parse may not be called while parsing"},
+ //{ ER_NO_PARSE_CALL_WHILE_PARSING,
+ // "parse may not be called while parsing"},
/** Error: typed iterator for axis {0} not implemented */
// public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
- { ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "Error: typed iterator for axis {0} not implemented"},
+ //{ ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
+ // "Error: typed iterator for axis {0} not implemented"},
/** Error: iterator for axis {0} not implemented */
// public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
- { ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "Error: iterator for axis {0} not implemented "},
+ //{ ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
+ // "Error: iterator for axis {0} not implemented "},
/** Iterator clone not supported */
// public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
- { ER_ITERATOR_CLONE_NOT_SUPPORTED,
- "Iterator clone not supported"},
+ //{ ER_ITERATOR_CLONE_NOT_SUPPORTED,
+ // "Iterator clone not supported"},
/** Unknown axis traversal type */
// public static final int ER_UNKNOWN_AXIS_TYPE = 168;
- { ER_UNKNOWN_AXIS_TYPE,
- "Unknown axis traversal type: {0}"},
+ //{ ER_UNKNOWN_AXIS_TYPE,
+ // "Unknown axis traversal type: {0}"},
/** Axis traverser not supported */
// public static final int ER_AXIS_NOT_SUPPORTED = 169;
- { ER_AXIS_NOT_SUPPORTED,
- "Axis traverser not supported: {0}"},
+ //{ ER_AXIS_NOT_SUPPORTED,
+ // "Axis traverser not supported: {0}"},
/** No more DTM IDs are available */
// public static final int ER_NO_DTMIDS_AVAIL = 170;
- { ER_NO_DTMIDS_AVAIL,
- "No more DTM IDs are available"},
+ //{ ER_NO_DTMIDS_AVAIL,
+ // "No more DTM IDs are available"},
/** Not supported */
// public static final int ER_NOT_SUPPORTED = 171;
@@ -1650,31 +1570,31 @@
/** node must be non-null for getDTMHandleFromNode */
// public static final int ER_NODE_NON_NULL = 172;
- { ER_NODE_NON_NULL,
- "Node must be non-null for getDTMHandleFromNode"},
+ //{ ER_NODE_NON_NULL,
+ // "Node must be non-null for getDTMHandleFromNode"},
/** Could not resolve the node to a handle */
// public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
- { ER_COULD_NOT_RESOLVE_NODE,
- "Could not resolve the node to a handle"},
+ //{ ER_COULD_NOT_RESOLVE_NODE,
+ // "Could not resolve the node to a handle"},
/** startParse may not be called while parsing */
// public static final int ER_STARTPARSE_WHILE_PARSING = 174;
- { ER_STARTPARSE_WHILE_PARSING,
- "startParse may not be called while parsing"},
+ //{ ER_STARTPARSE_WHILE_PARSING,
+ // "startParse may not be called while parsing"},
/** startParse needs a non-null SAXParser */
// public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
- { ER_STARTPARSE_NEEDS_SAXPARSER,
- "startParse needs a non-null SAXParser"},
+ //{ ER_STARTPARSE_NEEDS_SAXPARSER,
+ // "startParse needs a non-null SAXParser"},
/** could not initialize parser with */
// public static final int ER_COULD_NOT_INIT_PARSER = 176;
- { ER_COULD_NOT_INIT_PARSER,
- "could not initialize parser with"},
+ //{ ER_COULD_NOT_INIT_PARSER,
+ // "could not initialize parser with"},
/** Value for property {0} should be a Boolean instance */
// public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
@@ -1685,106 +1605,106 @@
/** exception creating new instance for pool */
// public static final int ER_EXCEPTION_CREATING_POOL = 178;
- { ER_EXCEPTION_CREATING_POOL,
- "exception creating new instance for pool"},
+ //{ ER_EXCEPTION_CREATING_POOL,
+ // "exception creating new instance for pool"},
/** Path contains invalid escape sequence */
// public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
- { ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
- "Path contains invalid escape sequence"},
+ //{ ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
+ // "Path contains invalid escape sequence"},
/** Scheme is required! */
// public static final int ER_SCHEME_REQUIRED = 180;
- { ER_SCHEME_REQUIRED,
- "Scheme is required!"},
+ //{ ER_SCHEME_REQUIRED,
+ // "Scheme is required!"},
/** No scheme found in URI */
// public static final int ER_NO_SCHEME_IN_URI = 181;
- { ER_NO_SCHEME_IN_URI,
- "No scheme found in URI: {0}"},
+ //{ ER_NO_SCHEME_IN_URI,
+ // "No scheme found in URI: {0}"},
/** No scheme found in URI */
// public static final int ER_NO_SCHEME_INURI = 182;
- { ER_NO_SCHEME_INURI,
- "No scheme found in URI"},
+ //{ ER_NO_SCHEME_INURI,
+ // "No scheme found in URI"},
/** Path contains invalid character: */
// public static final int ER_PATH_INVALID_CHAR = 183;
- { ER_PATH_INVALID_CHAR,
- "Path contains invalid character: {0}"},
+ //{ ER_PATH_INVALID_CHAR,
+ // "Path contains invalid character: {0}"},
/** Cannot set scheme from null string */
// public static final int ER_SCHEME_FROM_NULL_STRING = 184;
- { ER_SCHEME_FROM_NULL_STRING,
- "Cannot set scheme from null string"},
+ //{ ER_SCHEME_FROM_NULL_STRING,
+ // "Cannot set scheme from null string"},
/** The scheme is not conformant. */
// public static final int ER_SCHEME_NOT_CONFORMANT = 185;
- { ER_SCHEME_NOT_CONFORMANT,
- "The scheme is not conformant."},
+ //{ ER_SCHEME_NOT_CONFORMANT,
+ // "The scheme is not conformant."},
/** Host is not a well formed address */
// public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
- { ER_HOST_ADDRESS_NOT_WELLFORMED,
- "Host is not a well formed address"},
+ //{ ER_HOST_ADDRESS_NOT_WELLFORMED,
+ // "Host is not a well formed address"},
/** Port cannot be set when host is null */
// public static final int ER_PORT_WHEN_HOST_NULL = 187;
- { ER_PORT_WHEN_HOST_NULL,
- "Port cannot be set when host is null"},
+ //{ ER_PORT_WHEN_HOST_NULL,
+ // "Port cannot be set when host is null"},
/** Invalid port number */
// public static final int ER_INVALID_PORT = 188;
- { ER_INVALID_PORT,
- "Invalid port number"},
+ //{ ER_INVALID_PORT,
+ // "Invalid port number"},
/** Fragment can only be set for a generic URI */
// public static final int ER_FRAG_FOR_GENERIC_URI = 189;
- { ER_FRAG_FOR_GENERIC_URI,
- "Fragment can only be set for a generic URI"},
+ //{ ER_FRAG_FOR_GENERIC_URI,
+ // "Fragment can only be set for a generic URI"},
/** Fragment cannot be set when path is null */
// public static final int ER_FRAG_WHEN_PATH_NULL = 190;
- { ER_FRAG_WHEN_PATH_NULL,
- "Fragment cannot be set when path is null"},
+ //{ ER_FRAG_WHEN_PATH_NULL,
+ // "Fragment cannot be set when path is null"},
/** Fragment contains invalid character */
// public static final int ER_FRAG_INVALID_CHAR = 191;
- { ER_FRAG_INVALID_CHAR,
- "Fragment contains invalid character"},
+ //{ ER_FRAG_INVALID_CHAR,
+ // "Fragment contains invalid character"},
/** Parser is already in use */
// public static final int ER_PARSER_IN_USE = 192;
- { ER_PARSER_IN_USE,
- "Parser is already in use"},
+ //{ ER_PARSER_IN_USE,
+ // "Parser is already in use"},
/** Parser is already in use */
// public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
- { ER_CANNOT_CHANGE_WHILE_PARSING,
- "Cannot change {0} {1} while parsing"},
+ //{ ER_CANNOT_CHANGE_WHILE_PARSING,
+ // "Cannot change {0} {1} while parsing"},
/** Self-causation not permitted */
// public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
- { ER_SELF_CAUSATION_NOT_PERMITTED,
- "Self-causation not permitted"},
+ //{ ER_SELF_CAUSATION_NOT_PERMITTED,
+ // "Self-causation not permitted"},
/** src attribute not yet supported for */
// public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
@@ -1807,32 +1727,32 @@
/** Userinfo may not be specified if host is not specified */
// public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
- { ER_NO_USERINFO_IF_NO_HOST,
- "Userinfo may not be specified if host is not specified"},
+ //{ ER_NO_USERINFO_IF_NO_HOST,
+ // "Userinfo may not be specified if host is not specified"},
/** Port may not be specified if host is not specified */
// public static final int ER_NO_PORT_IF_NO_HOST = 199;
- { ER_NO_PORT_IF_NO_HOST,
- "Port may not be specified if host is not specified"},
+ //{ ER_NO_PORT_IF_NO_HOST,
+ // "Port may not be specified if host is not specified"},
/** Query string cannot be specified in path and query string */
// public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
- { ER_NO_QUERY_STRING_IN_PATH,
- "Query string cannot be specified in path and query string"},
+ //{ ER_NO_QUERY_STRING_IN_PATH,
+ // "Query string cannot be specified in path and query string"},
/** Fragment cannot be specified in both the path and fragment */
// public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
- { ER_NO_FRAGMENT_STRING_IN_PATH,
- "Fragment cannot be specified in both the path and fragment"},
+ //{ ER_NO_FRAGMENT_STRING_IN_PATH,
+ // "Fragment cannot be specified in both the path and fragment"},
/** Cannot initialize URI with empty parameters */
// public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
- { ER_CANNOT_INIT_URI_EMPTY_PARMS,
- "Cannot initialize URI with empty parameters"},
+ //{ ER_CANNOT_INIT_URI_EMPTY_PARMS,
+ // "Cannot initialize URI with empty parameters"},
/** Failed creating ElemLiteralResult instance */
// public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
@@ -1883,8 +1803,8 @@
/** Method not yet supported */
// public static final int ER_METHOD_NOT_SUPPORTED = 210;
- { ER_METHOD_NOT_SUPPORTED,
- "Method not yet supported "},
+ //{ ER_METHOD_NOT_SUPPORTED,
+ // "Method not yet supported "},
/** Bad value */
// public static final int ER_BAD_VALUE = 211;
@@ -1907,14 +1827,14 @@
/** IncrementalSAXSource_Filter not currently restartable */
// public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
- { ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
- "IncrementalSAXSource_Filter not currently restartable"},
+ //{ ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
+ // "IncrementalSAXSource_Filter not currently restartable"},
/** IncrementalSAXSource_Filter not currently restartable */
// public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
- { ER_XMLRDR_NOT_BEFORE_STARTPARSE,
- "XMLReader not before startParse request"},
+ //{ ER_XMLRDR_NOT_BEFORE_STARTPARSE,
+ // "XMLReader not before startParse request"},
/** Attempting to generate a namespace prefix with a null URI */
// public static final int ER_NULL_URI_NAMESPACE = 216;
@@ -2038,13 +1958,13 @@
// Axis traverser not supported: {0}
// public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
- { ER_AXIS_TRAVERSER_NOT_SUPPORTED,
- "Axis traverser not supported: {0}"},
+ //{ ER_AXIS_TRAVERSER_NOT_SUPPORTED,
+ // "Axis traverser not supported: {0}"},
// ListingErrorHandler created with null PrintWriter!
// public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER =
236;
- { ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
- "ListingErrorHandler created with null PrintWriter!"},
+ //{ ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
+ // "ListingErrorHandler created with null PrintWriter!"},
// {0}is not allowed in this position in the stylesheet!
// public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
@@ -2064,13 +1984,13 @@
"Illegal value: {1} used for CHAR attribute: {0}. An attribute of type
CHAR must be only 1 character!"},
// public static final int ER_SYSTEMID_UNKNOWN = 240;
- { ER_SYSTEMID_UNKNOWN,
- "SystemId Unknown"},
+ //{ ER_SYSTEMID_UNKNOWN,
+ // "SystemId Unknown"},
// Location of error unknown
// public static final int ER_LOCATION_UNKNOWN = 241;
- { ER_LOCATION_UNKNOWN,
- "Location of error unknown"},
+ //{ ER_LOCATION_UNKNOWN,
+ // "Location of error unknown"},
// Note to translators: The following message is used if the value of
// an attribute in a stylesheet is invalid. "QNAME" is the XML
data-type of
1.2.2.1 +4 -357
xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_de.java
Index: XSLTErrorResources_de.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_de.java,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -u -r1.2 -r1.2.2.1
--- XSLTErrorResources_de.java 10 Jan 2003 02:02:00 -0000 1.2
+++ XSLTErrorResources_de.java 23 Jan 2003 16:12:49 -0000 1.2.2.1
@@ -83,7 +83,7 @@
{
/** Maximum error messages, this is needed to keep track of the number of
messages. */
- public static final int MAX_CODE = 253;
+ public static final int MAX_CODE = 201;
/** Maximum warnings, this is needed to keep track of the number of
warnings. */
public static final int MAX_WARNING = 29;
@@ -652,12 +652,6 @@
{
ER_SAX_EXCEPTION, "SAX-Ausnahme"},
- /** ER_FUNCTION_NOT_SUPPORTED */
-// public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
-
- {
- ER_FUNCTION_NOT_SUPPORTED, "Funktion nicht unterst\u00fctzt!"},
-
/** ER_XSLT_ERROR */
// public static final int ER_XSLT_ERROR = 81;
@@ -892,13 +886,6 @@
ER_SOURCE_CANNOT_BE_NULL,
"InputSource kann nicht Null sein"},
- /** Can't overwrite cause */
- // public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
-
- {
- ER_CANNOT_OVERWRITE_CAUSE,
- "Ursache f\u00fcr nicht m\u00f6gliches
\u00dcberschreiben"},
-
/** Could not initialize BSF Manager */
// public static final int ER_CANNOT_INIT_BSFMGR = 116;
@@ -1181,153 +1168,13 @@
ER_NO_STYLESHEET_PI,
"Kein xml-Stylesheet PI gefunden in: {0}"},
- /** No default implementation found */
- //public static final int ER_NO_DEFAULT_IMPL = 156;
-
- {
- ER_NO_DEFAULT_IMPL,
- "Keine Standardimplementierung gefunden"},
-
- /** ChunkedIntArray({0}) not currently supported */
- //public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
-
- {
- ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
- "ChunkedIntArray({0}) zurzeit nicht unterst\u00fctzt"},
-
- /** Offset bigger than slot */
- //public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
-
- {
- ER_OFFSET_BIGGER_THAN_SLOT,
- "Offset gr\u00f6\u00dfer als Slot"},
-
- /** Coroutine not available, id= */
- //public static final int ER_COROUTINE_NOT_AVAIL = 159;
-
- {
- ER_COROUTINE_NOT_AVAIL,
- "Coroutine nicht verf\u00fcgbar, ID={0}"},
-
- /** CoroutineManager recieved co_exit() request */
- //public static final int ER_COROUTINE_CO_EXIT = 160;
-
- {
- ER_COROUTINE_CO_EXIT,
- "CoroutineManager empfing Anforderung co_exit()"},
-
- /** co_joinCoroutineSet() failed */
- //public static final int ER_COJOINROUTINESET_FAILED = 161;
-
- {
- ER_COJOINROUTINESET_FAILED,
- "co_joinCoroutineSet() fehlgeschlagen"},
-
- /** Coroutine parameter error () */
- //public static final int ER_COROUTINE_PARAM = 162;
-
- {
- ER_COROUTINE_PARAM,
- "Parameterfehler in Coroutine ({0})"},
-
- /** UNEXPECTED: Parser doTerminate answers */
- //public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
-
- {
- ER_PARSER_DOTERMINATE_ANSWERS,
- "\nUNEXPECTED: Parser doTerminate antwortet {0}"},
-
- /** parse may not be called while parsing */
- //public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
-
- {
- ER_NO_PARSE_CALL_WHILE_PARSING,
- "parse darf w\u00e4hrend des Parsens nicht aufgerufen werden"},
-
- /** Error: typed iterator for axis {0} not implemented */
- //public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
-
- {
- ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "Fehler: Typisierter Iterator f\u00fcr Achse {0} nicht
implementiert"},
-
- /** Error: iterator for axis {0} not implemented */
- //public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
-
- {
- ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "Fehler: Iterator f\u00fcr Achse {0} nicht implementiert"},
-
- /** Iterator clone not supported */
- //public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
-
- {
- ER_ITERATOR_CLONE_NOT_SUPPORTED,
- "Iterator-Klone nicht unterst\u00fctzt"},
-
- /** Unknown axis traversal type */
- //public static final int ER_UNKNOWN_AXIS_TYPE = 168;
-
- {
- ER_UNKNOWN_AXIS_TYPE,
- "Unbekannter Achsen-Traversaltyp: {0}"},
-
- /** Axis traverser not supported */
- //public static final int ER_AXIS_NOT_SUPPORTED = 169;
-
- {
- ER_AXIS_NOT_SUPPORTED,
- "Achsen-Traverser nicht unterst\u00fctzt: {0}"},
-
- /** No more DTM IDs are available */
- //public static final int ER_NO_DTMIDS_AVAIL = 170;
-
- {
- ER_NO_DTMIDS_AVAIL,
- "Keine weiteren DTM-IDs verf\u00fcgbar"},
-
/** Not supported */
//public static final int ER_NOT_SUPPORTED = 171;
{
ER_NOT_SUPPORTED,
"Nicht unterst\u00fctzt: {0}"},
-
- /** node must be non-null for getDTMHandleFromNode */
- //public static final int ER_NODE_NON_NULL = 172;
-
- {
- ER_NODE_NON_NULL,
- "Knoten darf f\u00fcr getDTMHandleFromNode nicht Null sein"},
-
- /** Could not resolve the node to a handle */
- //public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
-
- {
- ER_COULD_NOT_RESOLVE_NODE,
- "Der Knoten zu einem Handle konnte nicht aufgel\u00f6st werden"},
-
- /** startParse may not be called while parsing */
- //public static final int ER_STARTPARSE_WHILE_PARSING = 174;
-
- {
- ER_STARTPARSE_WHILE_PARSING,
- "startParse darf beim Parsen nicht aufgerufen werden"},
-
- /** startParse needs a non-null SAXParser */
- //public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
-
- {
- ER_STARTPARSE_NEEDS_SAXPARSER,
- "startParse ben\u00f6tigt einen SAXParser, der nicht Null ist"},
-
- /** could not initialize parser with */
- //public static final int ER_COULD_NOT_INIT_PARSER = 176;
-
- {
- ER_COULD_NOT_INIT_PARSER,
- "Parser konnte nicht initialisiert werden"},
-
+
/** Value for property {0} should be a Boolean instance */
//public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
@@ -1335,127 +1182,6 @@
ER_PROPERTY_VALUE_BOOLEAN,
"Wert f\u00fcr Eigenschaft {0} sollte eine Boolesche Instanz sein"},
- /** exception creating new instance for pool */
- //public static final int ER_EXCEPTION_CREATING_POOL = 178;
-
- {
- ER_EXCEPTION_CREATING_POOL,
- "Ausnahme, die neue Instanz f\u00fcr Pool erstellt"},
-
- /** Path contains invalid escape sequence */
- //public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
-
- {
- ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
- "Pfad enth\u00e4lt ung\u00fcltige Escape-Sequenz"},
-
- /** Scheme is required! */
- //public static final int ER_SCHEME_REQUIRED = 180;
-
- {
- ER_SCHEME_REQUIRED,
- "Schema ist erforderlich!"},
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_IN_URI = 181;
-
- {
- ER_NO_SCHEME_IN_URI,
- "Kein Schema gefunden in URI: {0}"},
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_INURI = 182;
-
- {
- ER_NO_SCHEME_INURI,
- "Kein Schema gefunden in URI"},
-
- /** Path contains invalid character: */
- //public static final int ER_PATH_INVALID_CHAR = 183;
-
- {
- ER_PATH_INVALID_CHAR,
- "Pfad enth\u00e4lt ung\u00fcltiges Zeichen: {0}"},
-
- /** Cannot set scheme from null string */
- //public static final int ER_SCHEME_FROM_NULL_STRING = 184;
-
- {
- ER_SCHEME_FROM_NULL_STRING,
- "Schema kann ausgehend von Null-Zeichenkette nicht gesetzt werden"},
-
- /** The scheme is not conformant. */
- //public static final int ER_SCHEME_NOT_CONFORMANT = 185;
-
- {
- ER_SCHEME_NOT_CONFORMANT,
- "Schema ist nicht konform."},
-
- /** Host is not a well formed address */
- //public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
-
- {
- ER_HOST_ADDRESS_NOT_WELLFORMED,
- "Hostadresse nicht korrekt gebildet"},
-
- /** Port cannot be set when host is null */
- //public static final int ER_PORT_WHEN_HOST_NULL = 187;
-
- {
- ER_PORT_WHEN_HOST_NULL,
- "Port kann nicht gesetzt werden, wenn Host Null ist"},
-
- /** Invalid port number */
- //public static final int ER_INVALID_PORT = 188;
-
- {
- ER_INVALID_PORT,
- "Ung\u00fcltige Port-Nummer"},
-
- /** Fragment can only be set for a generic URI */
- //public static final int ER_FRAG_FOR_GENERIC_URI = 189;
-
- {
- ER_FRAG_FOR_GENERIC_URI,
- "Fragment kann nur f\u00fcr einen generischen URI gesetzt werden"},
-
- /** Fragment cannot be set when path is null */
- //public static final int ER_FRAG_WHEN_PATH_NULL = 190;
-
- {
- ER_FRAG_WHEN_PATH_NULL,
- "Fragment kann nicht gesetzt werden, wenn der Pfad Null ist"},
-
- /** Fragment contains invalid character */
- //public static final int ER_FRAG_INVALID_CHAR = 191;
-
- {
- ER_FRAG_INVALID_CHAR,
- "Fragment enth\u00e4lt ung\u00fcltiges Zeichen"},
-
-
-
- /** Parser is already in use */
- //public static final int ER_PARSER_IN_USE = 192;
-
- {
- ER_PARSER_IN_USE,
- "Parser wird bereits verwendet"},
-
- /** Parser is already in use */
- //public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
-
- {
- ER_CANNOT_CHANGE_WHILE_PARSING,
- "{0} {1} kann beim Parsen nicht ge\u00e4ndert werden"},
-
- /** Self-causation not permitted */
- //public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
-
- {
- ER_SELF_CAUSATION_NOT_PERMITTED,
- "Selbst-Kausalit\u00e4t nicht erlaubt"},
-
/* This key/message changed ,NEED ER_COULD_NOT_FIND_EXTERN_SCRIPT:
Pending,Ramesh */
/** src attribute not yet supported for */
//public static final int ER_SRC_ATTRIB_NOT_SUPPORTED = 195;
@@ -1477,42 +1203,7 @@
{
ER_OUTPUT_PROPERTY_NOT_RECOGNIZED,
"Ausgabe-Eigenschaft nicht erkannt: {0}"},
-
- /** Userinfo may not be specified if host is not specified */
- //public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
-
- {
- ER_NO_USERINFO_IF_NO_HOST,
- "Userinfo kann nicht angegeben werden, wenn Host nicht angegeben
ist"},
-
- /** Port may not be specified if host is not specified */
- //public static final int ER_NO_PORT_IF_NO_HOST = 199;
-
- {
- ER_NO_PORT_IF_NO_HOST,
- "Port kann nicht angegeben werden, wenn Host nicht angegeben ist"},
-
- /** Query string cannot be specified in path and query string */
- //public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
-
- {
- ER_NO_QUERY_STRING_IN_PATH,
- "Abfragezeichenkette kann nicht sowohl im Pfad als auch in der
Abfragezeichenkette angegeben werden"},
-
- /** Fragment cannot be specified in both the path and fragment */
- //public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
-
- {
- ER_NO_FRAGMENT_STRING_IN_PATH,
- "Fragment kann nicht sowohl im Pfad als auch im Fragment angegeben
werden"},
-
- /** Cannot initialize URI with empty parameters */
- //public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
-
- {
- ER_CANNOT_INIT_URI_EMPTY_PARMS,
- "URI kann nicht mit leeren Parametern initialisiert werden"},
-
+
/** Failed creating ElemLiteralResult instance */
//public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
@@ -1567,13 +1258,6 @@
ER_ATTR_NOT_ALLOWED,
"\"{0}\" Attribut ist nicht erlaubt f\u00fcr Element {1}!"},
- /** Method not yet supported */
- //public static final int ER_METHOD_NOT_SUPPORTED = 210;
-
- {
- ER_METHOD_NOT_SUPPORTED,
- "Methode noch nicht unterst\u00fctzt "},
-
/** Bad value */
//public static final int ER_BAD_VALUE = 211;
@@ -1595,21 +1279,7 @@
ER_ATTRIB_VALUE_NOT_RECOGNIZED,
"{0} Attributwert nicht erkannt "},
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
-
- {
- ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
- "IncrementalSAXSource_Filter kann zurzeit nicht neu gestartet werden"},
-
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
-
- {
- ER_XMLRDR_NOT_BEFORE_STARTPARSE,
- "XMLReader nicht vor startParse-Anforderung"},
-
- /** Attempting to generate a namespace prefix with a null URI */
+ /** Attempting to generate a namespace prefix with a null URI */
//public static final int ER_NULL_URI_NAMESPACE = 216;
{
@@ -1748,18 +1418,6 @@
ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR,
"Programmierannahme in RundundentExprEliminator: {0}"},
-// Axis traverser not supported: {0}
- //public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
- {
- ER_AXIS_TRAVERSER_NOT_SUPPORTED,
- "Achsen-Traverser nicht unterst\u00fctzt: {0}"},
-
-// ListingErrorHandler created with null PrintWriter!
- //public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER =
236;
- {
- ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
- "ListingErrorHandler wurde mit Null-PrintWriter erstellt!"},
-
// {0}is not allowed in this position in the stylesheet!
//public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
{
@@ -1779,17 +1437,6 @@
{
INVALID_TCHAR,
"Ung\u00fcltiger Wert: {1} wurde f\u00fcr das CHAR-Attribut {0}
verwendet. Ein Attribut vom Typ CHAR darf nur ein Zeichen aufweisen!"},
-
- //public static final int ER_SYSTEMID_UNKNOWN = 240;
- {
- ER_SYSTEMID_UNKNOWN,
- "Unbekannte SystemId"},
-
- // Location of error unknown
- //public static final int ER_LOCATION_UNKNOWN = 241;
- {
- ER_LOCATION_UNKNOWN,
- "Fehler befindet sich an unbekannter Stelle"},
// Note to translators: The following message is used if the value of
// an attribute in a stylesheet is invalid. "QNAME" is the XML
data-type of
1.2.2.1 +3 -355
xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_es.java
Index: XSLTErrorResources_es.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_es.java,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -u -r1.2 -r1.2.2.1
--- XSLTErrorResources_es.java 10 Jan 2003 02:02:00 -0000 1.2
+++ XSLTErrorResources_es.java 23 Jan 2003 16:12:49 -0000 1.2.2.1
@@ -82,7 +82,7 @@
{
/** Maximum error messages, this is needed to keep track of the number of
messages. */
- public static final int MAX_CODE = 253;
+ public static final int MAX_CODE = 201;
/** Maximum warnings, this is needed to keep track of the number of
warnings. */
public static final int MAX_WARNING = 29;
@@ -637,12 +637,6 @@
{
ER_SAX_EXCEPTION, "Excepci\u00f3n SAX"},
- /** ER_FUNCTION_NOT_SUPPORTED */
- //public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
-
- {
- ER_FUNCTION_NOT_SUPPORTED, "Funci\u00f3n no admitida"},
-
/** ER_XSLT_ERROR */
//public static final int ER_XSLT_ERROR = 81;
@@ -878,14 +872,7 @@
{
ER_SOURCE_CANNOT_BE_NULL,
"InputSource no puede ser nulo"},
-
- /** Can't overwrite cause */
- //public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
-
- {
- ER_CANNOT_OVERWRITE_CAUSE,
- "No se puede sobrescribir la causa"},
-
+
/** Could not initialize BSF Manager */
//public static final int ER_CANNOT_INIT_BSFMGR = 116;
@@ -1171,153 +1158,13 @@
ER_NO_STYLESHEET_PI,
"No se ha encontrado xml-stylesheet PI en: {0}"},
- /** No default implementation found */
- //public static final int ER_NO_DEFAULT_IMPL = 156;
-
- {
- ER_NO_DEFAULT_IMPL,
- "No se ha encontrado ninguna implementaci\u00f3n predeterminada "},
-
- /** ChunkedIntArray({0}) not currently supported */
- //public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
-
- {
- ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
- "ChunkedIntArray({0}) no se utiliza actualmente"},
-
- /** Offset bigger than slot */
- //public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
-
- {
- ER_OFFSET_BIGGER_THAN_SLOT,
- "La desviaci\u00f3n es mayor que el intervalo"},
-
- /** Coroutine not available, id= */
- //public static final int ER_COROUTINE_NOT_AVAIL = 159;
-
- {
- ER_COROUTINE_NOT_AVAIL,
- "Corrutina no disponible, id={0}"},
-
- /** CoroutineManager recieved co_exit() request */
- //public static final int ER_COROUTINE_CO_EXIT = 160;
-
- {
- ER_COROUTINE_CO_EXIT,
- "CoroutineManager ha recibido una solicitud co_exit()"},
-
- /** co_joinCoroutineSet() failed */
- //public static final int ER_COJOINROUTINESET_FAILED = 161;
-
- {
- ER_COJOINROUTINESET_FAILED,
- "Fallo co_joinCoroutineSet()"},
-
- /** Coroutine parameter error () */
- //public static final int ER_COROUTINE_PARAM = 162;
-
- {
- ER_COROUTINE_PARAM,
- "Error de par\u00e1metro de corrutina({0})"},
-
- /** UNEXPECTED: Parser doTerminate answers */
- //public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
-
- {
- ER_PARSER_DOTERMINATE_ANSWERS,
- "\nUNEXPECTED: el analizador sint\u00e1ctico doTerminate responde
{0}"},
-
- /** parse may not be called while parsing */
- //public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
-
- {
- ER_NO_PARSE_CALL_WHILE_PARSING,
- "no puede invocarse el analizador sint\u00e1ctico con un
an\u00e1lisis sint\u00e1ctico en curso"},
-
- /** Error: typed iterator for axis {0} not implemented */
- //public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
-
- {
- ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "Error: El iterador introducido para el eje {0} no est\u00e1
implementado"},
-
- /** Error: iterator for axis {0} not implemented */
- //public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
-
- {
- ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "Error: el iterador para el eje {0} no est\u00e1 implementado "},
-
- /** Iterator clone not supported */
- //public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
-
- {
- ER_ITERATOR_CLONE_NOT_SUPPORTED,
- "no se admite clon del iterador"},
-
- /** Unknown axis traversal type */
- //public static final int ER_UNKNOWN_AXIS_TYPE = 168;
-
- {
- ER_UNKNOWN_AXIS_TYPE,
- "El tipo de eje transversal es desconocido: {0}"},
-
- /** Axis traverser not supported */
- //public static final int ER_AXIS_NOT_SUPPORTED = 169;
-
- {
- ER_AXIS_NOT_SUPPORTED,
- "No se admite traverser de eje: {0}"},
-
- /** No more DTM IDs are available */
- //public static final int ER_NO_DTMIDS_AVAIL = 170;
-
- {
- ER_NO_DTMIDS_AVAIL,
- "No hay m\u00e1s Id de DTM disponibles"},
-
/** Not supported */
//public static final int ER_NOT_SUPPORTED = 171;
{
ER_NOT_SUPPORTED,
"No se admite: {0}"},
-
- /** node must be non-null for getDTMHandleFromNode */
- //public static final int ER_NODE_NON_NULL = 172;
-
- {
- ER_NODE_NON_NULL,
- "El nodo no puede ser nulo para getDTMHandleFromNode"},
-
- /** Could not resolve the node to a handle */
- //public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
-
- {
- ER_COULD_NOT_RESOLVE_NODE,
- "No se ha podido convertir el nodo en un manejador"},
-
- /** startParse may not be called while parsing */
- //public static final int ER_STARTPARSE_WHILE_PARSING = 174;
-
- {
- ER_STARTPARSE_WHILE_PARSING,
- "no se puede invocar startParse con un an\u00e1lisis sint\u00e1ctico
en curso"},
-
- /** startParse needs a non-null SAXParser */
- //public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
-
- {
- ER_STARTPARSE_NEEDS_SAXPARSER,
- "startParse no admite SAXParser nulo"},
-
- /** could not initialize parser with */
- //public static final int ER_COULD_NOT_INIT_PARSER = 176;
-
- {
- ER_COULD_NOT_INIT_PARSER,
- "No se ha podido inicializar el analizador sint\u00e1ctico con"},
-
+
/** Value for property {0} should be a Boolean instance */
//public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
@@ -1325,127 +1172,6 @@
ER_PROPERTY_VALUE_BOOLEAN,
"El valor de propiedad {0} debe ser una instancia booleana"},
- /** exception creating new instance for pool */
- //public static final int ER_EXCEPTION_CREATING_POOL = 178;
-
- {
- ER_EXCEPTION_CREATING_POOL,
- "se ha producido una excepci\u00f3n al crear una nueva instancia para
pool"},
-
- /** Path contains invalid escape sequence */
- //public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
-
- {
- ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
- "El trayecto contiene una secuencia de escape no v\u00e1lida"},
-
- /** Scheme is required. */
- //public static final int ER_SCHEME_REQUIRED = 180;
-
- {
- ER_SCHEME_REQUIRED,
- "Se necesita un esquema."},
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_IN_URI = 181;
-
- {
- ER_NO_SCHEME_IN_URI,
- "No se ha encontrado ning\u00fan esquema en el URI: {0}"},
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_INURI = 182;
-
- {
- ER_NO_SCHEME_INURI,
- "No se ha encontrado ning\u00fan esquema en el URI"},
-
- /** Path contains invalid character: */
- //public static final int ER_PATH_INVALID_CHAR = 183;
-
- {
- ER_PATH_INVALID_CHAR,
- "El trayecto contiene un car\u00e1cter no v\u00e1lido: {0}"},
-
- /** Cannot set scheme from null string */
- //public static final int ER_SCHEME_FROM_NULL_STRING = 184;
-
- {
- ER_SCHEME_FROM_NULL_STRING,
- "No se puede establecer un esquema a partir de una cadena nula"},
-
- /** The scheme is not conformant. */
- //public static final int ER_SCHEME_NOT_CONFORMANT = 185;
-
- {
- ER_SCHEME_NOT_CONFORMANT,
- "El esquema no es aceptable."},
-
- /** Host is not a well formed address */
- //public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
-
- {
- ER_HOST_ADDRESS_NOT_WELLFORMED,
- "El sistema central no es una direcci\u00f3n bien construida"},
-
- /** Port cannot be set when host is null */
- //public static final int ER_PORT_WHEN_HOST_NULL = 187;
-
- {
- ER_PORT_WHEN_HOST_NULL,
- "No puede establecerse el puerto cuando el sistema central es nulo"},
-
- /** Invalid port number */
- //public static final int ER_INVALID_PORT = 188;
-
- {
- ER_INVALID_PORT,
- "N\u00famero de puerto no v\u00e1lido"},
-
- /** Fragment can only be set for a generic URI */
- //public static final int ER_FRAG_FOR_GENERIC_URI = 189;
-
- {
- ER_FRAG_FOR_GENERIC_URI,
- "S\u00f3lo puede establecerse el fragmento para un URI
gen\u00e9rico"},
-
- /** Fragment cannot be set when path is null */
- //public static final int ER_FRAG_WHEN_PATH_NULL = 190;
-
- {
- ER_FRAG_WHEN_PATH_NULL,
- "No puede establecerse el fragmento cuando el trayecto es nulo"},
-
- /** Fragment contains invalid character */
- //public static final int ER_FRAG_INVALID_CHAR = 191;
-
- {
- ER_FRAG_INVALID_CHAR,
- "El fragmento contiene un car\u00e1cter no v\u00e1lido"},
-
-
-
- /** Parser is already in use */
- //public static final int ER_PARSER_IN_USE = 192;
-
- {
- ER_PARSER_IN_USE,
- "El analizador sint\u00e1ctico est\u00e1 en uso"},
-
- /** Parser is already in use */
- //public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
-
- {
- ER_CANNOT_CHANGE_WHILE_PARSING,
- "No se puede cambiar {0} {1} mientras el an\u00e1lisis
sint\u00e1ctico est\u00e1 en curso"},
-
- /** Self-causation not permitted */
- //public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
-
- {
- ER_SELF_CAUSATION_NOT_PERMITTED,
- "No se permite la autocausalidad"},
-
/* This key/message changed ,NEED ER_COULD_NOT_FIND_EXTERN_SCRIPT:
Pending,Ra
mesh */
/** src attribute not yet supported for */
@@ -1469,41 +1195,6 @@
ER_OUTPUT_PROPERTY_NOT_RECOGNIZED,
"Propiedad de salida no reconocida: {0}"},
- /** Userinfo may not be specified if host is not specified */
- //public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
-
- {
- ER_NO_USERINFO_IF_NO_HOST,
- "La informaci\u00f3n de usuario no puede especificarse si no se
especifica el sistema central"},
-
- /** Port may not be specified if host is not specified */
- //public static final int ER_NO_PORT_IF_NO_HOST = 199;
-
- {
- ER_NO_PORT_IF_NO_HOST,
- "El puerto no puede especificarse si no est\u00e1 especificado el
sistema central"},
-
- /** Query string cannot be specified in path and query string */
- //public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
-
- {
- ER_NO_QUERY_STRING_IN_PATH,
- "La cadena de consulta no puede especificarse a la vez en el
trayecto y en la cadena de consulta"},
-
- /** Fragment cannot be specified in both the path and fragment */
- //public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
-
- {
- ER_NO_FRAGMENT_STRING_IN_PATH,
- "El fragmento no puede especificarse a la vez en el trayecto y en el
fragmento"},
-
- /** Cannot initialize URI with empty parameters */
- //public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
-
- {
- ER_CANNOT_INIT_URI_EMPTY_PARMS,
- "No se puede inicializar el URI con par\u00e1metros vac\u00edos"},
-
/** Failed creating ElemLiteralResult instance */
//public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
@@ -1558,13 +1249,6 @@
{
ER_ATTR_NOT_ALLOWED,
"el atributo \"{0}\" no se permite en el elemento {1}."},
-
- /** Method not yet supported */
- //public static final int ER_METHOD_NOT_SUPPORTED = 210;
-
- {
- ER_METHOD_NOT_SUPPORTED,
- "M\u00e9todo todav\u00eda no utilizado"},
/** Bad value */
//public static final int ER_BAD_VALUE = 211;
@@ -1587,19 +1271,6 @@
ER_ATTRIB_VALUE_NOT_RECOGNIZED,
"no se reconoce el valor del atributo {0}"},
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
-
- {
- ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
- "IncrementalSAXSource_Filter no puede reiniciarse actualmente"},
-
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
-
- {
- ER_XMLRDR_NOT_BEFORE_STARTPARSE,
- "XMLReader no antes de una solicitud startParse"},
/** Attempting to generate a namespace prefix with a null URI */
//public static final int ER_NULL_URI_NAMESPACE = 216;
@@ -1739,18 +1410,6 @@
ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR,
"Confirmaci\u00f3n del programador en RundundentExprEliminator: {0}"},
- // Axis traverser not supported: {0}
- //public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
- {
- ER_AXIS_TRAVERSER_NOT_SUPPORTED,
- "No se admite el eje transversal: {0}"},
-
- // ListingErrorHandler created with null PrintWriter!
- //public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER =
236;
- {
- ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
- "ListingErrorHandler creado con PrintWriter nulo"},
-
// {0}is not allowed in this position in the stylesheet!
//public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
{
@@ -1770,17 +1429,6 @@
{
INVALID_TCHAR,
"Valor no v\u00e1lido: {1} utilizado para el atributo CHAR: {0}. Un
atributo de tipo CHAR debe tener 1 solo car\u00e1cter"},
-
- //public static final int ER_SYSTEMID_UNKNOWN = 240;
- {
- ER_SYSTEMID_UNKNOWN,
- "Id de sistema desconocido"},
-
- // Location of error unknown
- //public static final int ER_LOCATION_UNKNOWN = 241;
- {
- ER_LOCATION_UNKNOWN,
- "Ubicaci\u00f3n del error desconocida"},
// Note to translators: The following message is used if the value of
// an attribute in a stylesheet is invalid. "QNAME" is the XML
data-type of
1.2.2.1 +1 -354
xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_fr.java
Index: XSLTErrorResources_fr.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_fr.java,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -u -r1.2 -r1.2.2.1
--- XSLTErrorResources_fr.java 10 Jan 2003 02:02:01 -0000 1.2
+++ XSLTErrorResources_fr.java 23 Jan 2003 16:12:50 -0000 1.2.2.1
@@ -83,7 +83,7 @@
{
/** Maximum error messages, this is needed to keep track of the number of
messages. */
- public static final int MAX_CODE = 253;
+ public static final int MAX_CODE = 201;
/** Maximum warnings, this is needed to keep track of the number of
warnings. */
public static final int MAX_WARNING = 29;
@@ -634,12 +634,6 @@
{
ER_SAX_EXCEPTION, "Exception SAX"},
- /** ER_FUNCTION_NOT_SUPPORTED */
- //public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
-
- {
- ER_FUNCTION_NOT_SUPPORTED, "Fonction non prise en charge !"},
-
/** ER_XSLT_ERROR */
//public static final int ER_XSLT_ERROR = 81;
@@ -874,13 +868,6 @@
ER_SOURCE_CANNOT_BE_NULL,
"InputSource ne peut pas \u00eatre vide"},
- /** Can't overwrite cause */
- //public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
-
- {
- ER_CANNOT_OVERWRITE_CAUSE,
- "Impossible d\u2019\u00e9craser la cause"},
-
/** Could not initialize BSF Manager */
//public static final int ER_CANNOT_INIT_BSFMGR = 116;
@@ -1163,111 +1150,6 @@
ER_NO_STYLESHEET_PI,
"Aucun xml-stylesheet PI trouv\u00e9 dans : {0}"},
- /** No default implementation found */
- //public static final int ER_NO_DEFAULT_IMPL = 156;
-
- {
- ER_NO_DEFAULT_IMPL,
- "Aucune mise en \u0153uvre par d\u00e9faut trouv\u00e9e"},
-
- /** ChunkedIntArray({0}) not currently supported */
- //public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
-
- {
- ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
- "ChunkedIntArray({0}) non pris en charge pour le moment"},
-
- /** Offset bigger than slot */
- //public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
-
- {
- ER_OFFSET_BIGGER_THAN_SLOT,
- "Impression plus importante que l\u2019emplacement"},
-
- /** Coroutine not available, id= */
- //public static final int ER_COROUTINE_NOT_AVAIL = 159;
-
- {
- ER_COROUTINE_NOT_AVAIL,
- "Coroutine indisponible, id={0}"},
-
- /** CoroutineManager recieved co_exit() request */
- //public static final int ER_COROUTINE_CO_EXIT = 160;
-
- {
- ER_COROUTINE_CO_EXIT,
- "CoroutineManager a re\u00e7u une requ\u00eate co_exit()"},
-
- /** co_joinCoroutineSet() failed */
- //public static final int ER_COJOINROUTINESET_FAILED = 161;
-
- {
- ER_COJOINROUTINESET_FAILED,
- "Echec de co_joinCoroutineSet()"},
-
- /** Coroutine parameter error () */
- //public static final int ER_COROUTINE_PARAM = 162;
-
- {
- ER_COROUTINE_PARAM,
- "Erreur de param\u00e8tre Coroutine ({0})"},
-
- /** UNEXPECTED: Parser doTerminate answers */
- //public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
-
- {
- ER_PARSER_DOTERMINATE_ANSWERS,
- "\nUNEXPECTED: R\u00e9ponses de Parser doTerminate {0}"},
-
- /** parse may not be called while parsing */
- //public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
-
- {
- ER_NO_PARSE_CALL_WHILE_PARSING,
- "parse ne peut pas \u00eatre appel\u00e9 pendant
l\u2019op\u00e9ration d\u2019analyse"},
-
- /** Error: typed iterator for axis {0} not implemented */
- //public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
-
- {
- ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "Erreur : l\u2019it\u00e9rateur saisi pour l\u2019axe {0} n\u2019est
pas mis en oeuvre"},
-
- /** Error: iterator for axis {0} not implemented */
- //public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
-
- {
- ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "Erreur : l\u2019it\u00e9rateur pour l\u2019axe {0} n\u2019est pas
mis en oeuvre "},
-
- /** Iterator clone not supported */
- //public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
-
- {
- ER_ITERATOR_CLONE_NOT_SUPPORTED,
- "Clone d\u2019it\u00e9rateur non pris en charge"},
-
- /** Unknown axis traversal type */
- //public static final int ER_UNKNOWN_AXIS_TYPE = 168;
-
- {
- ER_UNKNOWN_AXIS_TYPE,
- "Type d\u2019axe transversal inconnu : {0}"},
-
- /** Axis traverser not supported */
- //public static final int ER_AXIS_NOT_SUPPORTED = 169;
-
- {
- ER_AXIS_NOT_SUPPORTED,
- "Axe transversal non pris en charge : {0}"},
-
- /** No more DTM IDs are available */
- //public static final int ER_NO_DTMIDS_AVAIL = 170;
-
- {
- ER_NO_DTMIDS_AVAIL,
- "Aucun ID DTM disponible"},
-
/** Not supported */
//public static final int ER_NOT_SUPPORTED = 171;
@@ -1275,41 +1157,6 @@
ER_NOT_SUPPORTED,
"Non pris en charge : {0}"},
- /** node must be non-null for getDTMHandleFromNode */
- //public static final int ER_NODE_NON_NULL = 172;
-
- {
- ER_NODE_NON_NULL,
- "Le n\u0153ud ne doit pas \u00eatre vide pour getDTMHandleFromNode"},
-
- /** Could not resolve the node to a handle */
- //public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
-
- {
- ER_COULD_NOT_RESOLVE_NODE,
- "Impossible de r\u00e9soudre le noeud en descripteur"},
-
- /** startParse may not be called while parsing */
- //public static final int ER_STARTPARSE_WHILE_PARSING = 174;
-
- {
- ER_STARTPARSE_WHILE_PARSING,
- "startParse ne peut pas \u00eatre appel\u00e9 pendant
l\u2019analyse"},
-
- /** startParse needs a non-null SAXParser */
- //public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
-
- {
- ER_STARTPARSE_NEEDS_SAXPARSER,
- "startParse requiert un SAXParser non vide"},
-
- /** could not initialize parser with */
- //public static final int ER_COULD_NOT_INIT_PARSER = 176;
-
- {
- ER_COULD_NOT_INIT_PARSER,
- "Impossible d\u2019initialiser l\u2019analyseur avec"},
-
/** Value for property {0} should be a Boolean instance */
//public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
@@ -1317,127 +1164,6 @@
ER_PROPERTY_VALUE_BOOLEAN,
"La valeur pour la propri\u00e9t\u00e9 {0} doit \u00eatre une
instance bool\u00e9enne"},
- /** exception creating new instance for pool */
- //public static final int ER_EXCEPTION_CREATING_POOL = 178;
-
- {
- ER_EXCEPTION_CREATING_POOL,
- "Exception\u00a0de cr\u00e9ation d\u2019une nouvelle instance pour le
pool"},
-
- /** Path contains invalid escape sequence */
- //public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
-
- {
- ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
- "Le chemin contient une s\u00e9quence de remplacement incorrecte"},
-
- /** Scheme is required! */
- //public static final int ER_SCHEME_REQUIRED = 180;
-
- {
- ER_SCHEME_REQUIRED,
- "Le mod\u00e8le est requis !"},
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_IN_URI = 181;
-
- {
- ER_NO_SCHEME_IN_URI,
- "Aucun mod\u00e8le trouv\u00e9 dans l\u2019URI : {0}"},
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_INURI = 182;
-
- {
- ER_NO_SCHEME_INURI,
- "Aucun mod\u00e8le trouv\u00e9 dans l\u2019URI"},
-
- /** Path contains invalid character: */
- //public static final int ER_PATH_INVALID_CHAR = 183;
-
- {
- ER_PATH_INVALID_CHAR,
- "Le chemin contient des caract\u00e8res incorrects : {0}"},
-
- /** Cannot set scheme from null string */
- //public static final int ER_SCHEME_FROM_NULL_STRING = 184;
-
- {
- ER_SCHEME_FROM_NULL_STRING,
- "Impossible de d\u00e9finir le mod\u00e8le \u00e0 partir d\u2019une
cha\u00eene vide"},
-
- /** The scheme is not conformant. */
- //public static final int ER_SCHEME_NOT_CONFORMANT = 185;
-
- {
- ER_SCHEME_NOT_CONFORMANT,
- "Le mod\u00e8le n\u2019est pas conforme."},
-
- /** Host is not a well formed address */
- //public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
-
- {
- ER_HOST_ADDRESS_NOT_WELLFORMED,
- "L\u2019h\u00f4te n\u2019est pas constitu\u00e9 d\u2019une adresse
bien form\u00e9e"},
-
- /** Port cannot be set when host is null */
- //public static final int ER_PORT_WHEN_HOST_NULL = 187;
-
- {
- ER_PORT_WHEN_HOST_NULL,
- "Le port ne peut pas \u00eatre d\u00e9fini lorsque l\u2019h\u00f4te
est vide"},
-
- /** Invalid port number */
- //public static final int ER_INVALID_PORT = 188;
-
- {
- ER_INVALID_PORT,
- "Num\u00e9ro de port incorrect"},
-
- /** Fragment can only be set for a generic URI */
- //public static final int ER_FRAG_FOR_GENERIC_URI = 189;
-
- {
- ER_FRAG_FOR_GENERIC_URI,
- "Le fragment ne peut \u00eatre d\u00e9fini que pour un URI
g\u00e9n\u00e9rique"},
-
- /** Fragment cannot be set when path is null */
- //public static final int ER_FRAG_WHEN_PATH_NULL = 190;
-
- {
- ER_FRAG_WHEN_PATH_NULL,
- "Le fragment ne peut pas \u00eatre d\u00e9fini lorsque le chemin est
vide"},
-
- /** Fragment contains invalid character */
- //public static final int ER_FRAG_INVALID_CHAR = 191;
-
- {
- ER_FRAG_INVALID_CHAR,
- "Le fragment contient des caract\u00e8res incorrects"},
-
-
-
- /** Parser is already in use */
- //public static final int ER_PARSER_IN_USE = 192;
-
- {
- ER_PARSER_IN_USE,
- "L\u2019analyseur est d\u00e9j\u00e0 en cours d\u2019utilisation"},
-
- /** Parser is already in use */
- //public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
-
- {
- ER_CANNOT_CHANGE_WHILE_PARSING,
- "Impossible de modifier {0} {1} pendant la phase d\u2019analyse"},
-
- /** Self-causation not permitted */
- //public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
-
- {
- ER_SELF_CAUSATION_NOT_PERMITTED,
- "Lien de causalit\u00e9 vers soi impossible"},
-
/* This key/message changed ,NEED ER_COULD_NOT_FIND_EXTERN_SCRIPT:
Pending,Ramesh */
/** src attribute not yet supported for */
@@ -1461,41 +1187,6 @@
ER_OUTPUT_PROPERTY_NOT_RECOGNIZED,
"La propri\u00e9t\u00e9 de sortie n\u2019a pas \u00e9t\u00e9
reconnue : {0}"},
- /** Userinfo may not be specified if host is not specified */
- //public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
-
- {
- ER_NO_USERINFO_IF_NO_HOST,
- "Les informations sur l'utilisateur ne peuvent pas \u00eatre
sp\u00e9cifi\u00e9es si l\u2019h\u00f4te n\u2019est pas sp\u00e9cifi\u00e9"},
-
- /** Port may not be specified if host is not specified */
- //public static final int ER_NO_PORT_IF_NO_HOST = 199;
-
- {
- ER_NO_PORT_IF_NO_HOST,
- "Le port ne peut pas \u00eatre sp\u00e9cifi\u00e9 si
l\u2019h\u00f4te n\u2019est pas sp\u00e9cifi\u00e9"},
-
- /** Query string cannot be specified in path and query string */
- //public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
-
- {
- ER_NO_QUERY_STRING_IN_PATH,
- "La cha\u00eene de requ\u00eate ne peut pas \u00eatre
sp\u00e9cifi\u00e9e dans le chemin et dans la cha\u00eene de requ\u00eate"},
-
- /** Fragment cannot be specified in both the path and fragment */
- //public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
-
- {
- ER_NO_FRAGMENT_STRING_IN_PATH,
- "Le fragment ne peut pas \u00eatre sp\u00e9cifi\u00e9 dans le chemin
et dans le fragment"},
-
- /** Cannot initialize URI with empty parameters */
- //public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
-
- {
- ER_CANNOT_INIT_URI_EMPTY_PARMS,
- "Impossible d\u2019initialiser l\u2019URI avec des param\u00e8tres
vides"},
-
/** Failed creating ElemLiteralResult instance */
//public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
@@ -1549,13 +1240,6 @@
{
ER_ATTR_NOT_ALLOWED,
"L\u2019attribut \"{0}\" n\u2019est pas admis dans
l\u2019\u00e9l\u00e9ment {1} !"},
-
- /** Method not yet supported */
- //public static final int ER_METHOD_NOT_SUPPORTED = 210;
-
- {
- ER_METHOD_NOT_SUPPORTED,
- "M\u00e9thode non prise en charge pour le moment"},
/** Bad value */
//public static final int ER_BAD_VALUE = 211;
@@ -1578,20 +1262,6 @@
ER_ATTRIB_VALUE_NOT_RECOGNIZED,
"Valeur de l\u2019attribut {0} non reconnue"},
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
-
- {
- ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
- "IncrementalSAXSource_Filter ne peut pas \u00eatre relanc\u00e9 pour le
moment"},
-
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
-
- {
- ER_XMLRDR_NOT_BEFORE_STARTPARSE,
- "XMLReader pas avant la requ\u00eate startParse"},
-
/** Attempting to generate a namespace prefix with a null URI */
//public static final int ER_NULL_URI_NAMESPACE = 216;
@@ -1731,18 +1401,6 @@
ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR,
"Assertion du programmeur dans RundundentExprEliminator : {0}"},
- // Axis traverser not supported: {0}
- //public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
- {
- ER_AXIS_TRAVERSER_NOT_SUPPORTED,
- "La coupure d'axe n'est pas prise en charge : {0}"},
-
- // ListingErrorHandler created with null PrintWriter!
- //public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER =
236;
- {
- ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
- "ListingErrorHandler a \u00e9t\u00e9 cr\u00e9\u00e9 avec PrintWriter
nul !"},
-
// {0}is not allowed in this position in the stylesheet!
//public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
{
@@ -1762,17 +1420,6 @@
{
INVALID_TCHAR,
"Valeur incorrecte : {1} est utilis\u00e9 pour l'attribut CHAR : {0}.
Un attribut de type CHAR doit \u00eatre compos\u00e9 d'un seul caract\u00e8re
!"},
-
- //public static final int ER_SYSTEMID_UNKNOWN = 240;
- {
- ER_SYSTEMID_UNKNOWN,
- "SystemId inconnu"},
-
- // Location of error unknown
- //public static final int ER_LOCATION_UNKNOWN = 241;
- {
- ER_LOCATION_UNKNOWN,
- "Emplacement de l'erreur inconnu"},
// Note to translators: The following message is used if the value of
// an attribute in a stylesheet is invalid. "QNAME" is the XML
data-type of
1.2.2.1 +1 -457
xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_it.java
Index: XSLTErrorResources_it.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_it.java,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -u -r1.2 -r1.2.2.1
--- XSLTErrorResources_it.java 10 Jan 2003 02:02:01 -0000 1.2
+++ XSLTErrorResources_it.java 23 Jan 2003 16:12:50 -0000 1.2.2.1
@@ -81,7 +81,7 @@
{
/** Maximum error messages, this is needed to keep track of the number of
messages. */
- public static final int MAX_CODE = 253;
+ public static final int MAX_CODE = 201;
/** Maximum warnings, this is needed to keep track of the number of
warnings. */
public static final int MAX_WARNING = 29;
@@ -793,14 +793,6 @@
ER_SAX_EXCEPTION, "Eccezione SAX"},
- /** ER_FUNCTION_NOT_SUPPORTED */
- //public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
-
-
- {
- ER_FUNCTION_NOT_SUPPORTED, "Funzione non supportata"},
-
-
/** ER_XSLT_ERROR */
//public static final int ER_XSLT_ERROR = 81;
@@ -1103,15 +1095,6 @@
"InputSource non pu\u00f2 essere nullo."},
- /** Can't overwrite cause */
- //public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
-
-
- {
- ER_CANNOT_OVERWRITE_CAUSE,
- "Impossibile sovrascrivere la causa."},
-
-
/** Could not initialize BSF Manager */
//public static final int ER_CANNOT_INIT_BSFMGR = 116;
@@ -1474,141 +1457,6 @@
"Nessun xml-stylesheet PI trovato in : {0}"},
- /** No default implementation found */
- //public static final int ER_NO_DEFAULT_IMPL = 156;
-
-
- {
- ER_NO_DEFAULT_IMPL,
- "Non \u00e8 stata trovata alcuna implementazione predefinita "},
-
-
- /** ChunkedIntArray({0}) not currently supported */
- //public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
-
-
- {
- ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
- "ChunkedIntArray({0}) non \u00e8 correntemente supportato."},
-
-
- /** Offset bigger than slot */
- //public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
-
-
- {
- ER_OFFSET_BIGGER_THAN_SLOT,
- "L'offset \u00e8 maggiore dello slot."},
-
-
- /** Coroutine not available, id= */
- //public static final int ER_COROUTINE_NOT_AVAIL = 159;
-
-
- {
- ER_COROUTINE_NOT_AVAIL,
- "Coroutine non disponibile, id={0}"},
-
-
- /** CoroutineManager recieved co_exit() request */
- //public static final int ER_COROUTINE_CO_EXIT = 160;
-
-
- {
- ER_COROUTINE_CO_EXIT,
- "CoroutineManager ha ricevuto una richiesta co_exit()."},
-
-
- /** co_joinCoroutineSet() failed */
- //public static final int ER_COJOINROUTINESET_FAILED = 161;
-
-
- {
- ER_COJOINROUTINESET_FAILED,
- "co_joinCoroutineSet() non riuscito."},
-
-
- /** Coroutine parameter error () */
- //public static final int ER_COROUTINE_PARAM = 162;
-
-
- {
- ER_COROUTINE_PARAM,
- "Errore del parametro di coroutine ({0})."},
-
-
- /** UNEXPECTED: Parser doTerminate answers */
- //public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
-
-
- {
- ER_PARSER_DOTERMINATE_ANSWERS,
- "\nUNEXPECTED: Risposte doTerminate del parser {0}"},
-
-
- /** parse may not be called while parsing */
- //public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
-
-
- {
- ER_NO_PARSE_CALL_WHILE_PARSING,
- "Impossibile chiamare l'analisi mentre \u00e8 in esecuzione."},
-
-
- /** Error: typed iterator for axis {0} not implemented */
- //public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
-
-
- {
- ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "Errore: tipo di iteratore per l'asse {0} non implementato."},
-
-
- /** Error: iterator for axis {0} not implemented */
- //public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
-
-
- {
- ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "Errore: l'iteratore per l'asse {0} non \u00e8 implementato. "},
-
-
- /** Iterator clone not supported */
- //public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
-
-
- {
- ER_ITERATOR_CLONE_NOT_SUPPORTED,
- "Il duplicato dell'iteratore non \u00e8 supportato."},
-
-
- /** Unknown axis traversal type */
- //public static final int ER_UNKNOWN_AXIS_TYPE = 168;
-
-
- {
- ER_UNKNOWN_AXIS_TYPE,
- "Tipo di asse trasversale sconosciuto : {0}."},
-
-
- /** Axis traverser not supported */
- //public static final int ER_AXIS_NOT_SUPPORTED = 169;
-
-
- {
- ER_AXIS_NOT_SUPPORTED,
- "Attraversatore dell'asse non supportato: {0}"},
-
-
- /** No more DTM IDs are available */
- //public static final int ER_NO_DTMIDS_AVAIL = 170;
-
-
- {
- ER_NO_DTMIDS_AVAIL,
- "Non sono pi\u00f9 disponibili ID DTM."},
-
-
/** Not supported */
//public static final int ER_NOT_SUPPORTED = 171;
@@ -1616,52 +1464,6 @@
{
ER_NOT_SUPPORTED,
"Non supportato: {0}"},
-
-
- /** node must be non-null for getDTMHandleFromNode */
- //public static final int ER_NODE_NON_NULL = 172;
-
-
- {
- ER_NODE_NON_NULL,
- "Il nodo deve essere non nullo per getDTMHandleFromNode."},
-
-
- /** Could not resolve the node to a handle */
- //public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
-
-
- {
- ER_COULD_NOT_RESOLVE_NODE,
- "Impossibile risolvere il nodo a un handle"},
-
-
- /** startParse may not be called while parsing */
- //public static final int ER_STARTPARSE_WHILE_PARSING = 174;
-
-
- {
- ER_STARTPARSE_WHILE_PARSING,
- "Impossibile chiamare startParse durante l'analisi."},
-
-
- /** startParse needs a non-null SAXParser */
- //public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
-
-
- {
- ER_STARTPARSE_NEEDS_SAXPARSER,
- "startParse richiede un SAXParser non nullo."},
-
-
- /** could not initialize parser with */
- //public static final int ER_COULD_NOT_INIT_PARSER = 176;
-
-
- {
- ER_COULD_NOT_INIT_PARSER,
- "Impossibile inizializzare il parser con"},
-
/** Value for property {0} should be a Boolean instance */
//public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
@@ -1672,161 +1474,6 @@
"Il valore della propriet\u00e0 {0} deve essere un'istanza booleana"},
- /** exception creating new instance for pool */
- //public static final int ER_EXCEPTION_CREATING_POOL = 178;
-
-
- {
- ER_EXCEPTION_CREATING_POOL,
- "l'eccezione crea una nuova istanza del pool"},
-
-
- /** Path contains invalid escape sequence */
- //public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
-
-
- {
- ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
- "Il percorso contiene una sequenza di escape non valida."},
-
-
- /** Scheme is required! */
- //public static final int ER_SCHEME_REQUIRED = 180;
-
-
- {
- ER_SCHEME_REQUIRED,
- "Lo schema \u00e8 necessario."},
-
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_IN_URI = 181;
-
-
- {
- ER_NO_SCHEME_IN_URI,
- "Nessuno schema trovato nell'URI: {0}"},
-
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_INURI = 182;
-
-
- {
- ER_NO_SCHEME_INURI,
- "Nessuno schema trovato nell'URI"},
-
-
- /** Path contains invalid character: */
- //public static final int ER_PATH_INVALID_CHAR = 183;
-
-
- {
- ER_PATH_INVALID_CHAR,
- "Il percorso contiene un carattere non valido: {0}"},
-
-
- /** Cannot set scheme from null string */
- //public static final int ER_SCHEME_FROM_NULL_STRING = 184;
-
-
- {
- ER_SCHEME_FROM_NULL_STRING,
- "Impossibile impostare lo schema da una stringa nulla."},
-
-
- /** The scheme is not conformant. */
- //public static final int ER_SCHEME_NOT_CONFORMANT = 185;
-
-
- {
- ER_SCHEME_NOT_CONFORMANT,
- "Lo schema non \u00e8 conforme."},
-
-
- /** Host is not a well formed address */
- //public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
-
-
- {
- ER_HOST_ADDRESS_NOT_WELLFORMED,
- "L'host non \u00e8 un indirizzo corretto."},
-
-
- /** Port cannot be set when host is null */
- //public static final int ER_PORT_WHEN_HOST_NULL = 187;
-
-
- {
- ER_PORT_WHEN_HOST_NULL,
- "Impossibile impostare la porta quando l'host \u00e8 nullo."},
-
-
- /** Invalid port number */
- //public static final int ER_INVALID_PORT = 188;
-
-
- {
- ER_INVALID_PORT,
- "Numero di porta non valido"},
-
-
- /** Fragment can only be set for a generic URI */
- //public static final int ER_FRAG_FOR_GENERIC_URI = 189;
-
-
- {
- ER_FRAG_FOR_GENERIC_URI,
- "\u00c8 possibile impostare il frammento solo per un URI generico."},
-
-
- /** Fragment cannot be set when path is null */
- //public static final int ER_FRAG_WHEN_PATH_NULL = 190;
-
-
- {
- ER_FRAG_WHEN_PATH_NULL,
- "Impossibile impostare il frammento quando il percorso \u00e8 nullo."},
-
-
- /** Fragment contains invalid character */
- //public static final int ER_FRAG_INVALID_CHAR = 191;
-
-
- {
- ER_FRAG_INVALID_CHAR,
- "Il frammento contiene un carattere non valido."},
-
-
-
-
- /** Parser is already in use */
- //public static final int ER_PARSER_IN_USE = 192;
-
-
- {
- ER_PARSER_IN_USE,
- "Il parser \u00e8 gi\u00e0 in uso."},
-
-
- /** Parser is already in use */
- //public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
-
-
- {
- ER_CANNOT_CHANGE_WHILE_PARSING,
- "Impossibile cambiare {0} {1} durante l'analisi."},
-
-
- /** Self-causation not permitted */
- //public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
-
-
- {
- ER_SELF_CAUSATION_NOT_PERMITTED,
- "Non \u00e8 consentito essere causa ed effetto contemporaneamente."},
-
-
/** src attribute not yet supported for */
//public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
@@ -1854,51 +1501,6 @@
"La propriet\u00e0 dell'output non \u00e8 riconosciuta: {0}"},
- /** Userinfo may not be specified if host is not specified */
- //public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
-
-
- {
- ER_NO_USERINFO_IF_NO_HOST,
- "Impossibile specificare Userinfo se non \u00e8 specificato l'host."},
-
-
- /** Port may not be specified if host is not specified */
- //public static final int ER_NO_PORT_IF_NO_HOST = 199;
-
-
- {
- ER_NO_PORT_IF_NO_HOST,
- "Impossibile specificare la porta se non \u00e8 specificato l'host."},
-
-
- /** Query string cannot be specified in path and query string */
- //public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
-
-
- {
- ER_NO_QUERY_STRING_IN_PATH,
- "La stringa di query non pu\u00f2 essere specificata nella stringa di
percorso e di query."},
-
-
- /** Fragment cannot be specified in both the path and fragment */
- //public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
-
-
- {
- ER_NO_FRAGMENT_STRING_IN_PATH,
- "Il frammento non pu\u00f2 essere specificato sia nel percorso sia
nel frammento."},
-
-
- /** Cannot initialize URI with empty parameters */
- //public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
-
-
- {
- ER_CANNOT_INIT_URI_EMPTY_PARMS,
- "Impossibile inizializzare l'URI con parametri vuoti."},
-
-
/** Failed creating ElemLiteralResult instance */
//public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
@@ -1966,15 +1568,6 @@
ER_ATTR_NOT_ALLOWED,
"\"{0}\": questo attributo non \u00e8 consentito sull'elemento {1}."},
-
- /** Method not yet supported */
- //public static final int ER_METHOD_NOT_SUPPORTED = 210;
-
-
- {
- ER_METHOD_NOT_SUPPORTED,
- "Metodo non ancora supportato. "},
-
/** Bad value */
//public static final int ER_BAD_VALUE = 211;
@@ -2002,24 +1595,6 @@
ER_ATTRIB_VALUE_NOT_RECOGNIZED,
"{0} valore dell'attributo non riconosciuto "},
-
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
-
-
- {
- ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
- "IncrementalSAXSource_Filter non correntemente riavviabile."},
-
-
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
-
-
- {
- ER_XMLRDR_NOT_BEFORE_STARTPARSE,
- "XMLReader non prima della richiesta startParse."},
-
/** Attempting to generate a namespace prefix with a null URI */
//public static final int ER_NULL_URI_NAMESPACE = 216;
@@ -2198,22 +1773,6 @@
"Affermazione del programmatore in RundundentExprEliminator: {0}"},
- // Axis traverser not supported: {0}
- //public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
-
- {
- ER_AXIS_TRAVERSER_NOT_SUPPORTED,
- "Secante asse non supportata: {0}"},
-
-
- // ListingErrorHandler created with null PrintWriter!
- //public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER =
236;
-
- {
- ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
- "ListingErrorHandler creato con PrintWriter nullo."},
-
-
// {0}is not allowed in this position in the stylesheet!
//public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
@@ -2238,21 +1797,6 @@
{
INVALID_TCHAR,
"Valore non consentito: {1} utilizzato per attributo CHAR: {0}.
L'attributo di tipo CHAR deve contenere 1 solo carattere."},
-
-
- //public static final int ER_SYSTEMID_UNKNOWN = 240;
-
- {
- ER_SYSTEMID_UNKNOWN,
- "ID sistema sconosciuto"},
-
-
- // Location of error unknown
- //public static final int ER_LOCATION_UNKNOWN = 241;
-
- {
- ER_LOCATION_UNKNOWN,
- "Ubicazione errore sconosciuta"},
// Note to translators: The following message is used if the value of
1.2.2.1 +1 -506
xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_ja.java
Index: XSLTErrorResources_ja.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_ja.java,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -u -r1.2 -r1.2.2.1
--- XSLTErrorResources_ja.java 10 Jan 2003 02:02:01 -0000 1.2
+++ XSLTErrorResources_ja.java 23 Jan 2003 16:12:50 -0000 1.2.2.1
@@ -82,7 +82,7 @@
{
/** Maximum error messages, this is needed to keep track of the number of
messages. */
- public static final int MAX_CODE = 253;
+ public static final int MAX_CODE = 201;
/** Maximum warnings, this is needed to keep track of the number of
warnings. */
public static final int MAX_WARNING = 29;
@@ -873,15 +873,6 @@
// ER_SAX_EXCEPTION, "SAX Exception"},
- /** ER_FUNCTION_NOT_SUPPORTED */
- //public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
-
-
- {
- ER_FUNCTION_NOT_SUPPORTED, "Function
\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093\u3002"},
-// ER_FUNCTION_NOT_SUPPORTED, "Function not supported!"},
-
-
/** ER_XSLT_ERROR */
//public static final int ER_XSLT_ERROR = 81;
@@ -1218,16 +1209,6 @@
// "InputSource cannot be null"},
- /** Can't overwrite cause */
- //public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
-
-
- {
- ER_CANNOT_OVERWRITE_CAUSE,
- "cause
\u3092\u4e0a\u66f8\u304d\u3067\u304d\u307e\u305b\u3093"},
-// "Cannot overwrite cause"},
-
-
/** Could not initialize BSF Manager */
//public static final int ER_CANNOT_INIT_BSFMGR = 116;
@@ -1630,156 +1611,6 @@
// "No xml-stylesheet PI found in: {0}"},
- /** No default implementation found */
- //public static final int ER_NO_DEFAULT_IMPL = 156;
-
-
- {
- ER_NO_DEFAULT_IMPL,
-
"\u30c7\u30d5\u30a9\u30eb\u30c8\u5b9f\u88c5\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093"},
-// "No default implementation found "},
-
-
- /** ChunkedIntArray({0}) not currently supported */
- //public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
-
-
- {
- ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
- "ChunkedIntArray({0})
\u306f\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
-// "ChunkedIntArray({0}) not currently supported"},
-
-
- /** Offset bigger than slot */
- //public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
-
-
- {
- ER_OFFSET_BIGGER_THAN_SLOT,
-
"\u30b9\u30ed\u30c3\u30c8\u3088\u308a\u3082\u5927\u304d\u3044\u30aa\u30d5\u30bb\u30c3\u30c8"},
-// "Offset bigger than slot"},
-
-
- /** Coroutine not available, id= */
- //public static final int ER_COROUTINE_NOT_AVAIL = 159;
-
-
- {
- ER_COROUTINE_NOT_AVAIL,
-
"\u30b3\u30eb\u30fc\u30c1\u30f3\u306f\u7121\u52b9\u3067\u3059\u3002id={0}"},
-// "Coroutine not available, id={0}"},
-
-
- /** CoroutineManager recieved co_exit() request */
- //public static final int ER_COROUTINE_CO_EXIT = 160;
-
-
- {
- ER_COROUTINE_CO_EXIT,
- "CoroutineManager \u306f co_exit()
\u8981\u6c42\u3092\u53d7\u3051\u53d6\u308a\u307e\u3057\u305f"},
-// "CoroutineManager received co_exit() request"},
-
-
- /** co_joinCoroutineSet() failed */
- //public static final int ER_COJOINROUTINESET_FAILED = 161;
-
-
- {
- ER_COJOINROUTINESET_FAILED,
- "co_joinCoroutineSet() \u306f\u5931\u6557\u3057\u307e\u3057\u305f"},
-// "co_joinCoroutineSet() failed"},
-
-
- /** Coroutine parameter error () */
- //public static final int ER_COROUTINE_PARAM = 162;
-
-
- {
- ER_COROUTINE_PARAM,
-
"\u30b3\u30eb\u30fc\u30c1\u30f3\u30d1\u30e9\u30e1\u30fc\u30bf\u30a8\u30e9\u30fc
({0})"},
-// "Coroutine parameter error ({0})"},
-
-
- /** UNEXPECTED: Parser doTerminate answers */
- //public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
-
-
- {
- ER_PARSER_DOTERMINATE_ANSWERS,
- "\nUNEXPECTED: \u30d1\u30fc\u30b5 doTerminate \u306e\u7b54\u3048
{0}"},
-// "\nUNEXPECTED: Parser doTerminate answers {0}"},
-
-
- /** parse may not be called while parsing */
- //public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
-
-
- {
- ER_NO_PARSE_CALL_WHILE_PARSING,
- "\u69cb\u6587\u89e3\u6790\u4e2d\u306b parse
\u3092\u547c\u3073\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093"},
-// "parse may not be called while parsing"},
-
-
- /** Error: typed iterator for axis {0} not implemented */
- //public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
-
-
- {
- ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "\u30a8\u30e9\u30fc:
\u5165\u529b\u3055\u308c\u305f\u8ef8\u306e\u53cd\u5fa9\u5b50 {0}
\u306f\u5b9f\u88c5\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
-// "Error: typed iterator for axis {0} not implemented"},
-
-
- /** Error: iterator for axis {0} not implemented */
- //public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
-
-
- {
- ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "\u30a8\u30e9\u30fc: \u8ef8\u306e\u53cd\u5fa9\u5b50 {0}
\u306f\u5b9f\u88c5\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
-// "Error: iterator for axis {0} not implemented "},
-
-
- /** Iterator clone not supported */
- //public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
-
-
- {
- ER_ITERATOR_CLONE_NOT_SUPPORTED,
-
"\u53cd\u5fa9\u5b50\u30af\u30ed\u30fc\u30f3\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
-// "Iterator clone not supported"},
-
-
- /** Unknown axis traversal type */
- //public static final int ER_UNKNOWN_AXIS_TYPE = 168;
-
-
- {
- ER_UNKNOWN_AXIS_TYPE,
-
"\u672a\u77e5\u306e\u8ef8\u30c8\u30e9\u30d0\u30fc\u30b5\u30eb\u30bf\u30a4\u30d7:
{0}"},
-// "Unknown axis traversal type: {0}"},
-
-
- /** Axis traverser not supported */
- //public static final int ER_AXIS_NOT_SUPPORTED = 169;
-
-
- {
- ER_AXIS_NOT_SUPPORTED,
-
"\u8ef8\u30c8\u30e9\u30d0\u30fc\u30b5\u30eb\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093:
{0}"},
-// "Axis traverser not supported: {0}"},
-
-
- /** No more DTM IDs are available */
- //public static final int ER_NO_DTMIDS_AVAIL = 170;
-
-
- {
- ER_NO_DTMIDS_AVAIL,
- "\u3053\u308c\u4ee5\u4e0a\u306e DTM ID
\u306f\u7121\u52b9\u3067\u3059"},
-// "No more DTM IDs are available"},
-
-
/** Not supported */
//public static final int ER_NOT_SUPPORTED = 171;
@@ -1790,56 +1621,6 @@
// "Not supported: {0}"},
- /** node must be non-null for getDTMHandleFromNode */
- //public static final int ER_NODE_NON_NULL = 172;
-
-
- {
- ER_NODE_NON_NULL,
- "getDTMHandleFromNode \u306e\u30ce\u30fc\u30c9\u306f null
\u4ee5\u5916\u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093"},
-// "Node must be non-null for getDTMHandleFromNode"},
-
-
- /** Could not resolve the node to a handle */
- //public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
-
-
- {
- ER_COULD_NOT_RESOLVE_NODE,
-
"\u30ce\u30fc\u30c9\u3092\u30cf\u30f3\u30c9\u30eb\u306b\u5909\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f"},
-// "Could not resolve the node to a handle"},
-
-
- /** startParse may not be called while parsing */
- //public static final int ER_STARTPARSE_WHILE_PARSING = 174;
-
-
- {
- ER_STARTPARSE_WHILE_PARSING,
- "\u69cb\u6587\u89e3\u6790\u4e2d\u306b startParse
\u3092\u547c\u3073\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093"},
-// "startParse may not be called while parsing"},
-
-
- /** startParse needs a non-null SAXParser */
- //public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
-
-
- {
- ER_STARTPARSE_NEEDS_SAXPARSER,
- "startParse \u306f null \u3067\u306a\u3044 SAXParser
\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059"},
-// "startParse needs a non-null SAXParser"},
-
-
- /** could not initialize parser with */
- //public static final int ER_COULD_NOT_INIT_PARSER = 176;
-
-
- {
- ER_COULD_NOT_INIT_PARSER,
-
"\u30d1\u30fc\u30b5\u3092\u521d\u671f\u5316\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f"},
-// "could not initialize parser with"},
-
-
/** Value for property {0} should be a Boolean instance */
//public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
@@ -1850,178 +1631,6 @@
// "Value for property {0} should be a Boolean instance"},
- /** exception creating new instance for pool */
- //public static final int ER_EXCEPTION_CREATING_POOL = 178;
-
-
- {
- ER_EXCEPTION_CREATING_POOL,
-
"\u4f8b\u5916\u306b\u3088\u308a\u30d7\u30fc\u30eb\u306b\u65b0\u3057\u3044\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059"},
-// "exception creating new instance for pool"},
-
-
- /** Path contains invalid escape sequence */
- //public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
-
-
- {
- ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
-
"\u30d1\u30b9\u306b\u7121\u52b9\u306a\u30a8\u30b9\u30b1\u30fc\u30d7\u30b7\u30fc\u30b1\u30f3\u30b9\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059"},
-// "Path contains invalid escape sequence"},
-
-
- /** Scheme is required! */
- //public static final int ER_SCHEME_REQUIRED = 180;
-
-
- {
- ER_SCHEME_REQUIRED,
- "\u30b9\u30ad\u30fc\u30de\u304c\u5fc5\u8981\u3067\u3059\u3002"},
-// "Scheme is required!"},
-
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_IN_URI = 181;
-
-
- {
- ER_NO_SCHEME_IN_URI,
- "URI
\u306b\u30b9\u30ad\u30fc\u30de\u304c\u3042\u308a\u307e\u305b\u3093: {0}"},
-// "No scheme found in URI: {0}"},
-
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_INURI = 182;
-
-
- {
- ER_NO_SCHEME_INURI,
- "URI
\u306b\u30b9\u30ad\u30fc\u30de\u304c\u3042\u308a\u307e\u305b\u3093"},
-// "No scheme found in URI"},
-
-
- /** Path contains invalid character: */
- //public static final int ER_PATH_INVALID_CHAR = 183;
-
-
- {
- ER_PATH_INVALID_CHAR,
-
"\u30d1\u30b9\u306b\u7121\u52b9\u306a\u6587\u5b57\u5217\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059:
{0}"},
-// "Path contains invalid character: {0}"},
-
-
- /** Cannot set scheme from null string */
- //public static final int ER_SCHEME_FROM_NULL_STRING = 184;
-
-
- {
- ER_SCHEME_FROM_NULL_STRING,
- "null
\u6587\u5b57\u5217\u304b\u3089\u30b9\u30ad\u30fc\u30de\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093"},
-// "Cannot set scheme from null string"},
-
-
- /** The scheme is not conformant. */
- //public static final int ER_SCHEME_NOT_CONFORMANT = 185;
-
-
- {
- ER_SCHEME_NOT_CONFORMANT,
-
"\u30b9\u30ad\u30fc\u30de\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002"},
-// "The scheme is not conformant."},
-
-
- /** Host is not a well formed address */
- //public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
-
-
- {
- ER_HOST_ADDRESS_NOT_WELLFORMED,
-
"\u30db\u30b9\u30c8\u304c\u6b63\u3057\u3044\u5f62\u5f0f\u306e\u30a2\u30c9\u30ec\u30b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093"},
-// "Host is not a well formed address"},
-
-
- /** Port cannot be set when host is null */
- //public static final int ER_PORT_WHEN_HOST_NULL = 187;
-
-
- {
- ER_PORT_WHEN_HOST_NULL,
- "\u30db\u30b9\u30c8\u304c null
\u306e\u3068\u304d\u3001\u30dd\u30fc\u30c8\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093"},
-// "Port cannot be set when host is null"},
-
-
- /** Invalid port number */
- //public static final int ER_INVALID_PORT = 188;
-
-
- {
- ER_INVALID_PORT,
- "\u7121\u52b9\u306a\u30dd\u30fc\u30c8\u756a\u53f7"},
-// "Invalid port number"},
-
-
- /** Fragment can only be set for a generic URI */
- //public static final int ER_FRAG_FOR_GENERIC_URI = 189;
-
-
- {
- ER_FRAG_FOR_GENERIC_URI,
- "\u6c4e\u7528 URI
\u306b\u5bfe\u3057\u3066\u306e\u307f\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u3059"},
-// "Fragment can only be set for a generic URI"},
-
-
- /** Fragment cannot be set when path is null */
- //public static final int ER_FRAG_WHEN_PATH_NULL = 190;
-
-
- {
- ER_FRAG_WHEN_PATH_NULL,
- "\u30d1\u30b9\u304c null
\u306e\u3068\u304d\u3001\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093"},
-// "Fragment cannot be set when path is null"},
-
-
- /** Fragment contains invalid character */
- //public static final int ER_FRAG_INVALID_CHAR = 191;
-
-
- {
- ER_FRAG_INVALID_CHAR,
-
"\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306b\u7121\u52b9\u306a\u6587\u5b57\u5217\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059"},
-// "Fragment contains invalid character"},
-
-
-
-
- /** Parser is already in use */
- //public static final int ER_PARSER_IN_USE = 192;
-
-
- {
- ER_PARSER_IN_USE,
-
"\u30d1\u30fc\u30b5\u306f\u3059\u3067\u306b\u4f7f\u308f\u308c\u3066\u3044\u307e\u3059"},
-// "Parser is already in use"},
-
-
- /** Parser is already in use */
- //public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
-
-
- {
- ER_CANNOT_CHANGE_WHILE_PARSING,
- "\u69cb\u6587\u89e3\u6790\u4e2d\u3001{0} {1}
\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093"},
-// "Cannot change {0} {1} while parsing"},
-
-
- /** Self-causation not permitted */
- //public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
-
-
- {
- ER_SELF_CAUSATION_NOT_PERMITTED,
-
"\u81ea\u8eab\u304c\u539f\u56e0\u3068\u306a\u3063\u3066\u306f\u306a\u308a\u307e\u305b\u3093"},
-// "Self-causation not permitted"},
-
-
/** src attribute not yet supported for */
//public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
@@ -2052,56 +1661,6 @@
// "Output property not recognized: {0}"},
- /** Userinfo may not be specified if host is not specified */
- //public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
-
-
- {
- ER_NO_USERINFO_IF_NO_HOST,
-
"\u30db\u30b9\u30c8\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u3068\u304d\u3001Userinfo
\u3092\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093"},
-// "Userinfo may not be specified if host is not specified"},
-
-
- /** Port may not be specified if host is not specified */
- //public static final int ER_NO_PORT_IF_NO_HOST = 199;
-
-
- {
- ER_NO_PORT_IF_NO_HOST,
-
"\u30db\u30b9\u30c8\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u3068\u304d\u3001Port
\u3092\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093"},
-// "Port may not be specified if host is not specified"},
-
-
- /** Query string cannot be specified in path and query string */
- //public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
-
-
- {
- ER_NO_QUERY_STRING_IN_PATH,
- "\u30d1\u30b9\u304a\u3088\u3073\u7167\u4f1a\u6587\u5b57\u5217\u3067
Query \u6587\u5b57\u5217\u306f\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093"},
-// "Query string cannot be specified in path and query string"},
-
-
- /** Fragment cannot be specified in both the path and fragment */
- //public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
-
-
- {
- ER_NO_FRAGMENT_STRING_IN_PATH,
-
"\u30d1\u30b9\u304a\u3088\u3073\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306e\u4e21\u65b9\u3067\u3001Fragment
\u306f\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093"},
-// "Fragment cannot be specified in both the path and fragment"},
-
-
- /** Cannot initialize URI with empty parameters */
- //public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
-
-
- {
- ER_CANNOT_INIT_URI_EMPTY_PARMS,
- "\u7a7a\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u3063\u3066
URI \u3092\u521d\u671f\u5316\u3067\u304d\u307e\u305b\u3093"},
-// "Cannot initialize URI with empty parameters"},
-
-
/** Failed creating ElemLiteralResult instance */
//public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
@@ -2175,15 +1734,6 @@
"\"{0}\" \u5c5e\u6027\u306f {1}
\u8981\u7d20\u3067\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093\u3002"},
// "\"{0}\" attribute is not allowed on the {1} element!"},
-
- /** Method not yet supported */
- //public static final int ER_METHOD_NOT_SUPPORTED = 210;
-
-
- {
- ER_METHOD_NOT_SUPPORTED,
-
"\u30e1\u30bd\u30c3\u30c9\u306f\u307e\u3060\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
-// "Method not yet supported "},
/** Bad value */
@@ -2215,26 +1765,6 @@
"{0}
\u5c5e\u6027\u5024\u304c\u8a8d\u3081\u3089\u308c\u307e\u305b\u3093"},
// "{0} attribute value not recognized "},
-
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
-
-
- {
- ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
- "IncrementalSAXSource_Filter
\u306f\u73fe\u5728\u518d\u8d77\u52d5\u3067\u304d\u307e\u305b\u3093"},
-// "IncrementalSAXSource_Filter not currently restartable"},
-
-
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
-
-
- {
- ER_XMLRDR_NOT_BEFORE_STARTPARSE,
- "XMLReader \u306f startParse
\u8981\u6c42\u3088\u308a\u524d\u306b\u914d\u7f6e\u3067\u304d\u307e\u305b\u3093"},
-// "XMLReader not before startParse request"},
-
/** Attempting to generate a namespace prefix with a null URI */
//public static final int ER_NULL_URI_NAMESPACE = 216;
@@ -2431,24 +1961,6 @@
// "Programmer's assertion in RundundentExprEliminator: {0}"},
-// Axis traverser not supported: {0}
- //public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
-
- {
- ER_AXIS_TRAVERSER_NOT_SUPPORTED,
-
"\u25bc\u8ef8\u30c8\u30e9\u30d0\u30fc\u30b5\u30eb\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093:
{0}"},
-// "Axis traverser not supported: {0}"},
-
-
-// ListingErrorHandler created with null PrintWriter!
- //public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER =
236;
-
- {
- ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
- "\u25bcListingErrorHandler \u306e\u4f5c\u6210\u6642\u306b null
PrintWriter \u304c\u6307\u5b9a\u3055\u308c\u307e\u3057\u305f!"},
-// "ListingErrorHandler created with null PrintWriter!"},
-
-
// {0}is not allowed in this position in the stylesheet!
//public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
@@ -2476,23 +1988,6 @@
INVALID_TCHAR,
"\u25bcCHAR \u578b\u306e\u5c5e\u6027 {0} \u306b\u4e0d\u6b63\u306a\u5024
{1} \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059\u3002CHAR
\u578b\u306e\u5c5e\u6027\u306b\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u3001\u5358\u4e00\u306e\u6587\u5b57\u3060\u3051\u3067\u3059!"},
// "Illegal value: {1} used for CHAR attribute: {0}. An attribute of
type CHAR must be only 1 character!"},
-
-
- //public static final int ER_SYSTEMID_UNKNOWN = 240;
-
- {
- ER_SYSTEMID_UNKNOWN,
- "\u25bc\u30b7\u30b9\u30c6\u30e0 ID \u304c\u4e0d\u660e\u3067\u3059"},
-// "SystemId Unknown"},
-
-
- // Location of error unknown
- //public static final int ER_LOCATION_UNKNOWN = 241;
-
- {
- ER_LOCATION_UNKNOWN,
-
"\u25bc\u30a8\u30e9\u30fc\u306e\u5834\u6240\u304c\u4e0d\u660e\u3067\u3059"},
-// "Location of error unknown"},
// Note to translators: The following message is used if the value of
1.2.2.1 +1 -456
xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_ko.java
Index: XSLTErrorResources_ko.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_ko.java,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -u -r1.2 -r1.2.2.1
--- XSLTErrorResources_ko.java 10 Jan 2003 02:02:01 -0000 1.2
+++ XSLTErrorResources_ko.java 23 Jan 2003 16:12:51 -0000 1.2.2.1
@@ -81,7 +81,7 @@
{
/** Maximum error messages, this is needed to keep track of the number of
messages. */
- public static final int MAX_CODE = 253;
+ public static final int MAX_CODE = 201;
/** Maximum warnings, this is needed to keep track of the number of
warnings. */
public static final int MAX_WARNING = 29;
@@ -793,14 +793,6 @@
ER_SAX_EXCEPTION, "SAX \uc608\uc678"},
- /** ER_FUNCTION_NOT_SUPPORTED */
- //public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
-
-
- {
- ER_FUNCTION_NOT_SUPPORTED, "\uae30\ub2a5\uc774 \uc9c0\uc6d0\ub418\uc9c0
\uc54a\uc2b5\ub2c8\ub2e4!"},
-
-
/** ER_XSLT_ERROR */
//public static final int ER_XSLT_ERROR = 81;
@@ -1103,15 +1095,6 @@
"InputSource\ub294 \ub110\uc774 \ub420 \uc218
\uc5c6\uc2b5\ub2c8\ub2e4"},
- /** Can't overwrite cause */
- //public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
-
-
- {
- ER_CANNOT_OVERWRITE_CAUSE,
- "\uacb9\uccd0\uc4f8 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
/** Could not initialize BSF Manager */
//public static final int ER_CANNOT_INIT_BSFMGR = 116;
@@ -1474,141 +1457,6 @@
"{0}\uc5d0 xml-stylesheet PI\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. "},
- /** No default implementation found */
- //public static final int ER_NO_DEFAULT_IMPL = 156;
-
-
- {
- ER_NO_DEFAULT_IMPL,
- "\uae30\ubcf8 \uad6c\ud604\uc744 \ucc3e\uc744 \uc218
\uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
- /** ChunkedIntArray({0}) not currently supported */
- //public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
-
-
- {
- ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
- "ChunkedIntArray({0})\ub294 \ud604\uc7ac \uc9c0\uc6d0\ub418\uc9c0
\uc54a\uc2b5\ub2c8\ub2e4."},
-
-
- /** Offset bigger than slot */
- //public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
-
-
- {
- ER_OFFSET_BIGGER_THAN_SLOT,
- "\uc624\ud504\uc14b\uc774 \uc2ac\ub86f\ubcf4\ub2e4
\ud07d\ub2c8\ub2e4"},
-
-
- /** Coroutine not available, id= */
- //public static final int ER_COROUTINE_NOT_AVAIL = 159;
-
-
- {
- ER_COROUTINE_NOT_AVAIL,
- "Coroutine\uc740 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4,
ID={0}"},
-
-
- /** CoroutineManager recieved co_exit() request */
- //public static final int ER_COROUTINE_CO_EXIT = 160;
-
-
- {
- ER_COROUTINE_CO_EXIT,
- "CoroutineManager\uac00 co_exit() \uc694\uccad\uc744
\uc218\uc2e0\ud588\uc2b5\ub2c8\ub2e4"},
-
-
- /** co_joinCoroutineSet() failed */
- //public static final int ER_COJOINROUTINESET_FAILED = 161;
-
-
- {
- ER_COJOINROUTINESET_FAILED,
- "co_joinCoroutineSet()\uc774 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4"},
-
-
- /** Coroutine parameter error () */
- //public static final int ER_COROUTINE_PARAM = 162;
-
-
- {
- ER_COROUTINE_PARAM,
- "Coroutine \ub9e4\uac1c\ubcc0\uc218 \uc624\ub958({0})"},
-
-
- /** UNEXPECTED: Parser doTerminate answers */
- //public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
-
-
- {
- ER_PARSER_DOTERMINATE_ANSWERS,
- "\n\uc608\uc0c1\uce58 \ubabb\ud55c \ubb38\uc81c: doTerminate
\uad6c\ubb38 \ubd84\uc11d\uae30\uac00 {0}\uc5d0
\uc751\ub2f5\ud588\uc2b5\ub2c8\ub2e4. "},
-
-
- /** parse may not be called while parsing */
- //public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
-
-
- {
- ER_NO_PARSE_CALL_WHILE_PARSING,
- "\uad6c\ubb38 \ubd84\uc11d\ud558\ub294 \ub3d9\uc548\uc5d0\ub294
\uad6c\ubb38 \ubd84\uc11d\uc744 \ud638\ucd9c\ud560 \uc218
\uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
- /** Error: typed iterator for axis {0} not implemented */
- //public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
-
-
- {
- ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "\uc624\ub958: {0} \ucd95\uc5d0 \ub300\ud574 \uc785\ub825\ub41c
\ubc18\ubcf5\uae30\uac00 \uad6c\ud604\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."},
-
-
- /** Error: iterator for axis {0} not implemented */
- //public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
-
-
- {
- ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "\uc624\ub958: {0} \ucd95\uc5d0 \ub300\ud55c \ubc18\ubcf5\uae30\uac00
\uad6c\ud604\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. "},
-
-
- /** Iterator clone not supported */
- //public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
-
-
- {
- ER_ITERATOR_CLONE_NOT_SUPPORTED,
- "\ubc18\ubcf5\uae30 \ubcf5\uc81c\uac00 \uc9c0\uc6d0\ub418\uc9c0
\uc54a\uc2b5\ub2c8\ub2e4"},
-
-
- /** Unknown axis traversal type */
- //public static final int ER_UNKNOWN_AXIS_TYPE = 168;
-
-
- {
- ER_UNKNOWN_AXIS_TYPE,
- "\uc54c \uc218 \uc5c6\ub294 \ucd95 \uc21c\ud68c \uc720\ud615: {0}"},
-
-
- /** Axis traverser not supported */
- //public static final int ER_AXIS_NOT_SUPPORTED = 169;
-
-
- {
- ER_AXIS_NOT_SUPPORTED,
- "\ucd95 \uc21c\ud68c\uae30\uac00 \uc9c0\uc6d0\ub418\uc9c0
\uc54a\uc2b5\ub2c8\ub2e4: {0}"},
-
-
- /** No more DTM IDs are available */
- //public static final int ER_NO_DTMIDS_AVAIL = 170;
-
-
- {
- ER_NO_DTMIDS_AVAIL,
- "\ub354 \uc774\uc0c1 DTM ID\ub97c \uc0ac\uc6a9\ud560 \uc218
\uc5c6\uc2b5\ub2c8\ub2e4."},
-
-
/** Not supported */
//public static final int ER_NOT_SUPPORTED = 171;
@@ -1618,51 +1466,6 @@
"\uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}"},
- /** node must be non-null for getDTMHandleFromNode */
- //public static final int ER_NODE_NON_NULL = 172;
-
-
- {
- ER_NODE_NON_NULL,
- "\ub178\ub4dc\ub294 getDTMHandleFromNode\uc5d0 \ub300\ud574
\ub110\uc774 \uc544\ub2c8\uc5b4\uc57c \ud569\ub2c8\ub2e4"},
-
-
- /** Could not resolve the node to a handle */
- //public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
-
-
- {
- ER_COULD_NOT_RESOLVE_NODE,
- "\ub178\ub4dc\ub97c \ud578\ub4e4\ub85c \ubcc0\ud658\ud560 \uc218
\uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
- /** startParse may not be called while parsing */
- //public static final int ER_STARTPARSE_WHILE_PARSING = 174;
-
-
- {
- ER_STARTPARSE_WHILE_PARSING,
- "startParse\ub294 \uad6c\ubb38 \ubd84\uc11d \uc911\uc5d0
\ud638\ucd9c\ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
- /** startParse needs a non-null SAXParser */
- //public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
-
-
- {
- ER_STARTPARSE_NEEDS_SAXPARSER,
- "startParse\uc5d0\ub294 \ub110\uc774 \uc544\ub2cc SAXParser\uac00
\ud544\uc694\ud569\ub2c8\ub2e4"},
-
-
- /** could not initialize parser with */
- //public static final int ER_COULD_NOT_INIT_PARSER = 176;
-
-
- {
- ER_COULD_NOT_INIT_PARSER,
- "\ub2e4\uc74c\uc73c\ub85c \uad6c\ubb38 \ubd84\uc11d\uae30\ub97c
\ucd08\uae30\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: "},
-
-
/** Value for property {0} should be a Boolean instance */
//public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
@@ -1672,161 +1475,6 @@
"{0} \ud2b9\uc131\uc5d0 \ub300\ud55c \uac12\uc774 \ubd80\uc6b8
\uc778\uc2a4\ud134\uc2a4\uc5ec\uc57c \ud569\ub2c8\ub2e4."},
- /** exception creating new instance for pool */
- //public static final int ER_EXCEPTION_CREATING_POOL = 178;
-
-
- {
- ER_EXCEPTION_CREATING_POOL,
- "\ud480\uc5d0 \ub300\ud55c \uc0c8 \uc778\uc2a4\ud134\uc2a4
\uc791\uc131 \uc911 \uc608\uc678\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4"},
-
-
- /** Path contains invalid escape sequence */
- //public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
-
-
- {
- ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
- "\uacbd\ub85c\uc5d0 \uc798\ubabb\ub41c \uc81c\uc5b4
\ubb38\uc790\uc5f4\uc774 \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4"},
-
-
- /** Scheme is required! */
- //public static final int ER_SCHEME_REQUIRED = 180;
-
-
- {
- ER_SCHEME_REQUIRED,
- "\uccb4\uacc4\uac00 \ud544\uc694\ud569\ub2c8\ub2e4!"},
-
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_IN_URI = 181;
-
-
- {
- ER_NO_SCHEME_IN_URI,
- "URI\uc5d0 \uccb4\uacc4\uac00 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"},
-
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_INURI = 182;
-
-
- {
- ER_NO_SCHEME_INURI,
- "URI\uc5d0 \uccb4\uacc4\uac00 \uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
- /** Path contains invalid character: */
- //public static final int ER_PATH_INVALID_CHAR = 183;
-
-
- {
- ER_PATH_INVALID_CHAR,
- "\uacbd\ub85c\uc5d0 \uc798\ubabb\ub41c \ubb38\uc790 {0}\uc774(\uac00)
\ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4."},
-
-
- /** Cannot set scheme from null string */
- //public static final int ER_SCHEME_FROM_NULL_STRING = 184;
-
-
- {
- ER_SCHEME_FROM_NULL_STRING,
- "\ub110 \ubb38\uc790\uc5f4\uc5d0\uc11c \uccb4\uacc4\ub97c
\uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
- /** The scheme is not conformant. */
- //public static final int ER_SCHEME_NOT_CONFORMANT = 185;
-
-
- {
- ER_SCHEME_NOT_CONFORMANT,
- "\uccb4\uacc4\uac00 \uc77c\uce58\ud558\uc9c0
\uc54a\uc2b5\ub2c8\ub2e4."},
-
-
- /** Host is not a well formed address */
- //public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
-
-
- {
- ER_HOST_ADDRESS_NOT_WELLFORMED,
- "\ud638\uc2a4\ud2b8 \uc8fc\uc18c\uac00 \uc62c\ubc14\ub978
\ud615\uc2dd\uc774 \uc544\ub2d9\ub2c8\ub2e4"},
-
-
- /** Port cannot be set when host is null */
- //public static final int ER_PORT_WHEN_HOST_NULL = 187;
-
-
- {
- ER_PORT_WHEN_HOST_NULL,
- "\ud638\uc2a4\ud2b8\uac00 \ub110\uc774\uba74 \ud3ec\ud2b8\ub97c
\uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
- /** Invalid port number */
- //public static final int ER_INVALID_PORT = 188;
-
-
- {
- ER_INVALID_PORT,
- "\uc798\ubabb\ub41c \ud3ec\ud2b8 \ubc88\ud638\uc785\ub2c8\ub2e4"},
-
-
- /** Fragment can only be set for a generic URI */
- //public static final int ER_FRAG_FOR_GENERIC_URI = 189;
-
-
- {
- ER_FRAG_FOR_GENERIC_URI,
- "\ub2e8\ud3b8\uc740 \uc77c\ubc18 URI\uc5d0 \ub300\ud574\uc11c\ub9cc
\uc124\uc815\ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4"},
-
-
- /** Fragment cannot be set when path is null */
- //public static final int ER_FRAG_WHEN_PATH_NULL = 190;
-
-
- {
- ER_FRAG_WHEN_PATH_NULL,
- "\uacbd\ub85c\uac00 \ub110\uc774\uba74 \ub2e8\ud3b8\uc744
\uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
- /** Fragment contains invalid character */
- //public static final int ER_FRAG_INVALID_CHAR = 191;
-
-
- {
- ER_FRAG_INVALID_CHAR,
- "\ub2e8\ud3b8\uc5d0 \uc798\ubabb\ub41c \ubb38\uc790\uac00
\ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4"},
-
-
-
-
- /** Parser is already in use */
- //public static final int ER_PARSER_IN_USE = 192;
-
-
- {
- ER_PARSER_IN_USE,
- "\uad6c\ubb38 \ubd84\uc11d\uae30\uac00 \uc774\ubbf8 \uc0ac\uc6a9
\uc911\uc785\ub2c8\ub2e4"},
-
-
- /** Parser is already in use */
- //public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
-
-
- {
- ER_CANNOT_CHANGE_WHILE_PARSING,
- "\uad6c\ubb38 \ubd84\uc11d \uc911\uc5d0\ub294 {0} {1}\uc744(\ub97c)
\ubcc0\uacbd\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
- /** Self-causation not permitted */
- //public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
-
-
- {
- ER_SELF_CAUSATION_NOT_PERMITTED,
- "\uc790\uccb4 \uc6d0\uc778 \uc81c\uacf5\uc740
\ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4"},
-
-
/* This key/message changed ,NEED ER_COULD_NOT_FIND_EXTERN_SCRIPT:
Pending,Ramesh */
/** src attribute not yet supported for */
@@ -1856,51 +1504,6 @@
"\ucd9c\ub825 \ud2b9\uc131\uc744 \uc778\uc2dd\ud560 \uc218
\uc5c6\uc2b5\ub2c8\ub2e4: {0}"},
- /** Userinfo may not be specified if host is not specified */
- //public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
-
-
- {
- ER_NO_USERINFO_IF_NO_HOST,
- "\ud638\uc2a4\ud2b8\uac00 \uc9c0\uc815\ub418\uc5b4 \uc788\uc9c0
\uc54a\uc73c\uba74 Userinfo\ub97c \uc9c0\uc815\ud560 \uc218
\uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
- /** Port may not be specified if host is not specified */
- //public static final int ER_NO_PORT_IF_NO_HOST = 199;
-
-
- {
- ER_NO_PORT_IF_NO_HOST,
- "\ud638\uc2a4\ud2b8\uac00 \uc9c0\uc815\ub418\uc5b4 \uc788\uc9c0
\uc54a\uc73c\uba74 \ud3ec\ud2b8\ub97c \uc9c0\uc815\ud560 \uc218
\uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
- /** Query string cannot be specified in path and query string */
- //public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
-
-
- {
- ER_NO_QUERY_STRING_IN_PATH,
- "\uc9c8\uc758 \ubb38\uc790\uc5f4\uc744 \uacbd\ub85c \ub610\ub294
\uc9c8\uc758 \ubb38\uc790\uc5f4 \ub0b4\uc5d0 \uc9c0\uc815\ud560 \uc218
\uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
- /** Fragment cannot be specified in both the path and fragment */
- //public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
-
-
- {
- ER_NO_FRAGMENT_STRING_IN_PATH,
- "\ub2e8\ud3b8\uc744 \uacbd\ub85c\uc640 \ub2e8\ud3b8
\ubaa8\ub450\uc5d0 \uc9c0\uc815\ud560 \uc218\ub294 \uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
- /** Cannot initialize URI with empty parameters */
- //public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
-
-
- {
- ER_CANNOT_INIT_URI_EMPTY_PARMS,
- "\ube48 \ub9e4\uac1c\ubcc0\uc218\ub85c\ub294 URI\ub97c
\ucd08\uae30\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
/** Failed creating ElemLiteralResult instance */
//public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
@@ -1968,15 +1571,6 @@
ER_ATTR_NOT_ALLOWED,
"\"{0}\" \uc18d\uc131\uc774 {1} \uc694\uc18c\uc5d0
\ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!"},
-
- /** Method not yet supported */
- //public static final int ER_METHOD_NOT_SUPPORTED = 210;
-
-
- {
- ER_METHOD_NOT_SUPPORTED,
- "\uc9c0\uc6d0\ub418\uc9c0 \uc54a\ub294
\uba54\uc18c\ub4dc\uc785\ub2c8\ub2e4 "},
-
/** Bad value */
//public static final int ER_BAD_VALUE = 211;
@@ -2004,24 +1598,6 @@
ER_ATTRIB_VALUE_NOT_RECOGNIZED,
"{0} \uc18d\uc131 \uac12\uc744 \uc778\uc2dd\ud560 \uc218
\uc5c6\uc2b5\ub2c8\ub2e4 "},
-
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
-
-
- {
- ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
- "IncrementalSAXSource_Filter\ub97c \ub2e4\uc2dc \uc2dc\uc791\ud560
\uc218 \uc5c6\uc2b5\ub2c8\ub2e4"},
-
-
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
-
-
- {
- ER_XMLRDR_NOT_BEFORE_STARTPARSE,
- "startParse \uc694\uccad \uc804\uc5d0 XMLReader\ub97c
\uc218\ud589\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4"},
-
/** Attempting to generate a namespace prefix with a null URI */
//public static final int ER_NULL_URI_NAMESPACE = 216;
@@ -2200,22 +1776,6 @@
"RundundentExprEliminator\uc758 \ud504\ub85c\uadf8\ub798\uba38
\uba85\uc81c: {0}"},
-// Axis traverser not supported: {0}
- //public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
-
- {
- ER_AXIS_TRAVERSER_NOT_SUPPORTED,
- "\ucd95 \ud2b8\ub798\ubc84\uc11c\uac00 \uc9c0\uc6d0\ub418\uc9c0
\uc54a\uc74c: {0}"},
-
-
-// ListingErrorHandler created with null PrintWriter!
- //public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER =
236;
-
- {
- ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
- "ListingErrorHandler\uac00 \ub110 PrintWriter\ub85c
\uc791\uc131\ub428!"},
-
-
// {0}is not allowed in this position in the stylesheet!
//public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
@@ -2240,21 +1800,6 @@
{
INVALID_TCHAR,
"\uc798\ubabb\ub41c \uac12: CHAR \uc18d\uc131 {0}\uc5d0
\uc0ac\uc6a9\ub41c {1}. CHAR \uc720\ud615\uc758 \uc18d\uc131\uc740
1\uc790\uc5ec\uc57c \ud569\ub2c8\ub2e4!"},
-
-
- //public static final int ER_SYSTEMID_UNKNOWN = 240;
-
- {
- ER_SYSTEMID_UNKNOWN,
- "\uc2dc\uc2a4\ud15c ID\ub97c \uc54c \uc218 \uc5c6\uc74c"},
-
-
- // Location of error unknown
- //public static final int ER_LOCATION_UNKNOWN = 241;
-
- {
- ER_LOCATION_UNKNOWN,
- "\uc624\ub958 \uc704\uce58\ub97c \uc54c \uc218 \uc5c6\uc74c"},
// Note to translators: The following message is used if the value of
1.2.2.1 +1 -455
xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_sv.java
Index: XSLTErrorResources_sv.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_sv.java,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -u -r1.2 -r1.2.2.1
--- XSLTErrorResources_sv.java 10 Jan 2003 02:02:01 -0000 1.2
+++ XSLTErrorResources_sv.java 23 Jan 2003 16:12:51 -0000 1.2.2.1
@@ -82,7 +82,7 @@
{
/** Maximum error messages, this is needed to keep track of the number of
messages. */
- public static final int MAX_CODE = 253;
+ public static final int MAX_CODE = 201;
/** Maximum warnings, this is needed to keep track of the number of
warnings. */
public static final int MAX_WARNING = 29;
@@ -793,13 +793,6 @@
ER_SAX_EXCEPTION, "SAX-Undantag"},
- /** ER_FUNCTION_NOT_SUPPORTED */
- //public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
-
-
- {
- ER_FUNCTION_NOT_SUPPORTED, "Funktion inte underst\u00f6dd:"},
-
/** ER_XSLT_ERROR */
//public static final int ER_XSLT_ERROR = 81;
@@ -1103,15 +1096,6 @@
"InputSource f\u00e5r inte vara null"},
- /** Can't overwrite cause */
- //public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
-
-
- {
- ER_CANNOT_OVERWRITE_CAUSE,
- "Kan inte skriva \u00f6ver orsak"},
-
-
/** Could not initialize BSF Manager */
//public static final int ER_CANNOT_INIT_BSFMGR = 116;
@@ -1474,141 +1458,6 @@
"xml-stylesheet PI saknas i: {0}"},
- /** No default implementation found */
- //public static final int ER_NO_DEFAULT_IMPL = 156;
-
-
- {
- ER_NO_DEFAULT_IMPL,
- "Standardimplementering saknas i:"},
-
-
- /** ChunkedIntArray({0}) not currently supported */
- //public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
-
-
- {
- ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
- "ChunkedIntArray({0}) underst\u00f6ds f\u00f6r n\u00e4rvarande inte"},
-
-
- /** Offset bigger than slot */
- //public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
-
-
- {
- ER_OFFSET_BIGGER_THAN_SLOT,
- "Offset st\u00f6rre \u00e4n fack"},
-
-
- /** Coroutine not available, id= */
- //public static final int ER_COROUTINE_NOT_AVAIL = 159;
-
-
- {
- ER_COROUTINE_NOT_AVAIL,
- "Sidorutin inte tillg\u00e4nglig, id={0}"},
-
-
- /** CoroutineManager recieved co_exit() request */
- //public static final int ER_COROUTINE_CO_EXIT = 160;
-
-
- {
- ER_COROUTINE_CO_EXIT,
- "CoroutineManager mottog co_exit()-f\u00f6rfr\u00e5gan"},
-
-
- /** co_joinCoroutineSet() failed */
- //public static final int ER_COJOINROUTINESET_FAILED = 161;
-
-
- {
- ER_COJOINROUTINESET_FAILED,
- "co_joinCoroutineSet() misslyckades"},
-
-
- /** Coroutine parameter error () */
- //public static final int ER_COROUTINE_PARAM = 162;
-
-
- {
- ER_COROUTINE_PARAM,
- "Sidorutin fick parameterfel ({0})"},
-
-
- /** UNEXPECTED: Parser doTerminate answers */
- //public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
-
-
- {
- ER_PARSER_DOTERMINATE_ANSWERS,
- "\nOV\u00c4NTAT: Parser doTerminate-svar {0}"},
-
-
- /** parse may not be called while parsing */
- //public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
-
-
- {
- ER_NO_PARSE_CALL_WHILE_PARSING,
- "parse f\u00e5r inte anropas medan tolkning sker"},
-
-
- /** Error: typed iterator for axis {0} not implemented */
- //public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
-
-
- {
- ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "Fel: typad upprepare f\u00f6r axel {0} inte implementerad"},
-
-
- /** Error: iterator for axis {0} not implemented */
- //public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
-
-
- {
- ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "Fel: upprepare f\u00f6r axel {0} inte implementerad"},
-
-
- /** Iterator clone not supported */
- //public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
-
-
- {
- ER_ITERATOR_CLONE_NOT_SUPPORTED,
- "Uppreparklon underst\u00f6ds inte"},
-
-
- /** Unknown axis traversal type */
- //public static final int ER_UNKNOWN_AXIS_TYPE = 168;
-
-
- {
- ER_UNKNOWN_AXIS_TYPE,
- "Ok\u00e4nd axeltraverstyp: {0}"},
-
-
- /** Axis traverser not supported */
- //public static final int ER_AXIS_NOT_SUPPORTED = 169;
-
-
- {
- ER_AXIS_NOT_SUPPORTED,
- "Axeltravers underst\u00f6ds inte: {0}"},
-
-
- /** No more DTM IDs are available */
- //public static final int ER_NO_DTMIDS_AVAIL = 170;
-
-
- {
- ER_NO_DTMIDS_AVAIL,
- "Inga fler DTM-IDs \u00e4r tillg\u00e4ngliga"},
-
-
/** Not supported */
//public static final int ER_NOT_SUPPORTED = 171;
@@ -1618,51 +1467,6 @@
"Underst\u00f6ds inte: {0}"},
- /** node must be non-null for getDTMHandleFromNode */
- //public static final int ER_NODE_NON_NULL = 172;
-
-
- {
- ER_NODE_NON_NULL,
- "Nod m\u00e5ste vara icke-null f\u00f6r getDTMHandleFromNode"},
-
-
- /** Could not resolve the node to a handle */
- //public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
-
-
- {
- ER_COULD_NOT_RESOLVE_NODE,
- "Kunde inte l\u00f6sa nod till ett handtag"},
-
-
- /** startParse may not be called while parsing */
- //public static final int ER_STARTPARSE_WHILE_PARSING = 174;
-
-
- {
- ER_STARTPARSE_WHILE_PARSING,
- "startParse f\u00e5r inte anropas medan tolkning sker"},
-
-
- /** startParse needs a non-null SAXParser */
- //public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
-
-
- {
- ER_STARTPARSE_NEEDS_SAXPARSER,
- "startParse beh\u00f6ver en SAXParser som \u00e4r icke-null"},
-
-
- /** could not initialize parser with */
- //public static final int ER_COULD_NOT_INIT_PARSER = 176;
-
-
- {
- ER_COULD_NOT_INIT_PARSER,
- "kunde inte initialisera tolk med"},
-
-
/** Value for property {0} should be a Boolean instance */
//public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
@@ -1672,161 +1476,6 @@
"V\u00e4rde p\u00e5 egenskap {0} borde vara en Boolesk instans"},
- /** exception creating new instance for pool */
- //public static final int ER_EXCEPTION_CREATING_POOL = 178;
-
-
- {
- ER_EXCEPTION_CREATING_POOL,
- "undantag skapar ny instans f\u00f6r pool"},
-
-
- /** Path contains invalid escape sequence */
- //public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
-
-
- {
- ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
- "V\u00e4g inneh\u00e5ller ogiltig flyktsekvens"},
-
-
- /** Scheme is required! */
- //public static final int ER_SCHEME_REQUIRED = 180;
-
-
- {
- ER_SCHEME_REQUIRED,
- "Schema kr\u00e4vs!"},
-
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_IN_URI = 181;
-
-
- {
- ER_NO_SCHEME_IN_URI,
- "Schema saknas i URI: {0}"},
-
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_INURI = 182;
-
-
- {
- ER_NO_SCHEME_INURI,
- "Schema saknas i URI"},
-
-
- /** Path contains invalid character: */
- //public static final int ER_PATH_INVALID_CHAR = 183;
-
-
- {
- ER_PATH_INVALID_CHAR,
- "V\u00e4g inneh\u00e5ller ogiltigt tecken: {0}"},
-
-
- /** Cannot set scheme from null string */
- //public static final int ER_SCHEME_FROM_NULL_STRING = 184;
-
-
- {
- ER_SCHEME_FROM_NULL_STRING,
- "Kan inte s\u00e4tta schema fr\u00e5n null-str\u00e4ng"},
-
-
- /** The scheme is not conformant. */
- //public static final int ER_SCHEME_NOT_CONFORMANT = 185;
-
-
- {
- ER_SCHEME_NOT_CONFORMANT,
- "Schemat \u00e4r inte likformigt."},
-
-
- /** Host is not a well formed address */
- //public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
-
-
- {
- ER_HOST_ADDRESS_NOT_WELLFORMED,
- "V\u00e4rd \u00e4r inte en v\u00e4lformulerad adress"},
-
-
- /** Port cannot be set when host is null */
- //public static final int ER_PORT_WHEN_HOST_NULL = 187;
-
-
- {
- ER_PORT_WHEN_HOST_NULL,
- "Port kan inte s\u00e4ttas n\u00e4r v\u00e4rd \u00e4r null"},
-
-
- /** Invalid port number */
- //public static final int ER_INVALID_PORT = 188;
-
-
- {
- ER_INVALID_PORT,
- "Ogiltigt portnummer"},
-
-
- /** Fragment can only be set for a generic URI */
- //public static final int ER_FRAG_FOR_GENERIC_URI = 189;
-
-
- {
- ER_FRAG_FOR_GENERIC_URI,
- "Fragment kan bara s\u00e4ttas f\u00f6r en allm\u00e4n URI"},
-
-
- /** Fragment cannot be set when path is null */
- //public static final int ER_FRAG_WHEN_PATH_NULL = 190;
-
-
- {
- ER_FRAG_WHEN_PATH_NULL,
- "Fragment kan inte s\u00e4ttas n\u00e4r v\u00e4g \u00e4r null"},
-
-
- /** Fragment contains invalid character */
- //public static final int ER_FRAG_INVALID_CHAR = 191;
-
-
- {
- ER_FRAG_INVALID_CHAR,
- "Fragment inneh\u00e5ller ogiltigt tecken"},
-
-
-
-
- /** Parser is already in use */
- //public static final int ER_PARSER_IN_USE = 192;
-
-
- {
- ER_PARSER_IN_USE,
- "Tolk anv\u00e4nds redan"},
-
-
- /** Parser is already in use */
- //public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
-
-
- {
- ER_CANNOT_CHANGE_WHILE_PARSING,
- "Kan inte \u00e4ndra {0} {1} medan tolkning sker"},
-
-
- /** Self-causation not permitted */
- //public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
-
-
- {
- ER_SELF_CAUSATION_NOT_PERMITTED,
- "Sj\u00e4lvorsakande inte till\u00e5ten"},
-
-
/* This key/message changed ,NEED ER_COULD_NOT_FIND_EXTERN_SCRIPT:
Pending,Ramesh */
/** src attribute not yet supported for */
@@ -1856,51 +1505,6 @@
"Utdata-egenskap k\u00e4nns inte igen: {0}"},
- /** Userinfo may not be specified if host is not specified */
- //public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
-
-
- {
- ER_NO_USERINFO_IF_NO_HOST,
- "Userinfo f\u00e5r inte anges om v\u00e4rden inte \u00e4r angiven"},
-
-
- /** Port may not be specified if host is not specified */
- //public static final int ER_NO_PORT_IF_NO_HOST = 199;
-
-
- {
- ER_NO_PORT_IF_NO_HOST,
- "Port f\u00e5r inte anges om v\u00e4rden inte \u00e4r angiven"},
-
-
- /** Query string cannot be specified in path and query string */
- //public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
-
-
- {
- ER_NO_QUERY_STRING_IN_PATH,
- "F\u00f6rfr\u00e5gan-str\u00e4ng kan inte anges i v\u00e4g och
f\u00f6rfr\u00e5gan-str\u00e4ng"},
-
-
- /** Fragment cannot be specified in both the path and fragment */
- //public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
-
-
- {
- ER_NO_FRAGMENT_STRING_IN_PATH,
- "Fragment kan inte anges i b\u00e5de v\u00e4gen och fragmentet"},
-
-
- /** Cannot initialize URI with empty parameters */
- //public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
-
-
- {
- ER_CANNOT_INIT_URI_EMPTY_PARMS,
- "Kan inte initialisera URI med tomma parametrar"},
-
-
/** Failed creating ElemLiteralResult instance */
//public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
@@ -1968,15 +1572,6 @@
ER_ATTR_NOT_ALLOWED,
"Attributet \"{0}\" \u00e4r inte till\u00e5ten i det {1}
elementet!"},
-
- /** Method not yet supported */
- //public static final int ER_METHOD_NOT_SUPPORTED = 210;
-
-
- {
- ER_METHOD_NOT_SUPPORTED,
- "Metod \u00e4nnu inte underst\u00f6dd "},
-
/** Bad value */
//public static final int ER_BAD_VALUE = 211;
@@ -2004,24 +1599,6 @@
ER_ATTRIB_VALUE_NOT_RECOGNIZED,
"Attributv\u00e4rdet {0} k\u00e4nns inte igen "},
-
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
-
-
- {
- ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
- "IncrementalSAXSource_Filter kan f\u00f6r n\u00e4rvarande inte startas
om"},
-
-
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
-
-
- {
- ER_XMLRDR_NOT_BEFORE_STARTPARSE,
- "XMLReader inte innan startParse-beg\u00e4ran"},
-
/** Attempting to generate a namespace prefix with a null URI */
//public static final int ER_NULL_URI_NAMESPACE = 216;
@@ -2200,22 +1777,6 @@
"Programmerarkontroll i RundundentExprEliminator: {0}"},
-// Axis traverser not supported: {0}
- //public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
-
- {
- ER_AXIS_TRAVERSER_NOT_SUPPORTED,
- "Det g\u00e5r inte att v\u00e4nda axeln: {0}"},
-
-
-// ListingErrorHandler created with null PrintWriter!
- //public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER =
236;
-
- {
- ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
- "ListingErrorHandler skapad med null PrintWriter!"},
-
-
// {0}is not allowed in this position in the stylesheet!
//public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
@@ -2240,21 +1801,6 @@
{
INVALID_TCHAR,
"Ogiltigt v\u00e4rde: {1} anv\u00e4nds f\u00f6r CHAR-attributet: {0}.
Ett attribut av CHAR-typ f\u00e5r bara ha 1 tecken!"},
-
-
- //public static final int ER_SYSTEMID_UNKNOWN = 240;
-
- {
- ER_SYSTEMID_UNKNOWN,
- "SystemId ok\u00e4nt"},
-
-
- // Location of error unknown
- //public static final int ER_LOCATION_UNKNOWN = 241;
-
- {
- ER_LOCATION_UNKNOWN,
- "Platsen f\u00f6r felet \u00e4r ok\u00e4nd"},
// Note to translators: The following message is used if the value of
1.2.2.1 +1 -456
xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_zh_CN.java
Index: XSLTErrorResources_zh_CN.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_zh_CN.java,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -u -r1.2 -r1.2.2.1
--- XSLTErrorResources_zh_CN.java 10 Jan 2003 02:02:01 -0000 1.2
+++ XSLTErrorResources_zh_CN.java 23 Jan 2003 16:12:52 -0000 1.2.2.1
@@ -82,7 +82,7 @@
{
/** Maximum error messages, this is needed to keep track of the number of
messages. */
- public static final int MAX_CODE = 253;
+ public static final int MAX_CODE = 201;
/** Maximum warnings, this is needed to keep track of the number of
warnings. */
public static final int MAX_WARNING = 29;
@@ -794,14 +794,6 @@
ER_SAX_EXCEPTION, "SAX \u5f02\u5e38 "},
- /** ER_FUNCTION_NOT_SUPPORTED */
- //public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
-
-
- {
- ER_FUNCTION_NOT_SUPPORTED, "\u51fd\u6570\u4e0d\u53d7\u652f\u6301\uff01
"},
-
-
/** ER_XSLT_ERROR */
//public static final int ER_XSLT_ERROR = 81;
@@ -1104,15 +1096,6 @@
"InputSource \u4e0d\u80fd\u4e3a\u7a7a "},
- /** Can't overwrite cause */
- //public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
-
-
- {
- ER_CANNOT_OVERWRITE_CAUSE,
- "\u65e0\u6cd5\u8986\u5199\u4e8b\u7531 "},
-
-
/** Could not initialize BSF Manager */
//public static final int ER_CANNOT_INIT_BSFMGR = 116;
@@ -1475,141 +1458,6 @@
"\u5728 {0} \u4e2d\u672a\u627e\u5230 xml-stylesheet PI\uff1a "},
- /** No default implementation found */
- //public static final int ER_NO_DEFAULT_IMPL = 156;
-
-
- {
- ER_NO_DEFAULT_IMPL,
- "\u672a\u627e\u5230\u7f3a\u7701\u6267\u884c "},
-
-
- /** ChunkedIntArray({0}) not currently supported */
- //public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
-
-
- {
- ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
- "\u76ee\u524d\u4e0d\u652f\u6301 ChunkedIntArray({0}) "},
-
-
- /** Offset bigger than slot */
- //public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
-
-
- {
- ER_OFFSET_BIGGER_THAN_SLOT,
- "\u504f\u79fb\u6bd4\u69fd\u7565\u5927 "},
-
-
- /** Coroutine not available, id= */
- //public static final int ER_COROUTINE_NOT_AVAIL = 159;
-
-
- {
- ER_COROUTINE_NOT_AVAIL,
- "\u534f\u540c\u7a0b\u5e8f\u4e0d\u53ef\u7528\uff0c id={0}"},
-
-
- /** CoroutineManager recieved co_exit() request */
- //public static final int ER_COROUTINE_CO_EXIT = 160;
-
-
- {
- ER_COROUTINE_CO_EXIT,
- "CoroutineManager \u63a5\u6536\u5230 co_exit() \u8bf7\u6c42 "},
-
-
- /** co_joinCoroutineSet() failed */
- //public static final int ER_COJOINROUTINESET_FAILED = 161;
-
-
- {
- ER_COJOINROUTINESET_FAILED,
- "co_joinCoroutineSet() \u5931\u8d25 "},
-
-
- /** Coroutine parameter error () */
- //public static final int ER_COROUTINE_PARAM = 162;
-
-
- {
- ER_COROUTINE_PARAM,
- "\u534f\u540c\u7a0b\u5e8f\u53c2\u6570\u9519\u8bef ({0})"},
-
-
- /** UNEXPECTED: Parser doTerminate answers */
- //public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
-
-
- {
- ER_PARSER_DOTERMINATE_ANSWERS,
- "\nUNEXPECTED: \u5206\u6790\u5668 doTerminate \u56de\u7b54 {0}"},
-
-
- /** parse may not be called while parsing */
- //public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
-
-
- {
- ER_NO_PARSE_CALL_WHILE_PARSING,
-
"\u5f53\u5206\u6790\u65f6\u53ef\u80fd\u4e0d\u4f1a\u8c03\u7528\u5206\u6790\u51fd\u6570
"},
-
-
- /** Error: typed iterator for axis {0} not implemented */
- //public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
-
-
- {
- ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "\u9519\u8bef\uff1a\u5728 axis {0}
\u4e2d\u8f93\u5165\u7684\u8fed\u4ee3\u7a0b\u5e8f\u65e0\u6cd5\u6267\u884c "},
-
-
- /** Error: iterator for axis {0} not implemented */
- //public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
-
-
- {
- ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "\u9519\u8bef\uff1a\u5728 axis {0}
\u4e2d\u7684\u8fed\u4ee3\u7a0b\u5e8f\u65e0\u6cd5\u6267\u884c "},
-
-
- /** Iterator clone not supported */
- //public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
-
-
- {
- ER_ITERATOR_CLONE_NOT_SUPPORTED,
- "\u4e0d\u652f\u6301\u590d\u5236\u8fed\u4ee3\u7a0b\u5e8f "},
-
-
- /** Unknown axis traversal type */
- //public static final int ER_UNKNOWN_AXIS_TYPE = 168;
-
-
- {
- ER_UNKNOWN_AXIS_TYPE,
- "\u672a\u77e5\u7684 axis \u904d\u5386\u7c7b\u578b\uff1a {0}"},
-
-
- /** Axis traverser not supported */
- //public static final int ER_AXIS_NOT_SUPPORTED = 169;
-
-
- {
- ER_AXIS_NOT_SUPPORTED,
- "\u4e0d\u652f\u6301 axis \u904d\u5386\u5668\uff1a {0}"},
-
-
- /** No more DTM IDs are available */
- //public static final int ER_NO_DTMIDS_AVAIL = 170;
-
-
- {
- ER_NO_DTMIDS_AVAIL,
- "\u65e0\u6cd5\u4f7f\u7528\u591a\u4e2a DTM ID"},
-
-
/** Not supported */
//public static final int ER_NOT_SUPPORTED = 171;
@@ -1619,51 +1467,6 @@
"\u4e0d\u652f\u6301\uff1a {0}"},
- /** node must be non-null for getDTMHandleFromNode */
- //public static final int ER_NODE_NON_NULL = 172;
-
-
- {
- ER_NODE_NON_NULL,
- "\u8282\u70b9\u5728 getDTMHandleFromNode
\u4e2d\u5fc5\u987b\u975e\u7a7a "},
-
-
- /** Could not resolve the node to a handle */
- //public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
-
-
- {
- ER_COULD_NOT_RESOLVE_NODE,
- "\u65e0\u6cd5\u5c06\u8282\u70b9\u89e3\u6790\u4e3a\u53e5\u67c4 "},
-
-
- /** startParse may not be called while parsing */
- //public static final int ER_STARTPARSE_WHILE_PARSING = 174;
-
-
- {
- ER_STARTPARSE_WHILE_PARSING,
- "\u5728\u5206\u6790\u65f6\u53ef\u80fd\u4f1a\u8c03\u7528 startParse
"},
-
-
- /** startParse needs a non-null SAXParser */
- //public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
-
-
- {
- ER_STARTPARSE_NEEDS_SAXPARSER,
- "startParse \u9700\u8981\u4e00\u4e2a\u975e\u7a7a\u7684 SAXParser"},
-
-
- /** could not initialize parser with */
- //public static final int ER_COULD_NOT_INIT_PARSER = 176;
-
-
- {
- ER_COULD_NOT_INIT_PARSER,
- "\u65e0\u6cd5\u521d\u59cb\u5316\u5206\u6790\u5668 "},
-
-
/** Value for property {0} should be a Boolean instance */
//public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
@@ -1673,161 +1476,6 @@
"\u5c5e\u6027\u503c {0}
\u5e94\u5f53\u662f\u4e00\u4e2a\u5e03\u5c14\u5b9e\u4f8b "},
- /** exception creating new instance for pool */
- //public static final int ER_EXCEPTION_CREATING_POOL = 178;
-
-
- {
- ER_EXCEPTION_CREATING_POOL,
-
"\u521b\u5efa\u6c60\u7684\u65b0\u5b9e\u4f8b\u65f6\u51fa\u73b0\u5f02\u5e38 "},
-
-
- /** Path contains invalid escape sequence */
- //public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
-
-
- {
- ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
- "\u8def\u5f84\u5305\u542b\u65e0\u6548\u7684\u6362\u7801\u5e8f\u5217
"},
-
-
- /** Scheme is required! */
- //public static final int ER_SCHEME_REQUIRED = 180;
-
-
- {
- ER_SCHEME_REQUIRED,
- "\u9700\u8981\u914d\u7f6e\uff01 "},
-
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_IN_URI = 181;
-
-
- {
- ER_NO_SCHEME_IN_URI,
- "\u5728 URI \u4e2d\u672a\u627e\u5230\u914d\u7f6e\uff1a {0}"},
-
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_INURI = 182;
-
-
- {
- ER_NO_SCHEME_INURI,
- "\u5728 URI \u4e2d\u672a\u627e\u5230\u914d\u7f6e "},
-
-
- /** Path contains invalid character: */
- //public static final int ER_PATH_INVALID_CHAR = 183;
-
-
- {
- ER_PATH_INVALID_CHAR,
- "\u8def\u5f84\u5305\u542b\u65e0\u6548\u7684\u5b57\u7b26\uff1a {0}"},
-
-
- /** Cannot set scheme from null string */
- //public static final int ER_SCHEME_FROM_NULL_STRING = 184;
-
-
- {
- ER_SCHEME_FROM_NULL_STRING,
-
"\u65e0\u6cd5\u5728\u7a7a\u7684\u5b57\u7b26\u4e32\u4e2d\u8bbe\u7f6e\u914d\u7f6e
"},
-
-
- /** The scheme is not conformant. */
- //public static final int ER_SCHEME_NOT_CONFORMANT = 185;
-
-
- {
- ER_SCHEME_NOT_CONFORMANT,
- "\u914d\u7f6e\u4e0d\u4e00\u81f4\u3002 "},
-
-
- /** Host is not a well formed address */
- //public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
-
-
- {
- ER_HOST_ADDRESS_NOT_WELLFORMED,
- "\u4e3b\u673a\u5730\u5740\u7684\u683c\u5f0f\u4e0d\u6b63\u786e "},
-
-
- /** Port cannot be set when host is null */
- //public static final int ER_PORT_WHEN_HOST_NULL = 187;
-
-
- {
- ER_PORT_WHEN_HOST_NULL,
-
"\u5f53\u4e3b\u673a\u4e3a\u7a7a\u65f6\u65e0\u6cd5\u8bbe\u7f6e\u7aef\u53e3 "},
-
-
- /** Invalid port number */
- //public static final int ER_INVALID_PORT = 188;
-
-
- {
- ER_INVALID_PORT,
- "\u65e0\u6548\u7684\u7aef\u53e3\u53f7 "},
-
-
- /** Fragment can only be set for a generic URI */
- //public static final int ER_FRAG_FOR_GENERIC_URI = 189;
-
-
- {
- ER_FRAG_FOR_GENERIC_URI,
- "\u4ec5\u5728\u4e00\u822c\u7684 URI \u4e2d\u8bbe\u7f6e\u6bb5 "},
-
-
- /** Fragment cannot be set when path is null */
- //public static final int ER_FRAG_WHEN_PATH_NULL = 190;
-
-
- {
- ER_FRAG_WHEN_PATH_NULL,
- "\u5f53\u8def\u5f84\u4e3a\u7a7a\u65f6\u65e0\u6cd5\u8bbe\u7f6e\u6bb5
"},
-
-
- /** Fragment contains invalid character */
- //public static final int ER_FRAG_INVALID_CHAR = 191;
-
-
- {
- ER_FRAG_INVALID_CHAR,
- "\u6bb5\u4e2d\u5305\u542b\u65e0\u6548\u5b57\u7b26 "},
-
-
-
-
- /** Parser is already in use */
- //public static final int ER_PARSER_IN_USE = 192;
-
-
- {
- ER_PARSER_IN_USE,
- "\u5206\u6790\u5668\u6b63\u5728\u4f7f\u7528 "},
-
-
- /** Parser is already in use */
- //public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
-
-
- {
- ER_CANNOT_CHANGE_WHILE_PARSING,
- "\u5728\u5206\u6790\u65f6\u65e0\u6cd5\u6539\u53d8 {0} {1}"},
-
-
- /** Self-causation not permitted */
- //public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
-
-
- {
- ER_SELF_CAUSATION_NOT_PERMITTED,
- "\u4e0d\u5141\u8bb8\u81ea\u8eab\u5f15\u8d77\u7ed3\u679c "},
-
-
/** src attribute not yet supported for */
//public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
@@ -1855,51 +1503,6 @@
"\u65e0\u6cd5\u8bc6\u522b\u8f93\u51fa\u5c5e\u6027\uff1a {0}"},
- /** Userinfo may not be specified if host is not specified */
- //public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
-
-
- {
- ER_NO_USERINFO_IF_NO_HOST,
-
"\u5982\u679c\u672a\u6307\u5b9a\u4e3b\u673a\uff0c\u53ef\u80fd\u4e0d\u4f1a\u6307\u5b9a\u7528\u6237\u4fe1\u606f
"},
-
-
- /** Port may not be specified if host is not specified */
- //public static final int ER_NO_PORT_IF_NO_HOST = 199;
-
-
- {
- ER_NO_PORT_IF_NO_HOST,
-
"\u5982\u679c\u672a\u6307\u5b9a\u4e3b\u673a\uff0c\u53ef\u80fd\u4e0d\u4f1a\u6307\u5b9a\u7aef\u53e3
"},
-
-
- /** Query string cannot be specified in path and query string */
- //public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
-
-
- {
- ER_NO_QUERY_STRING_IN_PATH,
-
"\u5728\u8def\u5f84\u548c\u67e5\u8be2\u5b57\u7b26\u4e32\u4e2d\uff0c\u65e0\u6cd5\u6307\u5b9a\u67e5\u8be2\u5b57\u7b26\u4e32
"},
-
-
- /** Fragment cannot be specified in both the path and fragment */
- //public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
-
-
- {
- ER_NO_FRAGMENT_STRING_IN_PATH,
- "\u5728\u8def\u5f84\u548c\u6bb5\u4e2d\u65e0\u6cd5\u6307\u5b9a\u6bb5
"},
-
-
- /** Cannot initialize URI with empty parameters */
- //public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
-
-
- {
- ER_CANNOT_INIT_URI_EMPTY_PARMS,
- "\u65e0\u6cd5\u4f7f\u7528\u7a7a\u7684\u53c2\u6570\u521d\u59cb\u5316
URI"},
-
-
/** Failed creating ElemLiteralResult instance */
//public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
@@ -1967,15 +1570,6 @@
ER_ATTR_NOT_ALLOWED,
"\"{0}\" \u5c5e\u6027\u4e0d\u5141\u8bb8\u5728 {1}
\u5143\u7d20\u4e2d\u51fa\u73b0\uff01 "},
-
- /** Method not yet supported */
- //public static final int ER_METHOD_NOT_SUPPORTED = 210;
-
-
- {
- ER_METHOD_NOT_SUPPORTED,
- "\u65b9\u6cd5\u4ecd\u4e0d\u53d7\u652f\u6301 "},
-
/** Bad value */
//public static final int ER_BAD_VALUE = 211;
@@ -2003,24 +1597,6 @@
ER_ATTRIB_VALUE_NOT_RECOGNIZED,
"\u65e0\u6cd5\u8bc6\u522b {0} \u5c5e\u6027\u503c "},
-
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
-
-
- {
- ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
- "\u5f53\u524d\u65e0\u6cd5\u91cd\u65b0\u542f\u52a8
IncrementalSAXSource_Filter"},
-
-
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
-
-
- {
- ER_XMLRDR_NOT_BEFORE_STARTPARSE,
- "XMLReader \u672a\u5728 startParse
\u8bf7\u6c42\u4e4b\u524d\u51fa\u73b0 "},
-
/** Attempting to generate a namespace prefix with a null URI */
//public static final int ER_NULL_URI_NAMESPACE = 216;
@@ -2199,22 +1775,6 @@
"RundundentExprEliminator
\u4e2d\u7684\u7a0b\u5e8f\u5458\u58f0\u660e\uff1a {0}"},
-// Axis traverser not supported: {0}
- //public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
-
- {
- ER_AXIS_TRAVERSER_NOT_SUPPORTED,
- "\u8f74\u904d\u5386\u7a0b\u5e8f\u4e0d\u53d7\u652f\u6301\uff1a {0}"},
-
-
-// ListingErrorHandler created with null PrintWriter!
- //public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER =
236;
-
- {
- ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
- "\u7528\u7a7a PrintWriter \u6765\u521b\u5efa
ListingErrorHandler\uff01 "},
-
-
// {0}is not allowed in this position in the stylesheet!
//public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
@@ -2239,21 +1799,6 @@
{
INVALID_TCHAR,
"\u4f7f\u7528\u4e86\u975e\u6cd5\u503c\uff1a {1}\uff08\u5728 CHAR
\u5c5e\u6027 {0} \u4e2d\uff09\u3002 CHAR
\u7c7b\u578b\u7684\u5c5e\u6027\u5fc5\u987b\u53ea\u5305\u542b 1
\u4e2a\u5b57\u7b26\uff01 "},
-
-
- //public static final int ER_SYSTEMID_UNKNOWN = 240;
-
- {
- ER_SYSTEMID_UNKNOWN,
- "\u672a\u77e5\u7684 SystemId"},
-
-
- // Location of error unknown
- //public static final int ER_LOCATION_UNKNOWN = 241;
-
- {
- ER_LOCATION_UNKNOWN,
- "\u672a\u77e5\u7684\u9519\u8bef\u4f4d\u7f6e "},
// Note to translators: The following message is used if the value of
1.2.2.1 +1 -456
xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_zh_TW.java
Index: XSLTErrorResources_zh_TW.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/res/XSLTErrorResources_zh_TW.java,v
retrieving revision 1.2
retrieving revision 1.2.2.1
diff -u -r1.2 -r1.2.2.1
--- XSLTErrorResources_zh_TW.java 10 Jan 2003 02:02:02 -0000 1.2
+++ XSLTErrorResources_zh_TW.java 23 Jan 2003 16:12:52 -0000 1.2.2.1
@@ -81,7 +81,7 @@
{
/** Maximum error messages, this is needed to keep track of the number of
messages. */
- public static final int MAX_CODE = 253;
+ public static final int MAX_CODE = 201;
/** Maximum warnings, this is needed to keep track of the number of
warnings. */
public static final int MAX_WARNING = 29;
@@ -793,14 +793,6 @@
ER_SAX_EXCEPTION, "SAX \u7570\u5e38"},
- /** ER_FUNCTION_NOT_SUPPORTED */
- //public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
-
-
- {
- ER_FUNCTION_NOT_SUPPORTED, "\u4e0d\u652f\u63f4\u51fd\u5f0f\uff01"},
-
-
/** ER_XSLT_ERROR */
//public static final int ER_XSLT_ERROR = 81;
@@ -1103,15 +1095,6 @@
"InputSource \u4e0d\u53ef\u70ba\u7a7a\u503c"},
- /** Can't overwrite cause */
- //public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
-
-
- {
- ER_CANNOT_OVERWRITE_CAUSE,
- "\u7121\u6cd5\u6539\u5beb\u539f\u56e0"},
-
-
/** Could not initialize BSF Manager */
//public static final int ER_CANNOT_INIT_BSFMGR = 116;
@@ -1474,141 +1457,6 @@
"\u5728 {0} \u4e2d\u6c92\u6709\u767c\u73fe XML \u6a23\u5f0f\u8868
PI"},
- /** No default implementation found */
- //public static final int ER_NO_DEFAULT_IMPL = 156;
-
-
- {
- ER_NO_DEFAULT_IMPL,
- "\u627e\u4e0d\u5230\u9810\u8a2d\u5efa\u7f6e"},
-
-
- /** ChunkedIntArray({0}) not currently supported */
- //public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
-
-
- {
- ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
- "\u76ee\u524d\u4e0d\u652f\u63f4 ChunkedIntArray({0})"},
-
-
- /** Offset bigger than slot */
- //public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
-
-
- {
- ER_OFFSET_BIGGER_THAN_SLOT,
- "\u504f\u79fb\u5927\u65bc\u4ecb\u9762\u69fd"},
-
-
- /** Coroutine not available, id= */
- //public static final int ER_COROUTINE_NOT_AVAIL = 159;
-
-
- {
- ER_COROUTINE_NOT_AVAIL,
- "\u6c92\u6709 Coroutine \u53ef\u7528\uff0cid={0}"},
-
-
- /** CoroutineManager recieved co_exit() request */
- //public static final int ER_COROUTINE_CO_EXIT = 160;
-
-
- {
- ER_COROUTINE_CO_EXIT,
- "CoroutineManager \u6536\u5230 co_exit() \u8981\u6c42"},
-
-
- /** co_joinCoroutineSet() failed */
- //public static final int ER_COJOINROUTINESET_FAILED = 161;
-
-
- {
- ER_COJOINROUTINESET_FAILED,
- "co_joinCoroutineSet() \u5931\u6548"},
-
-
- /** Coroutine parameter error () */
- //public static final int ER_COROUTINE_PARAM = 162;
-
-
- {
- ER_COROUTINE_PARAM,
- "Coroutine \u53c3\u6578\u932f\u8aa4 ({0})"},
-
-
- /** UNEXPECTED: Parser doTerminate answers */
- //public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
-
-
- {
- ER_PARSER_DOTERMINATE_ANSWERS,
- "\nUNEXPECTED: \u5256\u6790\u5668 doTerminate \u56de\u7b54 {0}"},
-
-
- /** parse may not be called while parsing */
- //public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
-
-
- {
- ER_NO_PARSE_CALL_WHILE_PARSING,
-
"\u5728\u9032\u884c\u5256\u6790\u6642\u672a\u80fd\u547c\u53eb\u5256\u6790"},
-
-
- /** Error: typed iterator for axis {0} not implemented */
- //public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
-
-
- {
- ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "\u932f\u8aa4\uff1a\u5c0d\u8ef8 {0}
\u8f38\u5165\u7684\u91cd\u8986\u5668\u6c92\u6709\u57f7\u884c"},
-
-
- /** Error: iterator for axis {0} not implemented */
- //public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
-
-
- {
- ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
- "\u932f\u8aa4\uff1a\u8ef8 {0}
\u7684\u91cd\u8986\u5668\u6c92\u6709\u57f7\u884c "},
-
-
- /** Iterator clone not supported */
- //public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
-
-
- {
- ER_ITERATOR_CLONE_NOT_SUPPORTED,
- "\u4e0d\u652f\u63f4\u91cd\u8986\u5668\u8907\u88fd"},
-
-
- /** Unknown axis traversal type */
- //public static final int ER_UNKNOWN_AXIS_TYPE = 168;
-
-
- {
- ER_UNKNOWN_AXIS_TYPE,
- "\u672a\u77e5\u8ef8\u904d\u6b77\u985e\u578b\uff1a{0}"},
-
-
- /** Axis traverser not supported */
- //public static final int ER_AXIS_NOT_SUPPORTED = 169;
-
-
- {
- ER_AXIS_NOT_SUPPORTED,
- "\u4e0d\u652f\u63f4\u8ef8\u904d\u8a2a\u5668\uff1a{0}"},
-
-
- /** No more DTM IDs are available */
- //public static final int ER_NO_DTMIDS_AVAIL = 170;
-
-
- {
- ER_NO_DTMIDS_AVAIL,
- "\u6c92\u6709\u53ef\u7528\u7684 DTM ID"},
-
-
/** Not supported */
//public static final int ER_NOT_SUPPORTED = 171;
@@ -1618,51 +1466,6 @@
"\u4e0d\u652f\u63f4\uff1a{0}"},
- /** node must be non-null for getDTMHandleFromNode */
- //public static final int ER_NODE_NON_NULL = 172;
-
-
- {
- ER_NODE_NON_NULL,
- "\u5c0d getDTMHandleFromNode
\u800c\u8a00\uff0c\u7bc0\u9ede\u5fc5\u9808\u70ba\u975e\u7a7a\u503c"},
-
-
- /** Could not resolve the node to a handle */
- //public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
-
-
- {
- ER_COULD_NOT_RESOLVE_NODE,
- "\u7121\u6cd5\u89e3\u8b6f\u7bc0\u9ede\u70ba\u63a7\u9ede"},
-
-
- /** startParse may not be called while parsing */
- //public static final int ER_STARTPARSE_WHILE_PARSING = 174;
-
-
- {
- ER_STARTPARSE_WHILE_PARSING,
- "\u5728\u9032\u884c\u5256\u6790\u6642\u672a\u547c\u53eb startParse"},
-
-
- /** startParse needs a non-null SAXParser */
- //public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
-
-
- {
- ER_STARTPARSE_NEEDS_SAXPARSER,
- "startParse \u9700\u8981\u975e\u7a7a\u503c\u7684 SAXParser"},
-
-
- /** could not initialize parser with */
- //public static final int ER_COULD_NOT_INIT_PARSER = 176;
-
-
- {
- ER_COULD_NOT_INIT_PARSER,
- "\u7121\u6cd5\u8d77\u59cb\u8a2d\u5b9a\u5256\u6790\u5668\uff0c\u4ee5"},
-
-
/** Value for property {0} should be a Boolean instance */
//public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
@@ -1672,161 +1475,6 @@
"\u5167\u5bb9 {0}
\u7684\u503c\u61c9\u8a72\u662f\u4e00\u500b\u5e03\u6797\u6848\u4f8b"},
- /** exception creating new instance for pool */
- //public static final int ER_EXCEPTION_CREATING_POOL = 178;
-
-
- {
- ER_EXCEPTION_CREATING_POOL,
-
"\u5efa\u7acb\u5132\u5b58\u6c60\u7684\u65b0\u6848\u4f8b\u6642\u767c\u751f\u7570\u5e38"},
-
-
- /** Path contains invalid escape sequence */
- //public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
-
-
- {
- ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
- "\u8def\u5f91\u5305\u542b\u7121\u6548\u9038\u51fa\u5e8f\u5217"},
-
-
- /** Scheme is required! */
- //public static final int ER_SCHEME_REQUIRED = 180;
-
-
- {
- ER_SCHEME_REQUIRED,
- "\u7db1\u8981\u662f\u5fc5\u9700\u7684\uff01"},
-
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_IN_URI = 181;
-
-
- {
- ER_NO_SCHEME_IN_URI,
- "\u5728 URI \u627e\u4e0d\u5230\u7db1\u8981\uff1a{0}"},
-
-
- /** No scheme found in URI */
- //public static final int ER_NO_SCHEME_INURI = 182;
-
-
- {
- ER_NO_SCHEME_INURI,
- "\u5728 URI \u627e\u4e0d\u5230\u7db1\u8981"},
-
-
- /** Path contains invalid character: */
- //public static final int ER_PATH_INVALID_CHAR = 183;
-
-
- {
- ER_PATH_INVALID_CHAR,
- "\u8def\u5f91\u5305\u542b\u7121\u6548\u7684\u5b57\u5143\uff1a{0}"},
-
-
- /** Cannot set scheme from null string */
- //public static final int ER_SCHEME_FROM_NULL_STRING = 184;
-
-
- {
- ER_SCHEME_FROM_NULL_STRING,
- "\u7121\u6cd5\u5f9e\u7a7a\u5b57\u4e32\u8a2d\u5b9a\u7db1\u8981"},
-
-
- /** The scheme is not conformant. */
- //public static final int ER_SCHEME_NOT_CONFORMANT = 185;
-
-
- {
- ER_SCHEME_NOT_CONFORMANT,
- "\u7db1\u8981\u4e0d\u4e00\u81f4\u3002"},
-
-
- /** Host is not a well formed address */
- //public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
-
-
- {
- ER_HOST_ADDRESS_NOT_WELLFORMED,
- "\u4e3b\u6a5f\u6c92\u6709\u5b8c\u6574\u7684\u4f4d\u5740"},
-
-
- /** Port cannot be set when host is null */
- //public static final int ER_PORT_WHEN_HOST_NULL = 187;
-
-
- {
- ER_PORT_WHEN_HOST_NULL,
-
"\u4e3b\u6a5f\u70ba\u7a7a\u503c\u6642\uff0c\u7121\u6cd5\u8a2d\u5b9a\u901a\u8a0a\u57e0"},
-
-
- /** Invalid port number */
- //public static final int ER_INVALID_PORT = 188;
-
-
- {
- ER_INVALID_PORT,
- "\u7121\u6548\u7684\u901a\u8a0a\u57e0\u7de8\u865f"},
-
-
- /** Fragment can only be set for a generic URI */
- //public static final int ER_FRAG_FOR_GENERIC_URI = 189;
-
-
- {
- ER_FRAG_FOR_GENERIC_URI,
- "\u53ea\u80fd\u5c0d\u540c\u5c6c\u7684 URI \u8a2d\u5b9a\u7247\u6bb5"},
-
-
- /** Fragment cannot be set when path is null */
- //public static final int ER_FRAG_WHEN_PATH_NULL = 190;
-
-
- {
- ER_FRAG_WHEN_PATH_NULL,
-
"\u8def\u5f91\u70ba\u7a7a\u503c\u6642\uff0c\u7121\u6cd5\u8a2d\u5b9a\u7247\u6bb5"},
-
-
- /** Fragment contains invalid character */
- //public static final int ER_FRAG_INVALID_CHAR = 191;
-
-
- {
- ER_FRAG_INVALID_CHAR,
- "\u7247\u6bb5\u5305\u542b\u7121\u6548\u5b57\u5143"},
-
-
-
-
- /** Parser is already in use */
- //public static final int ER_PARSER_IN_USE = 192;
-
-
- {
- ER_PARSER_IN_USE,
- "\u5256\u6790\u5668\u5df2\u5728\u4f7f\u7528\u4e2d"},
-
-
- /** Parser is already in use */
- //public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
-
-
- {
- ER_CANNOT_CHANGE_WHILE_PARSING,
- "\u5256\u6790\u6642\u7121\u6cd5\u8b8a\u66f4 {0} {1}"},
-
-
- /** Self-causation not permitted */
- //public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
-
-
- {
- ER_SELF_CAUSATION_NOT_PERMITTED,
- "\u4e0d\u5141\u8a31\u81ea\u884c\u5f15\u8d77"},
-
-
/** src attribute not yet supported for */
//public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
@@ -1854,51 +1502,6 @@
"\u672a\u80fd\u8fa8\u8b58\u8f38\u51fa\u5167\u5bb9\uff1a{0}"},
- /** Userinfo may not be specified if host is not specified */
- //public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
-
-
- {
- ER_NO_USERINFO_IF_NO_HOST,
-
"\u5982\u679c\u6c92\u6709\u6307\u5b9a\u4e3b\u6a5f\uff0c\u4e0d\u53ef\u6307\u5b9a
Userinfo"},
-
-
- /** Port may not be specified if host is not specified */
- //public static final int ER_NO_PORT_IF_NO_HOST = 199;
-
-
- {
- ER_NO_PORT_IF_NO_HOST,
-
"\u5982\u679c\u6c92\u6709\u6307\u5b9a\u4e3b\u6a5f\uff0c\u4e0d\u53ef\u6307\u5b9a\u901a\u8a0a\u57e0"},
-
-
- /** Query string cannot be specified in path and query string */
- //public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
-
-
- {
- ER_NO_QUERY_STRING_IN_PATH,
-
"\u5728\u8def\u5f91\u53ca\u67e5\u8a62\u5b57\u4e32\u4e2d\u4e0d\u53ef\u6307\u5b9a\u67e5\u8a62\u5b57\u4e32"},
-
-
- /** Fragment cannot be specified in both the path and fragment */
- //public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
-
-
- {
- ER_NO_FRAGMENT_STRING_IN_PATH,
-
"\u7121\u6cd5\u5728\u8def\u5f91\u548c\u7247\u6bb5\u4e2d\u6307\u5b9a\u7247\u6bb5"},
-
-
- /** Cannot initialize URI with empty parameters */
- //public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
-
-
- {
- ER_CANNOT_INIT_URI_EMPTY_PARMS,
- "\u7121\u6cd5\u8d77\u59cb\u8a2d\u5b9a\u7a7a\u767d\u53c3\u6578\u7684
URI"},
-
-
/** Failed creating ElemLiteralResult instance */
//public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
@@ -1967,15 +1570,6 @@
ER_ATTR_NOT_ALLOWED,
"{1} \u5143\u7d20\u4e0a\u4e0d\u5141\u8a31\u6709 \"{0}\"
\u5c6c\u6027\uff01"},
-
- /** Method not yet supported */
- //public static final int ER_METHOD_NOT_SUPPORTED = 210;
-
-
- {
- ER_METHOD_NOT_SUPPORTED,
- "\u4e0d\u652f\u63f4\u65b9\u6cd5 "},
-
/** Bad value */
//public static final int ER_BAD_VALUE = 211;
@@ -2003,24 +1597,6 @@
ER_ATTRIB_VALUE_NOT_RECOGNIZED,
"\u4e0d\u80fd\u8fa8\u8b58 {0} \u5c6c\u6027\u503c "},
-
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
-
-
- {
- ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
- "IncrementalSAXSource_Filter
\u76ee\u524d\u7121\u6cd5\u91cd\u65b0\u555f\u52d5"},
-
-
- /** IncrementalSAXSource_Filter not currently restartable */
- //public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
-
-
- {
- ER_XMLRDR_NOT_BEFORE_STARTPARSE,
- "XMLReader \u4e0d\u5728 startParse \u8981\u6c42\u4e4b\u524d"},
-
/** Attempting to generate a namespace prefix with a null URI */
//public static final int ER_NULL_URI_NAMESPACE = 216;
@@ -2199,22 +1775,6 @@
"\u7a0b\u5f0f\u8a2d\u8a08\u5e2b\u5728 RundundentExprEliminator
\u4e2d\u7684\u5224\u65b7\uff1a{0}"},
- // Axis traverser not supported: {0}
- //public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
-
- {
- ER_AXIS_TRAVERSER_NOT_SUPPORTED,
- "\u4e0d\u652f\u63f4\u8ef8\u904d\u6b77\u5668\uff1a{0}"},
-
-
- // ListingErrorHandler created with null PrintWriter!
- //public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER
= 236;
-
- {
- ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
- "\u5efa\u7acb\u7684 ListingErrorHandler \u5177\u6709\u7a7a
PrintWriter\uff01"},
-
-
// {0}is not allowed in this position in the stylesheet!
//public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
@@ -2239,21 +1799,6 @@
{
INVALID_TCHAR,
"\u4e0d\u6b63\u78ba\u7684\u503c\uff1a{1} \u88ab\u7528\u65bc CHAR
\u5c6c\u6027\uff1a{0}\u3002 CHAR
\u985e\u578b\u7684\u5c6c\u6027\u53ea\u80fd\u662f 1 \u500b\u5b57\u5143\uff01"},
-
-
- //public static final int ER_SYSTEMID_UNKNOWN = 240;
-
- {
- ER_SYSTEMID_UNKNOWN,
- "SystemId \u672a\u77e5"},
-
-
- // Location of error unknown
- //public static final int ER_LOCATION_UNKNOWN = 241;
-
- {
- ER_LOCATION_UNKNOWN,
- "\u672a\u77e5\u7684\u932f\u8aa4\u4f4d\u7f6e"},
// Note to translators: The following message is used if the value of
No revision
No revision
1.14.2.5 +1 -1
xml-xalan/java/src/org/apache/xalan/serialize/SerializerToXML.java
Index: SerializerToXML.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/serialize/SerializerToXML.java,v
retrieving revision 1.14.2.4
retrieving revision 1.14.2.5
diff -u -r1.14.2.4 -r1.14.2.5
--- SerializerToXML.java 10 Dec 2002 20:17:59 -0000 1.14.2.4
+++ SerializerToXML.java 23 Jan 2003 16:12:54 -0000 1.14.2.5
@@ -2560,7 +2560,7 @@
try
{
TreeWalker walker = new TreeWalker(this,
- new org.apache.xpath.DOM2Helper());
+ new
org.apache.xml.utils.DOM2Helper());
walker.traverse(node);
}
No revision
No revision
1.12.16.4 +1 -84
xml-xalan/java/src/org/apache/xalan/templates/Constants.java
Index: Constants.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/templates/Constants.java,v
retrieving revision 1.12.16.3
retrieving revision 1.12.16.4
diff -u -r1.12.16.3 -r1.12.16.4
--- Constants.java 4 Oct 2002 09:24:45 -0000 1.12.16.3
+++ Constants.java 23 Jan 2003 16:12:55 -0000 1.12.16.4
@@ -62,91 +62,8 @@
* <meta name="usage" content="advanced"/>
* Primary constants used in the TransformerImpl classes.
*/
-public class Constants
+public class Constants extends org.apache.xml.utils.Constants
{
-
- /**
- * Mnemonics for standard XML Namespace URIs, as Java Strings:
- * <ul>
- * <li>S_XMLNAMESPACEURI (http://www.w3.org/XML/1998/namespace) is the
- * URI permanantly assigned to the "xml:" prefix. This is used for some
- * features built into the XML specification itself, such as xml:space
- * and xml:lang. It was defined by the W3C's XML Namespaces spec.</li>
- * <li>S_XSLNAMESPACEURL (http://www.w3.org/1999/XSL/Transform) is the
- * URI which indicates that a name may be an XSLT directive. In most
- * XSLT stylesheets, this is bound to the "xsl:" prefix. It's defined
- * by the W3C's XSLT Recommendation.</li>
- * <li>S_OLDXSLNAMESPACEURL (http://www.w3.org/XSL/Transform/1.0) was
- * used in early prototypes of XSLT processors for much the same purpose
- * as S_XSLNAMESPACEURL. It is now considered obsolete, and the version
- * of XSLT which it signified is not fully compatable with the final
- * XSLT Recommendation, so what it really signifies is a badly obsolete
- * stylesheet.</li>
- * </ul> */
- public static final String
- S_XMLNAMESPACEURI = "http://www.w3.org/XML/1998/namespace",
- S_XSLNAMESPACEURL = "http://www.w3.org/1999/XSL/Transform",
- S_OLDXSLNAMESPACEURL = "http://www.w3.org/XSL/Transform/1.0";
-
- /** Authorship mnemonics, as Java Strings. Not standardized,
- * as far as I know.
- * <ul>
- * <li>S_VENDOR -- the name of the organization/individual who published
- * this XSLT processor. </li>
- * <li>S_VENDORURL -- URL where one can attempt to retrieve more
- * information about this publisher and product.</li>
- * </ul>
- */
- public static final String
- S_VENDOR = "Apache Software Foundation",
- S_VENDORURL = "http://xml.apache.org";
-
- /** S_BUILTIN_EXTENSIONS_URL is a mnemonic for the XML Namespace
- *(http://xml.apache.org/xalan) predefined to signify Xalan's
- * built-in XSLT Extensions. When used in stylesheets, this is often
- * bound to the "xalan:" prefix.
- */
- public static final String
- S_BUILTIN_EXTENSIONS_URL = "http://xml.apache.org/xalan";
-
- /**
- * The old built-in extension url. It is still supported for
- * backward compatibility.
- */
- public static final String
- S_BUILTIN_OLD_EXTENSIONS_URL = "http://xml.apache.org/xslt";
-
- /**
- * Xalan extension namespaces.
- */
- public static final String
- // The old namespace for Java extension
- S_EXTENSIONS_OLD_JAVA_URL = "http://xml.apache.org/xslt/java",
- // The new namespace for Java extension
- S_EXTENSIONS_JAVA_URL = "http://xml.apache.org/xalan/java",
- S_EXTENSIONS_LOTUSXSL_JAVA_URL = "http://xsl.lotus.com/java",
- S_EXTENSIONS_XALANLIB_URL = "http://xml.apache.org/xalan",
- S_EXTENSIONS_REDIRECT_URL = "http://xml.apache.org/xalan/redirect",
- S_EXTENSIONS_PIPE_URL = "http://xml.apache.org/xalan/PipeDocument",
- S_EXTENSIONS_SQL_URL = "http://xml.apache.org/xalan/sql";
-
- /**
- * EXSLT extension namespaces.
- */
- public static final String
- S_EXSLT_COMMON_URL = "http://exslt.org/common",
- S_EXSLT_MATH_URL = "http://exslt.org/math",
- S_EXSLT_SETS_URL = "http://exslt.org/sets",
- S_EXSLT_DATETIME_URL = "http://exslt.org/dates-and-times",
- S_EXSLT_FUNCTIONS_URL = "http://exslt.org/functions",
- S_EXSLT_DYNAMIC_URL = "http://exslt.org/dynamic",
- S_EXSLT_STRINGS_URL = "http://exslt.org/strings";
-
-
- /**
- * The minimum version of XSLT supported by this processor.
- */
- public static final double XSLTVERSUPPORTED = 1.0;
/**
* IDs for XSL element types. These are associated
No revision
No revision
1.10.16.2 +3 -6
xml-xalan/java/src/org/apache/xalan/transformer/MsgMgr.java
Index: MsgMgr.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/transformer/MsgMgr.java,v
retrieving revision 1.10.16.1
retrieving revision 1.10.16.2
diff -u -r1.10.16.1 -r1.10.16.2
--- MsgMgr.java 17 Jan 2003 00:48:26 -0000 1.10.16.1
+++ MsgMgr.java 23 Jan 2003 16:12:55 -0000 1.10.16.2
@@ -88,9 +88,6 @@
/** Transformer instance */
private TransformerImpl m_transformer;
- /** XSLMessages instance, sets things up for issuing messages */
- private static XSLMessages m_XSLMessages = new XSLMessages();
-
/**
* Warn the user of a problem.
* This is public for access by extensions.
@@ -187,7 +184,7 @@
throws TransformerException
{
- String formattedMsg = m_XSLMessages.createWarning(msg, args);
+ String formattedMsg = XSLMessages.createWarning(msg, args);
ErrorListener errHandler = m_transformer.getErrorListener();
if (null != errHandler)
@@ -291,7 +288,7 @@
{
//msg = (null == msg) ? XSLTErrorResources.ER_PROCESSOR_ERROR : msg;
- String formattedMsg = m_XSLMessages.createMessage(msg, args);
+ String formattedMsg = XSLMessages.createMessage(msg, args);
// Locator locator = m_stylesheetLocatorStack.isEmpty()
// ? null :
@@ -342,7 +339,7 @@
throws TransformerException
{
- String formattedMsg = m_XSLMessages.createMessage(msg, args);
+ String formattedMsg = XSLMessages.createMessage(msg, args);
// Locator locator = m_stylesheetLocatorStack.isEmpty()
// ? null :
1.18.10.2 +1 -1
xml-xalan/java/src/org/apache/xalan/transformer/TransformerIdentityImpl.java
Index: TransformerIdentityImpl.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/transformer/TransformerIdentityImpl.java,v
retrieving revision 1.18.10.1
retrieving revision 1.18.10.2
diff -u -r1.18.10.1 -r1.18.10.2
--- TransformerIdentityImpl.java 12 Sep 2002 16:07:32 -0000
1.18.10.1
+++ TransformerIdentityImpl.java 23 Jan 2003 16:12:55 -0000
1.18.10.2
@@ -321,7 +321,7 @@
}
else
{
- TreeWalker walker = new TreeWalker(this, new
org.apache.xpath.DOM2Helper(), m_systemID);
+ TreeWalker walker = new TreeWalker(this, new
org.apache.xml.utils.DOM2Helper(), m_systemID);
walker.traverse(dNode);
}
}
1.131.2.6 +7 -83
xml-xalan/java/src/org/apache/xalan/transformer/TransformerImpl.java
Index: TransformerImpl.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/transformer/TransformerImpl.java,v
retrieving revision 1.131.2.5
retrieving revision 1.131.2.6
diff -u -r1.131.2.5 -r1.131.2.6
--- TransformerImpl.java 26 Nov 2002 20:26:26 -0000 1.131.2.5
+++ TransformerImpl.java 23 Jan 2003 16:12:55 -0000 1.131.2.6
@@ -114,8 +114,9 @@
import org.apache.xml.utils.QName;
import org.apache.xml.utils.SAXSourceLocator;
import org.apache.xml.utils.WrappedRuntimeException;
+import org.apache.xml.utils.DOMHelper;
+import org.apache.xml.utils.ThreadControllerWrapper;
import org.apache.xpath.Arg;
-import org.apache.xpath.DOMHelper;
import org.apache.xpath.VariableStack;
import org.apache.xpath.XPathContext;
import org.apache.xpath.objects.XObject;
@@ -1023,7 +1024,7 @@
}
else
{
- doc = org.apache.xpath.DOMHelper.createDocument();
+ doc = DOMHelper.createDocument();
outputNode = doc;
type = outputNode.getNodeType();
@@ -3072,83 +3073,6 @@
m_modes.pop();
}
- ////////////////////////
- // Implement Runnable //
- ////////////////////////
-
- /**
- * Base thread controler for xalan. Must be overriden with
- * a derived class to support thread pooling.
- *
- * All thread-related stuff is in this class.
- *
- * <p><em>WARNING!</em> This class will probably move since the DTM
- * CoroutineSAXParser depends on it. This class should move
- * to the CoroutineSAXParser. You can use it, but be aware
- * that your code will have to change when the move occurs.</p>
- */
- public static class ThreadControler
- {
-
- /**
- * Will get a thread from the pool, execute the task
- * and return the thread to the pool.
- *
- * The return value is used only to wait for completion
- *
- *
- * NEEDSDOC @param task
- * @param priority if >0 the task will run with the given priority
- * ( doesn't seem to be used in xalan, since it's allways the default )
- * @returns The thread that is running the task, can be used
- * to wait for completion
- *
- * NEEDSDOC ($objectName$) @return
- */
- public Thread run(Runnable task, int priority)
- {
-
- Thread t = new Thread(task);
-
- t.start();
-
- // if( priority > 0 )
- // t.setPriority( priority );
- return t;
- }
-
- /**
- * Wait until the task is completed on the worker
- * thread.
- *
- * NEEDSDOC @param worker
- * NEEDSDOC @param task
- *
- * @throws InterruptedException
- */
- public void waitThread(Thread worker, Runnable task)
- throws InterruptedException
- {
-
- // This should wait until the transformThread is considered not alive.
- worker.join();
- }
- }
-
- /** NEEDSDOC Field tpool */
- static ThreadControler tpool = new ThreadControler();
-
- /**
- * Change the ThreadControler that will be used to
- * manage the transform threads.
- *
- * NEEDSDOC @param tp
- */
- public static void setThreadControler(ThreadControler tp)
- {
- tpool = tp;
- }
-
/**
* Called by SourceTreeHandler to start the transformation
* in a separate thread
@@ -3159,7 +3083,7 @@
{
// used in SourceTreeHandler
- Thread t = tpool.run(this, priority);
+ Thread t = ThreadControllerWrapper.runThread(this, priority);
this.setTransformThread(t);
}
@@ -3171,7 +3095,7 @@
*/
public void runTransformThread()
{
- tpool.run(this, -1);
+ ThreadControllerWrapper.runThread(this, -1);
}
/**
@@ -3182,7 +3106,7 @@
*/
public static void runTransformThread(Runnable runnable)
{
- tpool.run(runnable, -1);
+ ThreadControllerWrapper.runThread(runnable, -1);
}
/**
@@ -3205,7 +3129,7 @@
{
try
{
- tpool.waitThread(transformThread, this);
+ ThreadControllerWrapper.waitThread(transformThread, this);
if (!this.hasTransformThreadErrorCatcher())
{
1.12.10.1 +0 -1
xml-xalan/java/src/org/apache/xalan/transformer/TreeWalker2Result.java
Index: TreeWalker2Result.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/transformer/TreeWalker2Result.java,v
retrieving revision 1.12
retrieving revision 1.12.10.1
diff -u -r1.12 -r1.12.10.1
--- TreeWalker2Result.java 20 Jul 2001 12:42:31 -0000 1.12
+++ TreeWalker2Result.java 23 Jan 2003 16:12:56 -0000 1.12.10.1
@@ -64,7 +64,6 @@
import org.apache.xml.dtm.ref.DTMTreeWalker;
import org.apache.xml.utils.MutableAttrListImpl;
import org.apache.xalan.templates.ElemTemplateElement;
-import org.apache.xpath.DOMHelper;
import org.apache.xpath.XPathContext;
/**
No revision
No revision
1.1.2.5 +4 -4
xml-xalan/java/src/org/apache/xalan/xsltc/dom/Attic/XSLTCDTMManager.java
Index: XSLTCDTMManager.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/dom/Attic/XSLTCDTMManager.java,v
retrieving revision 1.1.2.4
retrieving revision 1.1.2.5
diff -u -r1.1.2.4 -r1.1.2.5
--- XSLTCDTMManager.java 27 Sep 2002 16:48:56 -0000 1.1.2.4
+++ XSLTCDTMManager.java 23 Jan 2003 16:12:57 -0000 1.1.2.5
@@ -94,8 +94,8 @@
import org.apache.xml.utils.XMLString;
import org.apache.xml.utils.XMLStringFactory;
-import org.apache.xalan.res.XSLTErrorResources;
-import org.apache.xalan.res.XSLMessages;
+import org.apache.xml.res.XMLErrorResources;
+import org.apache.xml.res.XMLMessages;
/**
* The default implementation for the DTMManager.
@@ -170,7 +170,7 @@
if (classname == null)
{
- throw new
DTMConfigurationException(XSLMessages.createMessage(XSLTErrorResources.ER_NO_DEFAULT_IMPL,
null)); //"No default implementation found");
+ throw new
DTMConfigurationException(XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_DEFAULT_IMPL,
null)); //"No default implementation found");
}
DTMManager factoryImpl;
@@ -520,7 +520,7 @@
// It should have been handled by a derived class or the caller
// made a mistake.
- throw new
DTMException(XSLMessages.createMessage(XSLTErrorResources.ER_NOT_SUPPORTED, new
Object[]{source})); //"Not supported: " + source);
+ throw new
DTMException(XMLMessages.createXMLMessage(XMLErrorResources.ER_NOT_SUPPORTED,
new Object[]{source})); //"Not supported: " + source);
}
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]