Diff for /parser3/src/classes/xdoc.C between versions 1.6 and 1.138

version 1.6, 2001/09/28 15:58:26 version 1.138, 2004/02/18 11:47:04
Line 1 Line 1
 /** @file  /** @file
         Parser: @b xdoc parser class.          Parser: @b xdoc parser class.
   
         Copyright (c) 2001 ArtLebedev Group (http://www.artlebedev.com)          Copyright (c) 2001-2004 ArtLebedev Group (http://www.artlebedev.com)
         Author: Alexander Petrosyan <paf@design.ru> (http://design.ru/paf)          Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
   
         $Id$  
 */  */
 #include "classes.h"  
   #include "pa_config_includes.h"
   
 #ifdef XML  #ifdef XML
   
   static const char * const IDENT_XDOC_C="$Date$";
   
   #include "gdome.h"
   #include "libxml/tree.h"
   #include "libxml/HTMLtree.h"
   #include "libxslt/xsltInternals.h"
   #include "libxslt/transform.h"
   #include "libxslt/xsltutils.h"
   #include "libxslt/variables.h"
   #include "libxslt/imports.h"
   
   #include "pa_vmethod_frame.h"
   
   #include "pa_stylesheet_manager.h"
 #include "pa_request.h"  #include "pa_request.h"
 #include "pa_vxdoc.h"  #include "pa_vxdoc.h"
 #include "pa_xslt_stylesheet_manager.h"  #include "pa_charset.h"
 #include "pa_stylesheet_connection.h"  
 #include "pa_vfile.h"  #include "pa_vfile.h"
   #include "pa_xml_exception.h"
 #include "xnode.h"  #include "xnode.h"
   
 #include <strstream>  
 #include <Include/PlatformDefinitions.hpp>  
 #include <util/PlatformUtils.hpp>  
 #include <util/TransENameMap.hpp>  
 #include <XalanTransformer/XalanTransformer.hpp>  
 #include <XalanTransformer/XalanParsedSource.hpp>  
 #include <XMLSupport/FormatterToXML.hpp>  
 #include <XMLSupport/FormatterToHTML.hpp>  
 #include <XMLSupport/FormatterToText.hpp>  
 #include <XMLSupport/FormatterTreeWalker.hpp>  
 #include <PlatformSupport/XalanFileOutputStream.hpp>  
 #include <PlatformSupport/XalanOutputStreamPrintWriter.hpp>  
 #include <PlatformSupport/DOMStringPrintWriter.hpp>  
 #include <XalanDOM/XalanElement.hpp>  
 #include <XalanDOM/XalanNodeList.hpp>  
   
 // defines  // defines
   
 #define XDOC_CLASS_NAME "xdoc"  #define XDOC_CLASS_NAME "xdoc"
