You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by Dirk-Willem van Gulik <di...@covalent.net> on 2000/07/24 18:17:44 UTC

Re: cvs commit: xml-xalan/src/org/apache/xalan/xslt Process.java


On 23 Jul 2000 sboag@locus.apache.org wrote:

> sboag       00/07/23 10:06:17
> 
>   Modified:    src/org/apache/xalan/xslt Process.java
>   Log:
>   Do -NS as undocumented switch.  (I think this is fairly useless, but...)
>   
>   Revision  Changes    Path
>   1.22      +14 -0     xml-xalan/src/org/apache/xalan/xslt/Process.java
>   
>   Index: Process.java
>   ===================================================================
>   RCS file: /home/cvs/xml-xalan/src/org/apache/xalan/xslt/Process.java,v
>   retrieving revision 1.21
>   retrieving revision 1.22
>   diff -u -r1.21 -r1.22
>   --- Process.java	2000/06/28 13:54:57	1.21
>   +++ Process.java	2000/07/23 17:06:16	1.22
>   @@ -390,6 +390,20 @@
>            {
>              setQuietMode = true;
>            }
>   +        else if("-NS".equalsIgnoreCase(argv[i]))
>   +        {
>   +          String yesno;
>   +          if(((i+1) < argv.length) && (argv[i+1].charAt(0) != '-'))
>   +          {
>   +            yesno = argv[++i];
>   +          }
>   +          else
>   +          {
>   +            yesno = "yes";
>   +          }
>   +
>   +          ((org.apache.xalan.xpath.xdom.XercesLiaison)xmlProcessorLiaison).setUseDOM2getNamespaceURI(yesno.equalsIgnoreCase("yes"));
>   +        }
>            else if("-VALIDATE".equalsIgnoreCase(argv[i]))
>            {
>              String shouldValidate;
>   
>   
>   
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
> For additional commands, e-mail: xalan-cvs-help@xml.apache.org
>