Line 41 Line 39
 #define XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML "html"  #define XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML "html"
 #define XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT "text"  #define XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT "text"
   
 #define XDOC_OUTPUT_ENCODING_OPTION_NAME "encoding"  
   
 #define XDOC_OUTPUT_DEFAULT_INDENT 4  
   
 // class  // class
   
 class MXdoc : public MXnode {  class MXdoc: public MXnode {
 public: // VStateless_class  public: // VStateless_class
         Value *create_new_value(Pool& pool) { return new(pool) VXdoc(pool); }          Value* create_new_value(Pool&) { return new VXdoc(0, 0); }
   
 public:  public:
         MXdoc(Pool& pool);          MXdoc();
   
 public: // Methoded  
         bool used_directly() { return true; }  
         void configure_admin(Request& r);  
 };  };
   
 // methods  // global variable
   
 class ParserStringXalanOutputStream: public XalanOutputStream {  
 public:  
           
         explicit ParserStringXalanOutputStream(String& astring) : fstring(astring) {}  
   
 protected: // XalanOutputStream  DECLARE_CLASS_VAR(xdoc, new MXdoc, 0);
   
         virtual void writeData(const char *theBuffer, unsigned long theBufferLength) {  // helper classes
                 char *copy=(char *)fstring.malloc((size_t)theBufferLength);  
                 memcpy(copy, theBuffer, (size_t)theBufferLength);  
                 fstring.APPEND_CLEAN(copy, (size_t)theBufferLength, "xdoc", 0);  
         }  
   
         virtual void doFlush() {}  class xmlOutputBuffer_auto_ptr {
   public:
           explicit xmlOutputBuffer_auto_ptr(xmlOutputBuffer *_APtr = 0) 
                   : _Owns(_APtr != 0), _Ptr(_APtr) {}
           xmlOutputBuffer_auto_ptr(const xmlOutputBuffer_auto_ptr& _Y) 
                   : _Owns(_Y._Owns), _Ptr(_Y.release()) {}
           xmlOutputBuffer_auto_ptr& operator=(const xmlOutputBuffer_auto_ptr& _Y) 
                   {if (this != &_Y)
                           {if (_Ptr != _Y.get())
                                   {if (_Owns && _Ptr)
                                           xmlOutputBufferClose(_Ptr);
                                   _Owns = _Y._Owns; }
                           else if (_Y._Owns)
                                   _Owns = true;
                           _Ptr = _Y.release(); }
                   return (*this); }
           ~xmlOutputBuffer_auto_ptr()
                   {if (_Owns && _Ptr)
                           xmlOutputBufferClose(_Ptr); }
           xmlOutputBuffer& operator*() const 
                   {return (*get()); }
           xmlOutputBuffer *operator->() const 
                   {return (get()); }
           xmlOutputBuffer *get() const 
                   {return (_Ptr); }
           xmlOutputBuffer *release() const 
                   {((xmlOutputBuffer_auto_ptr *)this)->_Owns = false;
                   return (_Ptr); }
   private:
           bool _Owns;
           xmlOutputBuffer *_Ptr;
   };
   
   class xsltTransformContext_auto_ptr {
   public:
           explicit xsltTransformContext_auto_ptr(xsltTransformContext *_APtr = 0) 
                   : _Owns(_APtr != 0), _Ptr(_APtr) {}
           xsltTransformContext_auto_ptr(const xsltTransformContext_auto_ptr& _Y) 
                   : _Owns(_Y._Owns), _Ptr(_Y.release()) {}
           xsltTransformContext_auto_ptr& operator=(const xsltTransformContext_auto_ptr& _Y) 
                   {if (this != &_Y)
                           {if (_Ptr != _Y.get())
                                   {if (_Owns && _Ptr)
                                           xsltFreeTransformContext(_Ptr);
                                   _Owns = _Y._Owns; }
                           else if (_Y._Owns)
                                   _Owns = true;
                           _Ptr = _Y.release(); }
                   return (*this); }
           ~xsltTransformContext_auto_ptr()
                   {if (_Owns && _Ptr)
                           xsltFreeTransformContext(_Ptr); }
           xsltTransformContext& operator*() const 
                   {return (*get()); }
           xsltTransformContext *operator->() const 
                   {return (get()); }
           xsltTransformContext *get() const 
                   {return (_Ptr); }
           xsltTransformContext *release() const 
                   {((xsltTransformContext_auto_ptr *)this)->_Owns = false;
                   return (_Ptr); }
 private:  private:
           bool _Owns;
           xsltTransformContext *_Ptr;
   };
   
         String& fstring;  class xsltStylesheet_auto_ptr {
           public:
           explicit xsltStylesheet_auto_ptr(xsltStylesheet *_APtr = 0) 
                   : _Owns(_APtr != 0), _Ptr(_APtr) {}
           xsltStylesheet_auto_ptr(const xsltStylesheet_auto_ptr& _Y) 
                   : _Owns(_Y._Owns), _Ptr(_Y.release()) {}
           xsltStylesheet_auto_ptr& operator=(const xsltStylesheet_auto_ptr& _Y) 
                   {if (this != &_Y)
                           {if (_Ptr != _Y.get())
                                   {if (_Owns && _Ptr)
                                           xsltFreeStylesheet(_Ptr);
                                   _Owns = _Y._Owns; }
                           else if (_Y._Owns)
                                   _Owns = true;
                           _Ptr = _Y.release(); }
                   return (*this); }
           ~xsltStylesheet_auto_ptr()
                   {if (_Owns && _Ptr)
                           xsltFreeStylesheet(_Ptr); }
           xsltStylesheet& operator*() const 
                   {return (*get()); }
           xsltStylesheet *operator->() const 
                   {return (get()); }
           xsltStylesheet *get() const 
                   {return (_Ptr); }
           xsltStylesheet *release() const 
                   {((xsltStylesheet_auto_ptr *)this)->_Owns = false;
                   return (_Ptr); }
   private:
           bool _Owns;
           xsltStylesheet *_Ptr;
 };  };
   
 static void create_optioned_listener(  // methods
                                                                          const char *& content_type, const char *& charset, FormatterListener *& listener,   
                                                                          Pool& pool,   
                                                                          const String& method_name, MethodParams *params, int index, Writer& writer) {  
         // default encoding from pool  
         const String *scharset=&pool.get_charset();  
         const String *method=0;  
         XalanDOMString xalan_encoding;  
   
         if(params->size()>index) {  static void writeNode(Request& r, GdomeNode *node, 
                 Value& voptions=params->as_no_junction(index, "options must not be code");                                            GdomeException exc) {
                 if(voptions.is_defined()) {          if(!node || exc)
                         if(Hash *options=voptions.get_hash()) {                  throw XmlException(0, exc);
                                 // $.method[xml|html|text]  
                                 if(Value *vmethod=static_cast<Value *>(options->get(*new(pool)   
                                         String(pool, XDOC_OUTPUT_METHOD_OPTION_NAME))))  
                                         method=&vmethod->as_string();  
   
                                 // $.encoding[windows-1251|...]          // write out result
                                 if(Value *vencoding=static_cast<Value *>(options->get(*new(pool)           r.write_no_lang(*new VXnode(&r.charsets, node));
                                         String(pool, XDOC_OUTPUT_ENCODING_OPTION_NAME)))) {  }
                                         scharset=&vencoding->as_string();  
                                 }  
                         } else  
                                 PTHROW(0, 0,  
                                         &method_name,  
                                         "options must be hash");  
                 }  
         }  
   
         xalan_encoding.append(charset=scharset->cstr());  // Element createElement(in DOMString tagName) raises(DOMException);
         if(!method/*default='xml'*/ || *method == XDOC_OUTPUT_METHOD_OPTION_VALUE_XML) {  static void _createElement(Request& r, MethodParams& params) {
                 content_type="text/xml";          VXdoc& vdoc=GET_SELF(r, VXdoc);
                 listener=new FormatterToXML(writer,  
                         XalanDOMString(),  // version          const String& tagName=params.as_string(0, "tagName must be string");
                         true, // doIndent  
                         XDOC_OUTPUT_DEFAULT_INDENT, // indent           GdomeException exc;
                         xalan_encoding  // encoding          GdomeNode *node=
                 );                  (GdomeNode *)gdome_doc_createElement(vdoc.get_document(), 
         } else if(*method == XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML) {                  r.transcode(tagName).use(),
                 content_type="text/html";                  &exc);
                 listener=new FormatterToHTML(writer,          writeNode(r, node, exc);
                         xalan_encoding,  // encoding  
                         XalanDOMString(),  // mediaType   
                         XalanDOMString(),  // doctypeSystem; String to be printed at the top of the document   
                         XalanDOMString(),  // doctypePublic    
                         true, // doIndent   
                         XDOC_OUTPUT_DEFAULT_INDENT // indent   
                 );  
         } else if(*method == XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT) {  
                 content_type="text/plain";  
                 listener=new FormatterToText(writer,  
                         xalan_encoding  // encoding  
                 );  
         } else  
                 PTHROW(0, 0,  
                         method,  
                         XDOC_OUTPUT_METHOD_OPTION_NAME " option is invalid; valid methods are: "  
                                 "'" XDOC_OUTPUT_METHOD_OPTION_VALUE_XML "', "  
                                 "'" XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML "', "  
                                 "'" XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT "'");                    
   
         // never reached  
 }  }
   
 static void _save(Request& r, const String& method_name, MethodParams *params) {  // Element createElementNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);
         Pool& pool=r.pool();  static void _createElementNS(Request& r, MethodParams& params) {
         VXnode& vnode=*static_cast<VXnode *>(r.self);          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         // filespec          // namespaceURI;localName
         const String& file_name=params->as_string(0, "file name must not be code");          const String& namespaceURI=params.as_string(0, "namespaceURI must be string");
         const char *filespec=r.absolute(file_name).cstr(String::UL_FILE_SPEC);          const String& qualifiedName=params.as_string(1, "qualifiedName must be string");
           
         // node  
         XalanNode& node=vnode.get_node(pool, &method_name);  
   
         try {          GdomeException exc;
                 XalanFileOutputStream stream(XalanDOMString(filespec, strlen(filespec)));          GdomeNode *node=
                 XalanOutputStreamPrintWriter writer(stream);                  (GdomeNode *)gdome_doc_createElementNS(vdoc.get_document(), 
                 const char *content_type, *charset;                  r.transcode(namespaceURI).use(),
                 FormatterListener *formatterListener;                  r.transcode(qualifiedName).use(),
                 create_optioned_listener(content_type, charset, formatterListener,                   &exc);
                         pool, method_name, params, 1, writer);          writeNode(r, node, exc);
                 FormatterTreeWalker treeWalker(*formatterListener);  
                 treeWalker.traverse(&node); // Walk that node and produce the XML...  
         } catch(const XSLException& e) {  
                 r._throw(&method_name, e);  
         }  
 }  }
   
 static void _string(Request& r, const String& method_name, MethodParams *params) {  // DocumentFragment createDocumentFragment()
         Pool& pool=r.pool();  static void _createDocumentFragment(Request& r, MethodParams&) {
         VXnode& vnode=*static_cast<VXnode *>(r.self);          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         // node          GdomeException exc;
         XalanNode& node=vnode.get_node(pool, &method_name);          GdomeNode *node=
                   (GdomeNode *)gdome_doc_createDocumentFragment(
         try {                  vdoc.get_document(),
                 String parserString=*new(pool) String(pool);                  &exc);
                 ParserStringXalanOutputStream stream(parserString);          writeNode(r, node, exc);
                 XalanOutputStreamPrintWriter writer(stream);  
                 const char *content_type, *charset;  
                 FormatterListener *formatterListener;  
                 create_optioned_listener(content_type, charset, formatterListener,   
                         pool, method_name, params, 0, writer);  
                 FormatterTreeWalker treeWalker(*formatterListener);  
                 treeWalker.traverse(&node); // Walk that node and produce the XML...  
   
                 // write out result  
                 r.write_no_lang(parserString);  
         } catch(const XSLException& e) {  
                 r._throw(&method_name, e);  
         }  
 }  }
   
   // Text createTextNode(in DOMString data);
   static void _createTextNode(Request& r, MethodParams& params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
           const String& data=params.as_string(0, "data must be string");
   
           GdomeException exc;
           GdomeNode *node=(GdomeNode *)gdome_doc_createTextNode(
                   vdoc.get_document(),
                   r.transcode(data).use(),
                   &exc);
           writeNode(r, node, exc);
   }
   
 static void _file(Request& r, const String& method_name, MethodParams *params) {  // Comment createComment(in DOMString data)
         Pool& pool=r.pool();  static void _createComment(Request& r, MethodParams& params) {
         VXnode& vnode=*static_cast<VXnode *>(r.self);          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         // node          const String& data=params.as_string(0, "data must be string");
         XalanNode& node=vnode.get_node(pool, &method_name);  
           GdomeException exc;
         try {          GdomeNode *node=(GdomeNode *)gdome_doc_createComment(
                 String& parserString=*new(pool) String(pool);                  vdoc.get_document(),
                 ParserStringXalanOutputStream stream(parserString);                  r.transcode(data).use(),
                 XalanOutputStreamPrintWriter writer(stream);                  &exc);
                 const char *content_type, *charset;          writeNode(r, node, exc);
                 FormatterListener *formatterListener;  }
                 create_optioned_listener(content_type, charset, formatterListener,   
                         pool, method_name, params, 0, writer);  
                 FormatterTreeWalker treeWalker(*formatterListener);  
                 treeWalker.traverse(&node); // Walk that node and produce the XML...  
   
                 // write out result  // CDATASection createCDATASection(in DOMString data) raises(DOMException);
                 VFile& vfile=*new(pool) VFile(pool);  static void _createCDATASection(Request& r, MethodParams& params) {
                 const char *cstr=parserString.cstr();          VXdoc& vdoc=GET_SELF(r, VXdoc);
                 String *scontent_type=new(pool) String(pool, content_type);  
                 Value *vcontent_type;          const String& data=params.as_string(0, "data must be string");
                 if(charset) {  
                         VHash *vhcontent_type=new(pool) VHash(pool);          GdomeException exc;
                         vhcontent_type->hash().put(*value_name, new(pool) VString(*scontent_type));          GdomeNode *node=(GdomeNode *)gdome_doc_createCDATASection(
                         String *scharset=new(pool) String(pool, charset);                  vdoc.get_document(),
                         vhcontent_type->hash().put(*new(pool) String(pool, "charset"), new(pool) VString(*scharset));                  r.transcode(data).use(),
                         vcontent_type=vhcontent_type;                  &exc);
                 } else          writeNode(r, node, exc);
                         vcontent_type=new(pool) VString(*scontent_type);  
                 vfile.set(false/*tainted*/, cstr, strlen(cstr), 0/*file_name*/, vcontent_type);  
                 r.write_no_lang(vfile);  
         } catch(const XSLException& e) {  
                 r._throw(&method_name, e);  
         }  
 }  }
   
 static void _set(Request& r, const String& method_name, MethodParams *params) {  // ProcessingInstruction createProcessingInstruction(in DOMString target,in DOMString data) raises(DOMException);
         Pool& pool=r.pool();  static void _createProcessingInstruction(Request& r, MethodParams& params) {
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         Value& vxml=params->as_junction(0, "xml must be code");          const String& target=params.as_string(0, "data must be string");
         Temp_lang temp_lang(r, String::UL_XML);          const String& data=params.as_string(1, "data must be string");
         const String& xml=r.process(vxml).as_string();  
           GdomeException exc;
         std::istrstream stream(xml.cstr());          GdomeNode *node=(GdomeNode *)gdome_doc_createProcessingInstruction(
         const XalanParsedSource* parsedSource;                  vdoc.get_document(),
         int error=vdoc.transformer().parseSource(&stream, parsedSource);                  r.transcode(target).use(), 
                   r.transcode(data).use(),
         if(error)                  &exc);
                 PTHROW(0, 0,          writeNode(r, node, exc);
                         &method_name,  }
                         vdoc.transformer().getLastError());  
   
         // replace any previous parsed source  // Attr createAttribute(in DOMString name) raises(DOMException);
         vdoc.set_parsed_source(*parsedSource);  static void _createAttribute(Request& r, MethodParams& params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
           const String& name=params.as_string(0, "name must be string");
   
           GdomeException exc;
           GdomeNode *node=(GdomeNode *)gdome_doc_createAttribute(
                   vdoc.get_document(),
                   r.transcode(name).use(),
                   &exc);
           writeNode(r, node, exc);
 }  }
   
 static void _load(Request& r, const String& method_name, MethodParams *params) {  // Attr createAttributeNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);
         Pool& pool=r.pool();  static void _createAttributeNS(Request& r, MethodParams& params) {
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
           // namespaceURI;qualifiedName
           const String& namespaceURI=params.as_string(0, "namespaceURI must be string");
           const String& qualifiedName=params.as_string(1, "name must be string");
   
           GdomeException exc;
           GdomeNode *node=(GdomeNode *)gdome_doc_createAttributeNS(
                   vdoc.get_document(),
                   r.transcode(namespaceURI).use(),
                   r.transcode(qualifiedName).use(),
                   &exc);
           writeNode(r, node, exc);
   }
   
         // filespec  // EntityReference createEntityReference(in DOMString name) raises(DOMException);
         const String& file_name=params->as_string(0, "file name must not be code");  static void _createEntityReference(Request& r, MethodParams& params) {
         const char *filespec=r.absolute(file_name).cstr(String::UL_FILE_SPEC);          VXdoc& vdoc=GET_SELF(r, VXdoc);
           
         const XalanParsedSource* parsedSource;          const String& name=params.as_string(0, "name must be string");
         int error=vdoc.transformer().parseSource(filespec, parsedSource);  
           GdomeException exc;
           GdomeNode *node=(GdomeNode *)gdome_doc_createEntityReference(
                   vdoc.get_document(),
                   r.transcode(name).use(),
                   &exc);
           writeNode(r, node, exc);
   }
   
         if(error)  // NodeList getElementsByTagName(in DOMString name);
                 PTHROW(0, 0,  static void _getElementsByTagName(Request& r, MethodParams& params) {
                         &file_name,          VXdoc& vdoc=GET_SELF(r, VXdoc);
                         vdoc.transformer().getLastError());  
           const String& name=params.as_string(0, "name must be string");
   
           VHash& result=*new VHash;
           GdomeException exc;
           if(GdomeNodeList *nodes=
                   gdome_doc_getElementsByTagName(
                           vdoc.get_document(), 
                           r.transcode(name).use(), 
                           &exc)) {
                   gulong length=gdome_nl_length(nodes, &exc);
                   for(gulong i=0; i<length; i++)
                           result.hash().put(
                                   String::Body::Format(i), 
                                   new VXnode(&r.charsets, gdome_nl_item(nodes, i, &exc)));
           } else if(exc)
                   throw XmlException(0, exc);
   
         // replace any previous parsed source          // write out result
         vdoc.set_parsed_source(*parsedSource);          r.write_no_lang(result);
 }  }
   
 static void add_xslt_param(const Hash::Key& aattribute, Hash::Val *ameaning,   static void _getElementsByTagNameNS(Request& r, MethodParams& params) {
                                                    void *info) {          VXdoc& vdoc=GET_SELF(r, VXdoc);
         XalanTransformer& transformer=*static_cast<XalanTransformer *>(info);  
         const char *attribute_cstr=aattribute.cstr();  
         const char *meaning_cstr=static_cast<Value *>(ameaning)->as_string().cstr();  
   
         transformer.setStylesheetParam(  
                 XalanDOMString(attribute_cstr),    
                 XalanDOMString(meaning_cstr));  
 }  
 static void _xslt(Request& r, const String& method_name, MethodParams *params) {  
         Pool& pool=r.pool();  
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         // params          // namespaceURI;localName
         if(params->size()>1) {          const String& namespaceURI=params.as_string(0, "namespaceURI must be string");
                 Value& vparams=params->as_no_junction(1, "transform parameters parameter must not be code");          const String& localName=params.as_string(1, "localName must be string");
                 if(vparams.is_defined())  
                         if(Hash *params=vparams.get_hash())  
                                 params->for_each(add_xslt_param, &vdoc.transformer());  
                         else  
                                 PTHROW(0, 0,  
                                         &method_name,  
                                         "transform parameters parameter must be hash");  
         }  
   
         // source  
         const XalanParsedSource &parsed_source=vdoc.get_parsed_source(pool, &method_name);  
   
         // stylesheet          GdomeException exc;
         const String& stylesheet_file_name=params->as_string(0, "file name must not be code");          VHash& result=*new VHash;
         const String& stylesheet_filespec=r.absolute(stylesheet_file_name);          if(GdomeNodeList *nodes=
         //_asm int 3;                  gdome_doc_getElementsByTagNameNS(
         Stylesheet_connection& connection=XSLT_stylesheet_manager->get_connection(stylesheet_filespec);                          vdoc.get_document(), 
                           r.transcode(namespaceURI).use(),
         // target                          r.transcode(localName).use(),
         XalanDocument* target=vdoc.parser_liaison().createDocument();                          &exc)) {
         XSLTResultTarget domResultTarget(target);                  gulong length=gdome_nl_length(nodes, &exc);
                   for(gulong i=0; i<length; i++)
         // transform                          result.hash().put(
         int error=vdoc.transformer().transform(                                  String::Body::Format(i), 
                 parsed_source,                                   new VXnode(&r.charsets, gdome_nl_item(nodes, i, &exc)));
                 &connection.stylesheet(true/*nocache*/),           }
                 domResultTarget);  
         connection.close();  
         if(error)  
                 PTHROW(0, 0,  
                         &stylesheet_file_name,  
                         vdoc.transformer().getLastError());  
   
         // write out result          // write out result
         VXdoc& result=*new(pool) VXdoc(pool);  
         result.set_document(*target);  
         r.write_no_lang(result);          r.write_no_lang(result);
 }  }
   
 static void _getElementById(Request& r, const String& method_name, MethodParams *params) {  static void _getElementById(Request& r, MethodParams& params) {
         Pool& pool=r.pool();          VXdoc& vdoc=GET_SELF(r, VXdoc);
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         // elementId          // elementId
         const char *elementId=params->as_string(0, "elementID must not be code").cstr(String::UL_AS_IS);          const String& elementId=params.as_string(0, "elementID must be string");
   
         if(XalanElement *element=          GdomeException exc;
                 vdoc.get_document(pool, &method_name).getElementById(XalanDOMString(elementId))) {          if(GdomeNode *node=(GdomeNode *)gdome_doc_getElementById(
                   vdoc.get_document(),
                   r.transcode(elementId).use(),
                   &exc)) {
                 // write out result                  // write out result
                 VXnode& result=*new(pool) VXnode(pool, element);                  r.write_no_lang(*new VXnode(&r.charsets, node));
                 r.write_no_lang(result);          } else if(exc || xmlHaveGenericErrors())
         }                  throw XmlException(&elementId, exc);
   }
   
   static void _importNode(Request& r, MethodParams& params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
           GdomeNode *importedNode=
                   as_node(params, 0, "importedNode must be node");
           bool deep=
                   params.as_bool(1, "deep must be bool", r);
   
           GdomeException exc;
           GdomeNode *outputNode=gdome_doc_importNode(vdoc.get_document(), 
                   importedNode,
                   deep, &exc);
           if(exc)
                   throw XmlException(0, exc);
   
           // write out result
           r.write_no_lang(*new VXnode(&r.charsets, outputNode));
 }  }
 /*  /*
 static void _getElementsByTagName(Request& r, const String& method_name, MethodParams *params) {  GdomeElement *gdome_doc_createElementNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc);
         Pool& pool=r.pool();  GdomeAttr *gdome_doc_createAttributeNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc);
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  */
   
         // tagname  
         const char *tagname=params->as_string(0, "tagname must not be code").cstr(String::UL_AS_IS);  
   
         VHash& result=*new(pool) VHash(pool);  
         if(const XalanNodeList *nodes=  
                 vdoc.get_document(pool, &method_name).getElementsByTagName(XalanDOMString(tagname))) {  
                 for(int i=0; i<nodes->getLength(); i++) {  
                         String& skey=*new(pool) String(pool);  
                         {  
                                 char *buf=(char *)pool.malloc(MAX_NUMBER);  
                                 snprintf(buf, MAX_NUMBER, "%d", i);  
                                 skey << buf;  
                         }  
   
                         result.hash().put(skey, new(pool) VXnode(pool, nodes->item(i)));  static void _create(Request& r, MethodParams& params) {
           Charset& source_charset=r.charsets.source();
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
           Value& param=params[params.count()-1];
           GdomeDocument *document;
           bool set_encoding=false;
           if(param.get_junction()) { // {<?xml?>...}
                   Temp_lang temp_lang(r, String::L_XML);
                   const String& xml=r.process_to_string(param);
   
                   const char* cstr=xml.cstr(String::L_UNSPECIFIED, 0, &r.charsets);
                   document=(GdomeDocument *)
                           gdome_xml_n_mkref((xmlNode *)xmlParseMemory(
                                   cstr, strlen(cstr)
                           ));
                   //printf("document=0x%p\n", document);
                   if(!document || xmlHaveGenericErrors()) {
                           GdomeException exc=0;
                           throw XmlException(0, exc);
                 }                  }
   
                   // must be last action in if, see after if}
           } else { // [name]
                   const String& qualifiedName=param.as_string();
   
                   GdomeException exc;
   #if 0
                   GdomeDocumentType *documentType=gdome_di_createDocumentType (
                           docimpl, 
                           r.transcode(qualifiedName), 
                           0/*publicId*/, 
                           0/*systemId*/, 
                           &exc);
                   if(!documentType || exc || xmlHaveGenericErrors())
                           throw Exception(
                                   method_name, 
                                   exc);
                   /// +xalan createXMLDecl ?
   #endif
                   document=gdome_di_createDocument(domimpl, 
                           0/*namespaceURI*/, 
                           r.transcode(qualifiedName).use(), 
                           0/*doctype*/, 
                           &exc);
                   if(!document || exc || xmlHaveGenericErrors())
                           throw XmlException(0, exc);
   
                   set_encoding=true;
                   // must be last action in if, see after if}
         }          }
           // must be first action after if}
           // replace any previous parsed source
           {
                   vdoc.set_document(&r.charsets, document); 
                   GdomeException exc;
                   gdome_doc_unref(document, &exc);
           }
           
           // URI 
           const char* URI_cstr;
           const char* URI_cstr_ptr;
           if(params.count()>1) { // absolute(param)
                   const String& URI=params.as_string(0, "URI must be string");
                   URI_cstr=URI_cstr_ptr=r.absolute(URI).cstr();
           } else // default = disk path to requested document
                   URI_cstr=r.request_info.path_translated;
           xmlDoc *doc=gdome_xml_doc_get_xmlDoc(document);
           if(URI_cstr)
                   doc->URL=source_charset.transcode_buf2xchar(URI_cstr, strlen(URI_cstr));
   
           if(set_encoding) {
                   const char* source_charset_name=source_charset.NAME().cstr();
                   doc->encoding=source_charset.transcode_buf2xchar(source_charset_name, strlen(source_charset_name));
           }
   }
   
         // write out result  static void _load(Request& r, MethodParams& params) {
         r.write_no_lang(result);          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
           // filespec
           const String* uri=&params.as_string(0, "uri must be string");
           const char* uri_cstr;
           if(uri->pos("://")==STRING_NOT_FOUND) // disk path
                   uri_cstr=r.absolute(*uri).cstr(String::L_FILE_SPEC);
           else // xxx:// 
                   uri_cstr=uri->cstr(String::L_AS_IS); // leave as-is for xmlParseFile to handle
   
           /// todo!! add SAFE MODE!!
           GdomeDocument *document=(GdomeDocument *)
                   gdome_xml_n_mkref((xmlNode *)xmlParseFile(uri_cstr));
           if(!document || xmlHaveGenericErrors()) {
                   GdomeException exc=0;
                   throw XmlException(uri, exc);
           }
           // must be first action after if}
           // replace any previous parsed source
           {
                   vdoc.set_document(&r.charsets, document); 
                   GdomeException exc;
                   gdome_doc_unref(document, &exc);
           }
   /* xmlParseFile does that itself. old peace for xmlParseMemory
           const char* URI_cstr=uri->cstr();
           xmlDoc *doc=gdome_xml_doc_get_xmlDoc(document);
           if(URI_cstr)
                   doc->URL=r.charsets.source().transcode_buf2xchar(URI_cstr, strlen(URI_cstr));
   */
   }
   
   static void param_option_over_output_option(
                                               HashStringValue& param_options, const char* option_name,
                                               const String*& output_option) {
           if(Value* value=param_options.get(String::Body(option_name)))
                   output_option=&value->as_string();
   }
   static void param_option_over_output_option(
                                               HashStringValue& param_options, const char* option_name,
                                               bool& output_option) {
           if(Value* value=param_options.get(String::Body(option_name))) {
                   const String& s=value->as_string();
                   if(s=="yes")
                           output_option=true;
                   else if(s=="no")
                           output_option=false;
                   else
                           throw Exception("parser.runtime",
                                   &s,
                                   "%s must be either 'yes' or 'no'", option_name);
           }
 }  }
   
 static void _getElementsByTagNameNS(Request& r, const String& method_name, MethodParams *params) {  /// @test valid_options check
         Pool& pool=r.pool();  static void prepare_output_options(Request& r,
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);                                     MethodParams& params, size_t index,
                                      VXdoc::Output_options& oo) {
   /*
   <xsl:output
     !method = "xml" | "html" | "text" | qname-but-not-ncname 
     !version = nmtoken 
     !encoding = string 
     !omit-xml-declaration = "yes" | "no"
     !standalone = "yes" | "no"
     !doctype-public = string 
     !doctype-system = string 
     cdata-section-elements = qnames 
     !indent = "yes" | "no"
     !media-type = string /> 
   */
   
         // namespaceURI;localName          // configuring with options from parameter...
         const char *namespaceURI=params->as_string(0, "namespaceURI must not be code").cstr(String::UL_AS_IS);          if(params.count()>index) {
         const char *localName=params->as_string(0, "localName must not be code").cstr(String::UL_AS_IS);                  Value& voptions=params.as_no_junction(index, "options must be string");
                   if(voptions.is_defined()) {
                           if(HashStringValue *options=voptions.get_hash()) {
                                   // $.method[xml|html|text]
                                   if(Value* vmethod=options->get(String::Body(XDOC_OUTPUT_METHOD_OPTION_NAME)))
                                           oo.method=&vmethod->as_string();
   
         VHash& result=*new(pool) VHash(pool);                                  // $.version[1.0]
         if(const XalanNodeList *nodes=                                  param_option_over_output_option(*options, "version", oo.version);
                 vdoc.get_document(pool, &method_name).getElementsByTagNameNS(                                  // $.encoding[windows-1251|...]
                         XalanDOMString(namespaceURI), XalanDOMString(localName))) {                                  param_option_over_output_option(*options, "encoding", oo.encoding);
                 for(int i=0; i<nodes->getLength(); i++) {                                  // $.omit-xml-declaration[yes|no]
                         String& skey=*new(pool) String(pool);                                  param_option_over_output_option(*options, "omit-xml-declaration", oo.omitXmlDeclaration);
                         {                                  // $.standalone[yes|no]
                                 char *buf=(char *)pool.malloc(MAX_NUMBER);                                  param_option_over_output_option(*options, "standalone", oo.standalone);
                                 snprintf(buf, MAX_NUMBER, "%d", i);                                  // $.indent[yes|no]
                                 skey << buf;                                  param_option_over_output_option(*options, "indent", oo.indent);
                                   // $.media-type[text/{html|xml|plain}]
                                   param_option_over_output_option(*options, "media-type", oo.mediaType);                           
                         }                          }
   
                         result.hash().put(skey, new(pool) VXnode(pool, nodes->item(i)));  
                 }                  }
         }          }
   
         // write out result          // default encoding from pool
         r.write_no_lang(result);          if(!oo.encoding)
                   oo.encoding=new String(r.charsets.source().NAME(), String::L_TAINTED);
           // default method=xml
           if(!oo.method)
                   oo.method=new String(XDOC_OUTPUT_METHOD_OPTION_VALUE_XML);
           // default mediaType = depending on method
           if(!oo.mediaType) {
                   if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_XML)
                           oo.mediaType=new String("text/xml");
                   else if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML)
                           oo.mediaType=new String("text/html");
                   else // XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT & all others
                           oo.mediaType=new String("text/plain");
           }
 }  }
 */  
 // constructor  
   
 MXdoc::MXdoc(Pool& apool) : MXnode(apool) {  /// patching piecees from libxslt and libxml not to set meta encoding
         set_name(*NEW String(pool(), XDOC_CLASS_NAME));  static int
   pa_xsltSaveResultTo(xmlOutputBufferPtr buf, xmlDocPtr result,
                  xsltStylesheetPtr style) {
       const xmlChar *encoding;
       int base;
       const xmlChar *method;
       int indent;
   
       if ((buf == NULL) || (result == NULL) || (style == NULL))
           return(-1);
       if ((result->children == NULL) ||
           ((result->children->type == XML_DTD_NODE) &&
            (result->children->next == NULL)))
           return(0);
   
       if ((style->methodURI != NULL) &&
           ((style->method == NULL) ||
            (!xmlStrEqual(style->method, (const xmlChar *) "xhtml")))) {
           xsltGenericError(xsltGenericErrorContext,
                   "xsltSaveResultTo : unknown ouput method\n");
           return(-1);
       }
   
       base = buf->written;
   
       XSLT_GET_IMPORT_PTR(method, style, method)
       XSLT_GET_IMPORT_PTR(encoding, style, encoding)
       XSLT_GET_IMPORT_INT(indent, style, indent);
   
       if ((method == NULL) && (result->type == XML_HTML_DOCUMENT_NODE))
           method = BAD_CAST "html";
   
       if ((method != NULL) &&
           (xmlStrEqual(method, (const xmlChar *) "html"))) {
           if (indent == -1)
               indent = 1;
   
       int is_xhtml = 0;
       xmlDtdPtr dtd = xmlGetIntSubset(result);
       if (dtd != NULL) {
           is_xhtml = xmlIsXHTML(dtd->SystemID, dtd->ExternalID);
           if (is_xhtml < 0)
               is_xhtml = 0;
           }
           xmlNodePtr cur=result->last;
           if(!cur) {
                   is_xhtml=0;
           }
   
         // ^xdoc.save[some.xml]          if(is_xhtml) {
         // ^xdoc.save[some.xml;options hash]                  // xhtmlNodeDumpOutput is static :(
         add_native_method("save", Method::CT_DYNAMIC, _save, 1, 2);                  if((cur->parent == (xmlNodePtr) result) &&
               (cur->type == XML_ELEMENT_NODE) &&
                           (xmlStrEqual(cur->name, BAD_CAST "html"))) {
                           //cur->name=BAD_CAST "html ";
                   }
   
         // ^xdoc.string[] <doc/>                  method = BAD_CAST "xml";
         // ^xdoc.string[options hash] <doc/>          } else {
         add_native_method("string", Method::CT_DYNAMIC, _string, 0, 1);                  htmlDocContentDumpFormatOutput(buf, result, (const char *) encoding,
                                          indent);
                   xmlOutputBufferFlush(buf);
                   goto finish;
           }
           }
       
           if ((method != NULL) &&
                  (xmlStrEqual(method, (const xmlChar *) "text"))) {
           xmlNodePtr cur;
   
           cur = result->children;
           while (cur != NULL) {
               if (cur->type == XML_TEXT_NODE)
                   xmlOutputBufferWriteString(buf, (const char *) cur->content);
   
               /*
                * Skip to next node
                */
               if (cur->children != NULL) {
                   if ((cur->children->type != XML_ENTITY_DECL) &&
                       (cur->children->type != XML_ENTITY_REF_NODE) &&
                       (cur->children->type != XML_ENTITY_NODE)) {
                       cur = cur->children;
                       continue;
                   }
               }
               if (cur->next != NULL) {
                   cur = cur->next;
                   continue;
               }
               
               do {
                   cur = cur->parent;
                   if (cur == NULL)
                       break;
                   if (cur == (xmlNodePtr) style->doc) {
                       cur = NULL;
                       break;
                   }
                   if (cur->next != NULL) {
                       cur = cur->next;
                       break;
                   }
               } while (cur != NULL);
           }
           xmlOutputBufferFlush(buf);
       } else {
           int omitXmlDecl;
           int standalone;
   
           XSLT_GET_IMPORT_INT(omitXmlDecl, style, omitXmlDeclaration);
           XSLT_GET_IMPORT_INT(standalone, style, standalone);
   
           if (omitXmlDecl != 1) {
               xmlOutputBufferWriteString(buf, "<?xml version=");
               if (result->version != NULL) 
                   xmlBufferWriteQuotedString(buf->buffer, result->version);
               else
                   xmlOutputBufferWriteString(buf, "\"1.0\"");
               if (encoding == NULL) {
                   if (result->encoding != NULL)
                       encoding = result->encoding;
                   else if (result->charset != XML_CHAR_ENCODING_UTF8)
                       encoding = (const xmlChar *)
                                  xmlGetCharEncodingName((xmlCharEncoding)
                                                         result->charset);
               }
               if (encoding != NULL) {
                   xmlOutputBufferWriteString(buf, " encoding=");
                   xmlBufferWriteQuotedString(buf->buffer, (xmlChar *) encoding);
               }
               switch (standalone) {
                   case 0:
                       xmlOutputBufferWriteString(buf, " standalone=\"no\"");
                       break;
                   case 1:
                       xmlOutputBufferWriteString(buf, " standalone=\"yes\"");
                       break;
                   default:
                       break;
               }
               xmlOutputBufferWriteString(buf, "?>\n");
           }
           if (result->children != NULL) {
               xmlNodePtr child = result->children;
   
         // ^xdoc.file[] file with "<doc/>"              while (child != NULL) {
         // ^xdoc.file[options hash] file with "<doc/>"                  xmlNodeDumpOutput(buf, result, child, 0, (indent == 1),
         add_native_method("file", Method::CT_DYNAMIC, _file, 0, 1);                                    (const char *) encoding);
                   if (child->type == XML_DTD_NODE)
                       xmlOutputBufferWriteString(buf, "\n");
                   child = child->next;
               }
               xmlOutputBufferWriteString(buf, "\n");
           }
           xmlOutputBufferFlush(buf);
       }
   finish:
       return(buf->written - base);
   }
   
         // ^xdoc::set[<some>xml</some>]  
         add_native_method("set", Method::CT_DYNAMIC, _set, 1, 1);  
   
         // ^xdoc::load[some.xml]  struct Xdoc2buf_result {
         add_native_method("load", Method::CT_DYNAMIC, _load, 1, 1);          char* str;
           size_t length;
   };
   static Xdoc2buf_result xdoc2buf(Request& r, VXdoc& vdoc, 
                                            MethodParams& params, int index,
                                            VXdoc::Output_options& oo,
                                            const String* file_spec) {
           Xdoc2buf_result result;
           prepare_output_options(r, params, index,
                   oo);
   
           const char* encoding_cstr=oo.encoding->cstr();
           xmlCharEncodingHandler *encoder=xmlFindCharEncodingHandler(encoding_cstr);
           if(!encoder)
                   throw Exception("parser.runtime",
                           0,
                           "encoding '%s' not supported", encoding_cstr);
           // UTF-8 encoder contains empty input/output converters, 
           // which is wrong for xmlOutputBufferCreateIO
           // while zero encoder goes perfectly 
           const char* encoder_name=encoder->name;
           if(strcmp(encoder_name, "UTF-8")==0)
                   encoder=0;
   
           xmlOutputBuffer_auto_ptr outputBuffer(xmlAllocOutputBuffer(encoder));
   
           xsltStylesheet_auto_ptr stylesheet(xsltNewStylesheet());
           if(!stylesheet.get())
                   throw Exception(0,
                           0,
                           "xsltNewStylesheet failed");
   
           #define OOS2STYLE(name) \
                   stylesheet->name=oo.name?BAD_CAST xmlMemStrdup(r.transcode(*oo.name)->str):0
           #define OOE2STYLE(name) \
                   stylesheet->name=oo.name
   
           OOS2STYLE(method);
           OOS2STYLE(encoding);
           OOS2STYLE(mediaType);
   //      OOS2STYLE(doctypeSystem);
   //      OOS2STYLE(doctypePublic);
           OOE2STYLE(indent);
           OOS2STYLE(version);
           OOE2STYLE(standalone);
           OOE2STYLE(omitXmlDeclaration);
   
           xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document());
           document->encoding=BAD_CAST xmlMemStrdup(encoder_name);
           if(pa_xsltSaveResultTo(outputBuffer.get(), document, stylesheet.get())<0) {
                   GdomeException exc=0;
                   throw XmlException(0, exc);
           }
   
         // ^xdoc.xslt[stylesheet file_name]          // write out result
         // ^xdoc.xslt[stylesheet file_name;params hash]          char *gnome_str;  size_t gnome_length;
         add_native_method("xslt", Method::CT_DYNAMIC, _xslt, 1, 2);          if(outputBuffer->conv) {
                   gnome_length=outputBuffer->conv->use;
                   gnome_str=(char *)outputBuffer->conv->content;
           } else {
                   gnome_length=outputBuffer->buffer->use;
                   gnome_str=(char *)outputBuffer->buffer->content;
           }
   
         // ^xdoc.getElementById[elementId]          if((result.length=gnome_length)) {
         add_native_method("getElementById", Method::CT_DYNAMIC, _getElementById, 1, 1);                  result.str=pa_strdup(gnome_str, gnome_length);
 /*                } else
         // ^xdoc.getElementsByTagName[tagname]                  result.str=0;
         add_native_method("getElementsByTagName", Method::CT_DYNAMIC, _getElementsByTagName, 1, 1);  
   
         // ^xdoc.getElementsByTagNameNS[namespaceURI;localName] = array of nodes          if(file_spec)
         add_native_method("getElementsByTagNameNS", Method::CT_DYNAMIC, _getElementsByTagNameNS, 2, 2);                  file_write(*file_spec,
 */                          gnome_str, gnome_length, 
                           true/*as_text*/);
   
           return result;
 }  }
   
   static void _file(Request& r, MethodParams& params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
           VXdoc::Output_options oo(vdoc.output_options);
           Xdoc2buf_result buf=xdoc2buf(r, vdoc, params, 0, 
                   oo,
                   0/*not to file, to memory*/);
           // write out result
           r.write_no_lang(String(buf.str, buf.length));
   
           // write out result
           VFile& vfile=*new VFile;
           VHash& vhcontent_type=*new VHash;
           vhcontent_type.hash().put(
                   value_name, 
                   new VString(*oo.mediaType));
           vhcontent_type.hash().put(
                   String::Body("charset"), 
                   new VString(*oo.encoding));
   
           vfile.set(false/*tainted*/, buf.str?buf.str:""/*to distinguish from stat-ed file*/, buf.length, 
                   0/*file_name*/, &vhcontent_type);
           r.write_no_lang(vfile);
   }
   
 #include <util/XercesDefs.hpp>  static void _save(Request& r, MethodParams& params) {
 #include <util/XML256TableTranscoder.hpp>          VXdoc& vdoc=GET_SELF(r, VXdoc);
 //  
 //  This class provides an implementation of the XMLTranscoder interface  
 //  for the Windows variant of Latin1, called Windows-1251. Its close to  
 //  Latin1, but is somewhat different.  
 //  
 class XMLWin1251Transcoder : public XML256TableTranscoder  
 {  
 public :  
     // -----------------------------------------------------------------------  
     //  Public constructors and destructor  
     // -----------------------------------------------------------------------  
     XMLWin1251Transcoder  
     (  
         const   XMLCh* const    encodingName  
         , const unsigned int    blockSize  
     );  
   
     virtual ~XMLWin1251Transcoder();  
   
   
 private :  
     // -----------------------------------------------------------------------  
     //  Unimplemented constructors and operators  
     // -----------------------------------------------------------------------  
     XMLWin1251Transcoder();  
     XMLWin1251Transcoder(const XMLWin1251Transcoder&);  
     void operator=(const XMLWin1251Transcoder&);  
 };  
   
 // from ICU: ibm-1251.ucm by PAF@design.ru          const String& file_spec=r.absolute(params.as_string(0, "file name must be string"));
 // ---------------------------------------------------------------------------          
 //  Local const data          VXdoc::Output_options oo(vdoc.output_options);
 //          xdoc2buf(r, vdoc, params, 1, 
 //  gFromTable                  oo,
 //      This is the translation table for Windows 1251 to Unicode. This                  &file_spec);
 //      table contains 255 entries. The entry for 1251 byte x is the  }
 //      Unicode translation of that byte.  
 //  
 //  gToTable  
 //  gToTableSz  
 //      This is the translation table for Unicode to Windows 1251. This one  
 //      contains a list of records, sorted by the Unicode code point. We do  
 //      a binary search to find the Unicode point, and that record's other  
 //      field is the 1251 code point to translate to.  
 // ---------------------------------------------------------------------------  
 static const XMLCh gFromTable[256] =  
 {  
 0x0000, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007,   
 0x0008, 0x0009, 0x000A, 0x000B, 0x000C, 0x000D, 0x000E, 0x000F,   
 0x0010, 0x0011, 0x0012, 0x0013, 0x0014, 0x0015, 0x0016, 0x0017,   
 0x0018, 0x0019, 0x001A, 0x001B, 0x001C, 0x001D, 0x001E, 0x001F,   
 0x0020, 0xFF01, 0xFF02, 0xFF03, 0xFF04, 0xFF05, 0xFF06, 0xFF07,   
 0xFF08, 0xFF09, 0xFF0A, 0xFF0B, 0xFF0C, 0xFF0D, 0xFF0E, 0xFF0F,   
 0xFF10, 0xFF11, 0xFF12, 0xFF13, 0xFF14, 0xFF15, 0xFF16, 0xFF17,   
 0xFF18, 0xFF19, 0xFF1A, 0xFF1B, 0xFF1C, 0xFF1D, 0xFF1E, 0xFF1F,   
 0xFF20, 0xFF21, 0xFF22, 0xFF23, 0xFF24, 0xFF25, 0xFF26, 0xFF27,   
 0xFF28, 0xFF29, 0xFF2A, 0xFF2B, 0xFF2C, 0xFF2D, 0xFF2E, 0xFF2F,   
 0xFF30, 0xFF31, 0xFF32, 0xFF33, 0xFF34, 0xFF35, 0xFF36, 0xFF37,   
 0xFF38, 0xFF39, 0xFF3A, 0xFF3B, 0xFF3C, 0xFF3D, 0xFF3E, 0xFF3F,   
 0xFF40, 0xFF41, 0xFF42, 0xFF43, 0xFF44, 0xFF45, 0xFF46, 0xFF47,   
 0xFF48, 0xFF49, 0xFF4A, 0xFF4B, 0xFF4C, 0xFF4D, 0xFF4E, 0xFF4F,   
 0xFF50, 0xFF51, 0xFF52, 0xFF53, 0xFF54, 0xFF55, 0xFF56, 0xFF57,   
 0xFF58, 0xFF59, 0xFF5A, 0xFF5B, 0xFF5C, 0xFF5D, 0xFF5E, 0x007F,   
 0x0402, 0x0403, 0x201A, 0x0453, 0x201E, 0x2026, 0x2020, 0x2021,   
 0x0088, 0x2030, 0x0409, 0x2039, 0x040A, 0x040C, 0x040B, 0x040F,   
 0x0452, 0x2018, 0x2019, 0x201C, 0x201D, 0x2022, 0x2013, 0x2014,   
 0x0098, 0x2122, 0x0459, 0x203A, 0x045A, 0x045C, 0x045B, 0x045F,   
 0x00A0, 0x040E, 0x045E, 0x0408, 0x00A4, 0x0490, 0x00A6, 0x00A7,   
 0x0401, 0x00A9, 0x0404, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x0407,   
 0x00B0, 0x00B1, 0x0406, 0x0456, 0x0491, 0x00B5, 0x00B6, 0x00B7,   
 0x0451, 0x2116, 0x0454, 0x00BB, 0x0458, 0x0405, 0x0455, 0x0457,   
 0x0410, 0x0411, 0x0412, 0x0413, 0x0414, 0x0415, 0x0416, 0x0417,   
 0x0418, 0x0419, 0x041A, 0x041B, 0x041C, 0x041D, 0x041E, 0x041F,   
 0x0420, 0x0421, 0x0422, 0x0423, 0x0424, 0x0425, 0x0426, 0x0427,   
 0x0428, 0x0429, 0x042A, 0x042B, 0x042C, 0x042D, 0x042E, 0x042F,   
 0x0430, 0x0431, 0x0432, 0x0433, 0x0434, 0x0435, 0x0436, 0x0437,   
 0x0438, 0x0439, 0x043A, 0x043B, 0x043C, 0x043D, 0x043E, 0x043F,   
 0x0440, 0x0441, 0x0442, 0x0443, 0x0444, 0x0445, 0x0446, 0x0447,   
 0x0448, 0x0449, 0x044A, 0x044B, 0x044C, 0x044D, 0x044E, 0x044F  
 };  
   
 static const XMLTransService::TransRec gToTable[] =  static void _string(Request& r, MethodParams& params) {
 {          VXdoc& vdoc=GET_SELF(r, VXdoc);
 { 0x0000, 0x00 }, { 0x0001, 0x01 }, { 0x0002, 0x02 }, { 0x0003, 0x03 },           VXdoc::Output_options oo(vdoc.output_options);
 { 0x0004, 0x04 }, { 0x0005, 0x05 }, { 0x0006, 0x06 }, { 0x0007, 0x07 },           Xdoc2buf_result buf=xdoc2buf(r, vdoc, params, 0, 
 { 0x0008, 0x08 }, { 0x0009, 0x09 }, { 0x000A, 0x0A }, { 0x000B, 0x0B },                   oo,
 { 0x000C, 0x0C }, { 0x000D, 0x0D }, { 0x000E, 0x0E }, { 0x000F, 0x0F },                   0/*not to file, to memory*/);
 { 0x0010, 0x10 }, { 0x0011, 0x11 }, { 0x0012, 0x12 }, { 0x0013, 0x13 },           // write out result
 { 0x0014, 0x14 }, { 0x0015, 0x15 }, { 0x0016, 0x16 }, { 0x0017, 0x17 },           r.write_no_lang(String(buf.str, buf.length));
 { 0x0018, 0x18 }, { 0x0019, 0x19 }, { 0x001A, 0x1A }, { 0x001B, 0x1B },   }
 { 0x001C, 0x1C }, { 0x001D, 0x1D }, { 0x001E, 0x1E }, { 0x001F, 0x1F },   
 { 0x0020, 0x20 }, { 0x0021, 0x21 }, { 0x0022, 0x22 }, { 0x0023, 0x23 },   #ifndef DOXYGEN
 { 0x0024, 0x24 }, { 0x0025, 0x25 }, { 0x0026, 0x26 }, { 0x0027, 0x27 },   struct Add_xslt_param_info {
 { 0x0028, 0x28 }, { 0x0029, 0x29 }, { 0x002A, 0x2A }, { 0x002B, 0x2B },           Request* r;
 { 0x002C, 0x2C }, { 0x002D, 0x2D }, { 0x002E, 0x2E }, { 0x002F, 0x2F },           Array<GdomeDOMString_auto_ptr>* strings;
 { 0x0030, 0x30 }, { 0x0031, 0x31 }, { 0x0032, 0x32 }, { 0x0033, 0x33 },           const char** current_transform_param;
 { 0x0034, 0x34 }, { 0x0035, 0x35 }, { 0x0036, 0x36 }, { 0x0037, 0x37 },   
 { 0x0038, 0x38 }, { 0x0039, 0x39 }, { 0x003A, 0x3A }, { 0x003B, 0x3B },   
 { 0x003C, 0x3C }, { 0x003D, 0x3D }, { 0x003E, 0x3E }, { 0x003F, 0x3F },   
 { 0x0040, 0x40 }, { 0x0041, 0x41 }, { 0x0042, 0x42 }, { 0x0043, 0x43 },   
 { 0x0044, 0x44 }, { 0x0045, 0x45 }, { 0x0046, 0x46 }, { 0x0047, 0x47 },   
 { 0x0048, 0x48 }, { 0x0049, 0x49 }, { 0x004A, 0x4A }, { 0x004B, 0x4B },   
 { 0x004C, 0x4C }, { 0x004D, 0x4D }, { 0x004E, 0x4E }, { 0x004F, 0x4F },   
 { 0x0050, 0x50 }, { 0x0051, 0x51 }, { 0x0052, 0x52 }, { 0x0053, 0x53 },   
 { 0x0054, 0x54 }, { 0x0055, 0x55 }, { 0x0056, 0x56 }, { 0x0057, 0x57 },   
 { 0x0058, 0x58 }, { 0x0059, 0x59 }, { 0x005A, 0x5A }, { 0x005B, 0x5B },   
 { 0x005C, 0x5C }, { 0x005D, 0x5D }, { 0x005E, 0x5E }, { 0x005F, 0x5F },   
 { 0x0060, 0x60 }, { 0x0061, 0x61 }, { 0x0062, 0x62 }, { 0x0063, 0x63 },   
 { 0x0064, 0x64 }, { 0x0065, 0x65 }, { 0x0066, 0x66 }, { 0x0067, 0x67 },   
 { 0x0068, 0x68 }, { 0x0069, 0x69 }, { 0x006A, 0x6A }, { 0x006B, 0x6B },   
 { 0x006C, 0x6C }, { 0x006D, 0x6D }, { 0x006E, 0x6E }, { 0x006F, 0x6F },   
 { 0x0070, 0x70 }, { 0x0071, 0x71 }, { 0x0072, 0x72 }, { 0x0073, 0x73 },   
 { 0x0074, 0x74 }, { 0x0075, 0x75 }, { 0x0076, 0x76 }, { 0x0077, 0x77 },   
 { 0x0078, 0x78 }, { 0x0079, 0x79 }, { 0x007A, 0x7A }, { 0x007B, 0x7B },   
 { 0x007C, 0x7C }, { 0x007D, 0x7D }, { 0x007E, 0x7E }, { 0x007F, 0x7F },   
 { 0x0088, 0x88 }, { 0x0098, 0x98 }, { 0x00A0, 0xA0 }, { 0x00A4, 0xA4 },   
 { 0x00A6, 0xA6 }, { 0x00A7, 0xA7 }, { 0x00A9, 0xA9 }, { 0x00AB, 0xAB },   
 { 0x00AC, 0xAC }, { 0x00AD, 0xAD }, { 0x00AE, 0xAE }, { 0x00B0, 0xB0 },   
 { 0x00B1, 0xB1 }, { 0x00B5, 0xB5 }, { 0x00B6, 0xB6 }, { 0x00B7, 0xB7 },   
 { 0x00BB, 0xBB }, { 0x0401, 0xA8 }, { 0x0402, 0x80 }, { 0x0403, 0x81 },   
 { 0x0404, 0xAA }, { 0x0405, 0xBD }, { 0x0406, 0xB2 }, { 0x0407, 0xAF },   
 { 0x0408, 0xA3 }, { 0x0409, 0x8A }, { 0x040A, 0x8C }, { 0x040B, 0x8E },   
 { 0x040C, 0x8D }, { 0x040E, 0xA1 }, { 0x040F, 0x8F }, { 0x0410, 0xC0 },   
 { 0x0411, 0xC1 }, { 0x0412, 0xC2 }, { 0x0413, 0xC3 }, { 0x0414, 0xC4 },   
 { 0x0415, 0xC5 }, { 0x0416, 0xC6 }, { 0x0417, 0xC7 }, { 0x0418, 0xC8 },   
 { 0x0419, 0xC9 }, { 0x041A, 0xCA }, { 0x041B, 0xCB }, { 0x041C, 0xCC },   
 { 0x041D, 0xCD }, { 0x041E, 0xCE }, { 0x041F, 0xCF }, { 0x0420, 0xD0 },   
 { 0x0421, 0xD1 }, { 0x0422, 0xD2 }, { 0x0423, 0xD3 }, { 0x0424, 0xD4 },   
 { 0x0425, 0xD5 }, { 0x0426, 0xD6 }, { 0x0427, 0xD7 }, { 0x0428, 0xD8 },   
 { 0x0429, 0xD9 }, { 0x042A, 0xDA }, { 0x042B, 0xDB }, { 0x042C, 0xDC },   
 { 0x042D, 0xDD }, { 0x042E, 0xDE }, { 0x042F, 0xDF }, { 0x0430, 0xE0 },   
 { 0x0431, 0xE1 }, { 0x0432, 0xE2 }, { 0x0433, 0xE3 }, { 0x0434, 0xE4 },   
 { 0x0435, 0xE5 }, { 0x0436, 0xE6 }, { 0x0437, 0xE7 }, { 0x0438, 0xE8 },   
 { 0x0439, 0xE9 }, { 0x043A, 0xEA }, { 0x043B, 0xEB }, { 0x043C, 0xEC },   
 { 0x043D, 0xED }, { 0x043E, 0xEE }, { 0x043F, 0xEF }, { 0x0440, 0xF0 },   
 { 0x0441, 0xF1 }, { 0x0442, 0xF2 }, { 0x0443, 0xF3 }, { 0x0444, 0xF4 },   
 { 0x0445, 0xF5 }, { 0x0446, 0xF6 }, { 0x0447, 0xF7 }, { 0x0448, 0xF8 },   
 { 0x0449, 0xF9 }, { 0x044A, 0xFA }, { 0x044B, 0xFB }, { 0x044C, 0xFC },   
 { 0x044D, 0xFD }, { 0x044E, 0xFE }, { 0x044F, 0xFF }, { 0x0451, 0xB8 },   
 { 0x0452, 0x90 }, { 0x0453, 0x83 }, { 0x0454, 0xBA }, { 0x0455, 0xBE },   
 { 0x0456, 0xB3 }, { 0x0457, 0xBF }, { 0x0458, 0xBC }, { 0x0459, 0x9A },   
 { 0x045A, 0x9C }, { 0x045B, 0x9E }, { 0x045C, 0x9D }, { 0x045E, 0xA2 },   
 { 0x045F, 0x9F }, { 0x0490, 0xA5 }, { 0x0491, 0xB4 }, { 0x2013, 0x96 },   
 { 0x2014, 0x97 }, { 0x2018, 0x91 }, { 0x2019, 0x92 }, { 0x201A, 0x82 },   
 { 0x201C, 0x93 }, { 0x201D, 0x94 }, { 0x201E, 0x84 }, { 0x2020, 0x86 },   
 { 0x2021, 0x87 }, { 0x2022, 0x95 }, { 0x2026, 0x85 }, { 0x2030, 0x89 },   
 { 0x2039, 0x8B }, { 0x203A, 0x9B }, { 0x2116, 0xB9 }, { 0x2122, 0x99 },   
 { 0xFF01, 0x21 }, { 0xFF02, 0x22 }, { 0xFF03, 0x23 }, { 0xFF04, 0x24 },   
 { 0xFF05, 0x25 }, { 0xFF06, 0x26 }, { 0xFF07, 0x27 }, { 0xFF08, 0x28 },   
 { 0xFF09, 0x29 }, { 0xFF0A, 0x2A }, { 0xFF0B, 0x2B }, { 0xFF0C, 0x2C },   
 { 0xFF0D, 0x2D }, { 0xFF0E, 0x2E }, { 0xFF0F, 0x2F }, { 0xFF10, 0x30 },   
 { 0xFF11, 0x31 }, { 0xFF12, 0x32 }, { 0xFF13, 0x33 }, { 0xFF14, 0x34 },   
 { 0xFF15, 0x35 }, { 0xFF16, 0x36 }, { 0xFF17, 0x37 }, { 0xFF18, 0x38 },   
 { 0xFF19, 0x39 }, { 0xFF1A, 0x3A }, { 0xFF1B, 0x3B }, { 0xFF1C, 0x3C },   
 { 0xFF1D, 0x3D }, { 0xFF1E, 0x3E }, { 0xFF1F, 0x3F }, { 0xFF20, 0x40 },   
 { 0xFF21, 0x41 }, { 0xFF22, 0x42 }, { 0xFF23, 0x43 }, { 0xFF24, 0x44 },   
 { 0xFF25, 0x45 }, { 0xFF26, 0x46 }, { 0xFF27, 0x47 }, { 0xFF28, 0x48 },   
 { 0xFF29, 0x49 }, { 0xFF2A, 0x4A }, { 0xFF2B, 0x4B }, { 0xFF2C, 0x4C },   
 { 0xFF2D, 0x4D }, { 0xFF2E, 0x4E }, { 0xFF2F, 0x4F }, { 0xFF30, 0x50 },   
 { 0xFF31, 0x51 }, { 0xFF32, 0x52 }, { 0xFF33, 0x53 }, { 0xFF34, 0x54 },   
 { 0xFF35, 0x55 }, { 0xFF36, 0x56 }, { 0xFF37, 0x57 }, { 0xFF38, 0x58 },   
 { 0xFF39, 0x59 }, { 0xFF3A, 0x5A }, { 0xFF3B, 0x5B }, { 0xFF3C, 0x5C },   
 { 0xFF3D, 0x5D }, { 0xFF3E, 0x5E }, { 0xFF3F, 0x5F }, { 0xFF40, 0x60 },   
 { 0xFF41, 0x61 }, { 0xFF42, 0x62 }, { 0xFF43, 0x63 }, { 0xFF44, 0x64 },   
 { 0xFF45, 0x65 }, { 0xFF46, 0x66 }, { 0xFF47, 0x67 }, { 0xFF48, 0x68 },   
 { 0xFF49, 0x69 }, { 0xFF4A, 0x6A }, { 0xFF4B, 0x6B }, { 0xFF4C, 0x6C },   
 { 0xFF4D, 0x6D }, { 0xFF4E, 0x6E }, { 0xFF4F, 0x6F }, { 0xFF50, 0x70 },   
 { 0xFF51, 0x71 }, { 0xFF52, 0x72 }, { 0xFF53, 0x73 }, { 0xFF54, 0x74 },   
 { 0xFF55, 0x75 }, { 0xFF56, 0x76 }, { 0xFF57, 0x77 }, { 0xFF58, 0x78 },   
 { 0xFF59, 0x79 }, { 0xFF5A, 0x7A }, { 0xFF5B, 0x7B }, { 0xFF5C, 0x7C },   
 { 0xFF5D, 0x7D }, { 0xFF5E, 0x7E }  
 };  };
 static const unsigned int gToTableSz = 350;  #endif
   static void add_xslt_param(
                              HashStringValue::key_type attribute, 
                              HashStringValue::value_type meaning, 
                              Add_xslt_param_info* info) {
           GdomeDOMString_auto_ptr s;
           *info->current_transform_param++=(s=info->r->transcode(attribute))->str; *info->strings+=s;
           *info->current_transform_param++=(s=info->r->transcode(meaning->as_string()))->str; *info->strings+=s;
   }
   
   static VXdoc& _transform(Request& r, const String* stylesheet_source, 
                                                      VXdoc& vdoc, xsltStylesheetPtr stylesheet, const char** transform_params) 
   {
           xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document());
           xsltTransformContext_auto_ptr transformContext(
                   xsltNewTransformContext(stylesheet, document));
           // make params literal
           if (transformContext->globalVars == NULL) // strangly not initialized by xsltNewTransformContext
                   transformContext->globalVars = xmlHashCreate(20);
           xsltQuoteUserParams(transformContext.get(), transform_params);
           // do transform
           xmlDoc *transformed=xsltApplyStylesheetUser(
                   stylesheet,
                   document,
                   0/*already quoted-inserted  transform_params*/,
                   0/*const char* output*/,
                   0/*FILE *profile*/,
                   transformContext.get());
           if(!transformed || xmlHaveGenericErrors()) {
                   GdomeException exc=0;
                   throw XmlException(stylesheet_source, exc);
           }
   
           //gdome_xml_doc_mkref dislikes XML_HTML_DOCUMENT_NODE  type, fixing
           transformed->type=XML_DOCUMENT_NODE;
           // constructing result
           GdomeDocument *gdomeDocument=gdome_xml_doc_mkref(transformed);
           if(!gdomeDocument)
                   throw Exception(0,
                           0,
                           "gdome_xml_doc_mkref failed");
           VXdoc& result=*new VXdoc(&r.charsets, gdomeDocument);
           /* grabbing options
   
                   <xsl:output
                   !method = "xml" | "html" | "text"
                           X| qname-but-not-ncname 
                   !version = nmtoken 
                   !encoding = string 
                   !omit-xml-declaration = "yes" | "no"
                   !standalone = "yes" | "no"
                   !doctype-public = string 
                   !doctype-system = string 
                   Xcdata-section-elements = qnames 
                   !indent = "yes" | "no"
                   !media-type = string /> 
           */
           VXdoc::Output_options& oo=result.output_options;
   
           oo.method=stylesheet->method?&r.transcode(stylesheet->method):0;
           oo.encoding=stylesheet->encoding?&r.transcode(stylesheet->encoding):0;
           oo.mediaType=stylesheet->mediaType?&r.transcode(stylesheet->mediaType):0;
           oo.indent=stylesheet->indent!=0;
           oo.version=stylesheet->version?&r.transcode(stylesheet->version):0;
           oo.standalone=stylesheet->standalone!=0;
           oo.omitXmlDeclaration=stylesheet->omitXmlDeclaration!=0;
   
 // ---------------------------------------------------------------------------          // return
 //  XML1140Transcoder: Constructors and Destructor          return result;
 // ---------------------------------------------------------------------------  
 XMLWin1251Transcoder::XMLWin1251Transcoder( const   XMLCh* const encodingName  
                                             , const unsigned int blockSize) :  
     XML256TableTranscoder  
     (  
         encodingName  
         , blockSize  
         , gFromTable  
         , gToTable  
         , gToTableSz  
     )  
 {  
 }  }
   static void _transform(Request& r, MethodParams& params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
           // params
           Array<GdomeDOMString_auto_ptr> transform_strings;
           const char** transform_params=0;
           if(params.count()>1) {
                   Value& vparams=params.as_no_junction(1, "transform parameters must be hash");
                   if(!vparams.is_string())
                           if(HashStringValue* hash=vparams.get_hash()) {
                                   transform_params=new(UseGC) const char*[hash->count()*2+1];
                                   Add_xslt_param_info info={
                                           &r, 
                                           &transform_strings,
                                           transform_params
                                   };
                                   hash->for_each(add_xslt_param, &info);
                                   transform_params[hash->count()*2]=0;                            
                           } else
                                   throw Exception("parser.runtime",
                                           0,
                                           "transform parameters parameter must be hash");
           }
   
 XMLWin1251Transcoder::~XMLWin1251Transcoder()          VXdoc* result;
 {          if(Value *vxdoc=params[0].as(VXDOC_TYPE, false)) { // stylesheet (xdoc)
                   xmlDoc *document=gdome_xml_doc_get_xmlDoc(
                           static_cast<VXdoc *>(vxdoc)->get_document());
                   // compile xdoc stylesheet
                   xsltStylesheet_auto_ptr stylesheet_ptr(xsltParseStylesheetDoc(document)); 
                   if(xmlHaveGenericErrors()) {
                           GdomeException exc=0;
                           throw XmlException(0, exc);
                   }
                   if(!stylesheet_ptr.get())
                           throw Exception("xml",
                                   0,
                                   "stylesheet failed to compile");
                   // strange thing - xsltParseStylesheetDoc records document and destroys it in stylesheet destructor
                   // we don't need that
                   stylesheet_ptr->doc=0;
   
                   // transform!
                   result=&_transform(r, 0,
                           vdoc, stylesheet_ptr.get(),
                           transform_params);
           } else { // stylesheet (file name)
                   // extablish stylesheet connection
                   const String& stylesheet_filespec=
                           r.absolute(params.as_string(0, "stylesheet must be file name (string) or DOM document (xdoc)"));
                   Stylesheet_connection_ptr connection=stylesheet_manager->get_connection(stylesheet_filespec);
   
                   // load and compile file to stylesheet [or get cached if any]
                   // transform!
                   result=&_transform(r, &stylesheet_filespec, vdoc, connection->stylesheet(),
                           transform_params);
           }
   
           // write out result
           r.write_no_lang(*result);
 }  }
   
   // constructor
   
   /// @test how to create empty type html?
   MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME, xnode_class) {
           /// DOM1
   
           // Element createElement(in DOMString tagName) raises(DOMException);
           add_native_method("createElement", Method::CT_DYNAMIC, _createElement, 1, 1);
           // DocumentFragment createDocumentFragment(); 
           add_native_method("createDocumentFragment", Method::CT_DYNAMIC, _createDocumentFragment, 0, 0);
           // Text createTextNode(in DOMString data);
           add_native_method("createTextNode", Method::CT_DYNAMIC, _createTextNode, 1, 1);
           // Comment createComment(in DOMString data);
           add_native_method("createComment", Method::CT_DYNAMIC, _createComment, 1, 1);
           // CDATASection createCDATASection(in DOMString data) raises(DOMException);
           add_native_method("createCDATASection", Method::CT_DYNAMIC, _createCDATASection, 1, 1);
           // ProcessingInstruction createProcessingInstruction(in DOMString target, in DOMString data) raises(DOMException);
           add_native_method("createProcessingInstruction", Method::CT_DYNAMIC, _createProcessingInstruction, 2, 2);
           // Attr createAttribute(in DOMString name) raises(DOMException);
           add_native_method("createAttribute", Method::CT_DYNAMIC, _createAttribute, 1, 1);
           // EntityReference createEntityReference(in DOMString name) raises(DOMException);
           add_native_method("createEntityReference", Method::CT_DYNAMIC, _createEntityReference, 1, 1);
           // NodeList getElementsByTagName(in DOMString name);
           add_native_method("getElementsByTagName", Method::CT_DYNAMIC, _getElementsByTagName, 1, 1);
   
           /// DOM2
   
           // ^xdoc.getElementById[elementId]
           add_native_method("getElementById", Method::CT_DYNAMIC, _getElementById, 1, 1);
   
       // Node (in Node importedNode, in boolean deep) raises(DOMException)
           add_native_method("importNode", Method::CT_DYNAMIC, _importNode, 2, 2);
   
           // Attr createAttributeNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);
           add_native_method("createAttributeNS", Method::CT_DYNAMIC, _createAttributeNS, 2, 2);
   
           // Element createElementNS(in DOMString namespaceURI, in DOMString qualifiedName) raises(DOMException);
           add_native_method("createElementNS", Method::CT_DYNAMIC, _createElementNS, 2, 2);
   
           // NodeList getElementsByTagNameNS(in DOMString namespaceURI, in DOMString localName);
           add_native_method("getElementsByTagNameNS", Method::CT_DYNAMIC, _getElementsByTagNameNS, 2, 2);
   
           /// parser
           
           // ^xdoc::create{qualifiedName}
           // ^xdoc::create[<some>xml</some>]
           // ^xdoc::create[URI][<some>xml</some>]
           add_native_method("create", Method::CT_DYNAMIC, _create, 1, 2); 
           // for backward compatibility with <=v 1.82 2002/01/31 11:51:46 paf
           add_native_method("set", Method::CT_DYNAMIC, _create, 1, 1);
   
           // ^xdoc::load[some.xml]
           add_native_method("load", Method::CT_DYNAMIC, _load, 1, 1);
   
           // ^xdoc.save[some.xml]
           // ^xdoc.save[some.xml;options hash]
           add_native_method("save", Method::CT_DYNAMIC, _save, 1, 2);
   
           // ^xdoc.string[] <doc/>
           // ^xdoc.string[options hash] <doc/>
           add_native_method("string", Method::CT_DYNAMIC, _string, 0, 1);
   
           // ^xdoc.file[] file with "<doc/>"
           // ^xdoc.file[options hash] file with "<doc/>"
           add_native_method("file", Method::CT_DYNAMIC, _file, 0, 1);
   
           // ^xdoc.transform[stylesheet file_name/xdoc]
           // ^xdoc.transform[stylesheet file_name/xdoc;params hash]
           add_native_method("transform", Method::CT_DYNAMIC, _transform, 1, 2);
   
 void MXdoc::configure_admin(Request& r) {  
         XalanDOMString *sencoding=new XalanDOMString("WINDOWS-125ODIN");  
         const XMLCh* const encoding_cstr=sencoding->c_str();  
     XMLPlatformUtils::fgTransService->addEncoding(  
                 encoding_cstr,   
                 new ENameMapFor<XMLWin1251Transcoder>(encoding_cstr));  
         // delete sencoding; somehow  
 }  }
   
 // global variable  # else
   
 Methoded *Xdoc_class;  #include "classes.h"
   
 // creator  // global variable
   
 #endif  DECLARE_CLASS_VAR(xdoc, 0, 0); // fictive
   
 Methoded *MXdoc_create(Pool& pool) {  
         return   
 #ifdef XML  
                 Xdoc_class=new(pool) MXdoc(pool);  
 #else  
                 0  
 #endif  #endif
         ;  
 }  

Removed from v.1.6  
changed lines
  Added in v.1.138


E-mail: