Diff for /parser3/src/classes/xdoc.C between versions 1.13 and 1.108.2.19.2.8

version 1.13, 2001/10/09 14:25:30 version 1.108.2.19.2.8, 2003/03/24 09:39:54
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-2003 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 "classes.h"
 #ifdef XML  #ifdef XML
   
   static const char* IDENT_XDOC_C="$Date$";
   
   #include "pa_vmethod_frame.h"
   
   #include "pa_stylesheet_connection.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 "xnode.h"  #include "xnode.h"
   
 #include <strstream>  #include "gdome.h"
 #include <Include/PlatformDefinitions.hpp>  #include "libxml/tree.h"
 #include <util/PlatformUtils.hpp>  extern "C" {
 #include <util/TransENameMap.hpp>  #include "gdomecore/gdome-xml-node.h"
 #include "XalanTransformer2.hpp"  #include "gdomecore/gdome-xml-document.h"
 #include <XalanTransformer/XalanParsedSource.hpp>  };
 #       include <XalanTransformer/XalanDefaultParsedSource.hpp>  #include "libxslt/xsltInternals.h"
 #       include <XalanSourceTree/XalanSourceTreeDocument.hpp>  #include "libxslt/transform.h"
 #       include <XalanSourceTree/XalanSourceTreeContentHandler.hpp>  #include "libxslt/xsltutils.h"
 #       include <sax2/XMLReaderFactory.hpp>  #include "libxslt/variables.h"
 #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
   
Line 45 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() { return Value*(new VXdoc(0, 0, 0)); }
   
 public:  public:
         MXdoc(Pool& pool);          MXdoc();
   
 public: // Methoded  public: // Methoded
         bool used_directly() { return true; }  
         void configure_admin(Request& r);          void configure_admin(Request& r);
 };  };
   
 // methods  // global variable
   
 class ParserStringXalanOutputStream: public XalanOutputStream {  
 public:  
           
         explicit ParserStringXalanOutputStream(String& astring) : fstring(astring) {}  
   
 protected: // XalanOutputStream  
   
         virtual void writeData(const char *theBuffer, unsigned long theBufferLength) {  DECLARE_CLASS_VAR(xdoc, new MXdoc, 0);
                 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() {}  // helper classes
   
   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:  private:
           bool _Owns;
         String& fstring;          xmlOutputBuffer *_Ptr;
           
 };  };
   
 class XalanSourceTreeParserLiaison2: public XalanSourceTreeParserLiaison {  class xsltTransformContext_auto_ptr {
 public:  public:
         XalanSourceTreeParserLiaison2(XalanSourceTreeDOMSupport&                theSupport) : XalanSourceTreeParserLiaison(theSupport),           explicit xsltTransformContext_auto_ptr(xsltTransformContext *_APtr = 0) 
                 ferror_handler(new HandlerBase) {                  : _Owns(_APtr != 0), _Ptr(_APtr) {}
         }          xsltTransformContext_auto_ptr(const xsltTransformContext_auto_ptr& _Y) 
                   : _Owns(_Y._Owns), _Ptr(_Y.release()) {}
         XalanDocument*          xsltTransformContext_auto_ptr& operator=(const xsltTransformContext_auto_ptr& _Y) 
         parseXMLStream2(                  {if (this != &_Y)
                                 const InputSource&              inputSource) {                          {if (_Ptr != _Y.get())
                 XalanSourceTreeContentHandler   theContentHandler(createXalanSourceTreeDocument());                                  {if (_Owns && _Ptr)
                 XalanAutoPtr<SAX2XMLReader>             theReader(XMLReaderFactory::createXMLReader());                                          xsltFreeTransformContext(_Ptr);
                 theReader->setContentHandler(&theContentHandler);                                  _Owns = _Y._Owns; }
                 theReader->setDTDHandler(&theContentHandler);                          else if (_Y._Owns)
                 theReader->setErrorHandler(ferror_handler); // disable stderr output                                  _Owns = true;
                 theReader->setLexicalHandler(&theContentHandler);                          _Ptr = _Y.release(); }
                 EntityResolver* const   theResolver = getEntityResolver();                  return (*this); }
                 if (theResolver != 0) {          ~xsltTransformContext_auto_ptr()
                         theReader->setEntityResolver(theResolver);                  {if (_Owns && _Ptr)
                 }                          xsltFreeTransformContext(_Ptr); }
                 theReader->parse(inputSource);          xsltTransformContext& operator*() const 
                 return theContentHandler.getDocument();                  {return (*get()); }
         }          xsltTransformContext *operator->() const 
                           {return (get()); }
         ~XalanSourceTreeParserLiaison2() {          xsltTransformContext *get() const 
                 delete ferror_handler;                  {return (_Ptr); }
         }          xsltTransformContext *release() const 
                   {((xsltTransformContext_auto_ptr *)this)->_Owns = false;
                   return (_Ptr); }
 private:  private:
         ErrorHandler *ferror_handler;          bool _Owns;
           xsltTransformContext *_Ptr;
 };  };
   
 class XalanDefaultParsedSource2 : public XalanParsedSource  class xsltStylesheet_auto_ptr {
 {  
 public:  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;
   };
   
         XalanDefaultParsedSource2(const XSLTInputSource&                theInputSource);  // methods
   
         virtual XalanDocument*  static void writeNode(Request& r, GdomeNode *node, 
         getDocument() const;                                            GdomeException exc) {
           if(!node || exc)
                   throw Exception(
                           method_name, 
                           exc);
   
         virtual XalanParsedSourceHelper*          // write out result
         createHelper() const;          r.write_no_lang(Value*(new VXnode(&&r.charsets, node)));
   }
   
 private:  // Element createElement(in DOMString tagName) raises(DOMException);
   static void _createElement(Request& r, MethodParams* params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         XalanSourceTreeDOMSupport               m_domSupport;          const String& tagName=params->as_string(0, "tagName must be string");
   
         XalanSourceTreeParserLiaison2   m_parserLiaison2;          GdomeException exc;
           GdomeNode *node=
                   (GdomeNode *)gdome_doc_createElement(vdoc.get_document(method_name), 
                   r.transcode(tagName).get(),
                   &exc);
           writeNode(r, method_name, node, exc);
   }
   
         XalanSourceTreeDocument* const  m_parsedSource;  // DocumentFragment createDocumentFragment()
 };  static void _createDocumentFragment(Request& r, MethodParams* ) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
           GdomeException exc;
           GdomeNode *node=
                   (GdomeNode *)gdome_doc_createDocumentFragment(
                   vdoc.get_document(method_name),
                   &exc);
           writeNode(r, method_name, node, exc);
   }
   
 XalanDefaultParsedSource2::XalanDefaultParsedSource2(const XSLTInputSource&     theInputSource):  // Text createTextNode(in DOMString data);
         XalanParsedSource(),  static void _createTextNode(Request& r, MethodParams* params) {
         m_domSupport(),          VXdoc& vdoc=GET_SELF(r, VXdoc);
         m_parserLiaison2(m_domSupport),  
         m_parsedSource(m_parserLiaison2.mapDocument(m_parserLiaison2.parseXMLStream2(theInputSource)))  
 {  
         assert(m_parsedSource != 0);  
   
         m_domSupport.setParserLiaison(&m_parserLiaison2);          const String& data=params->as_string(0, "data must be string");
   
           GdomeException exc;
           GdomeNode *node=(GdomeNode *)gdome_doc_createTextNode(
                   vdoc.get_document(method_name),
                   r.transcode(data).get(),
                   &exc);
           writeNode(r, method_name, node, exc);
 }  }
   
   // Comment createComment(in DOMString data)
   static void _createComment(Request& r, MethodParams* params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
           const String& data=params->as_string(0, "data must be string");
   
 XalanDocument*            GdomeException exc;
 XalanDefaultParsedSource2::getDocument() const          GdomeNode *node=(GdomeNode *)gdome_doc_createComment(
 {                  vdoc.get_document(method_name),
         return m_parsedSource;                  r.transcode(data).get(),
                   &exc);
           writeNode(r, method_name, node, exc);
 }  }
   
   // CDATASection createCDATASection(in DOMString data) raises(DOMException);
   static void _createCDATASection(Request& r, MethodParams* params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
           const String& data=params->as_string(0, "data must be string");
   
 XalanParsedSourceHelper*          GdomeException exc;
 XalanDefaultParsedSource2::createHelper() const          GdomeNode *node=(GdomeNode *)gdome_doc_createCDATASection(
 {                  vdoc.get_document(method_name),
         return new XalanDefaultParsedSourceHelper(m_domSupport);                  r.transcode(data).get(),
                   &exc);
           writeNode(r, method_name, node, exc);
 }  }
   
   // ProcessingInstruction createProcessingInstruction(in DOMString target,in DOMString data) raises(DOMException);
   static void _createProcessingInstruction(Request& r, MethodParams* params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
           const String& target=params->as_string(0, "data must be string");
           const String& data=params->as_string(1, "data must be string");
   
           GdomeException exc;
           GdomeNode *node=(GdomeNode *)gdome_doc_createProcessingInstruction(
                   vdoc.get_document(method_name),
                   r.transcode(target).get(), 
                   r.transcode(data).get(),
                   &exc);
           writeNode(r, method_name, node, exc);
   }
   
 static void create_optioned_listener(  // Attr createAttribute(in DOMString name) raises(DOMException);
                                                                          const char *& content_type, const char *& charset, FormatterListener *& listener,   static void _createAttribute(Request& r, MethodParams* params) {
                                                                          Pool& pool,           VXdoc& vdoc=GET_SELF(r, VXdoc);
                                                                          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) {  
                 Value& voptions=params->as_no_junction(index, "options must not be code");  
                 if(voptions.is_defined()) {  
                         if(Hash *options=voptions.get_hash()) {  
                                 // $.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|...]          const String& name=params->as_string(0, "name must be string");
                                 if(Value *vencoding=static_cast<Value *>(options->get(*new(pool)   
                                         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());          GdomeException exc;
         if(!method/*default='xml'*/ || *method == XDOC_OUTPUT_METHOD_OPTION_VALUE_XML) {          GdomeNode *node=(GdomeNode *)gdome_doc_createAttribute(
                 content_type="text/xml";                  vdoc.get_document(method_name),
                 listener=new FormatterToXML(writer,                  r.transcode(name).get(),
                         XalanDOMString(),  // version                  &exc);
                         true, // doIndent          writeNode(r, method_name, node, exc);
                         XDOC_OUTPUT_DEFAULT_INDENT, // indent   
                         xalan_encoding  // encoding  
                 );  
         } else if(*method == XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML) {  
                 content_type="text/html";  
                 listener=new FormatterToHTML(writer,  
                         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  
 }  }
   // EntityReference createEntityReference(in DOMString name) raises(DOMException);
   static void _createEntityReference(Request& r, MethodParams* params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
 static void _save(Request& r, const String& method_name, MethodParams *params) {          const String& name=params->as_string(0, "name must be string");
         Pool& pool=r.pool();  
         VXnode& vnode=*static_cast<VXnode *>(r.self);  
   
         // filespec          GdomeException exc;
         const String& file_name=params->as_string(0, "file name must not be code");          GdomeNode *node=(GdomeNode *)gdome_doc_createEntityReference(
         const char *filespec=r.absolute(file_name).cstr(String::UL_FILE_SPEC);                  vdoc.get_document(method_name),
                           r.transcode(name).get(),
         // node                  &exc);
         XalanNode& node=vnode.get_node(pool, &method_name);          writeNode(r, method_name, node, exc);
   }
   
         try {  // NodeList getElementsByTagName(in DOMString name);
                 XalanFileOutputStream stream(XalanDOMString(filespec, strlen(filespec)));  static void _getElementsByTagName(Request& r, MethodParams* params) {
                 XalanOutputStreamPrintWriter writer(stream);          VXdoc& vdoc=GET_SELF(r, VXdoc);
                 const char *content_type, *charset;  
                 FormatterListener *formatterListener;          const String& name=params->as_string(0, "name must be string");
                 create_optioned_listener(content_type, charset, formatterListener,   
                         pool, method_name, params, 1, writer);          VHash* result(new VHash);
                 FormatterTreeWalker treeWalker(*formatterListener);          GdomeException exc;
                 treeWalker.traverse(&node); // Walk that node and produce the XML...          if(GdomeNodeList *nodes=
         } catch(const XSLException& e) {                  gdome_doc_getElementsByTagName(
                 r._throw(&method_name, e);                          vdoc.get_document(method_name), 
         }                          r.transcode(name).get(), 
                           &exc)) {
                   gulong length=gdome_nl_length(nodes, &exc);
                   for(gulong i=0; i<length; i++) {
                           const String& skey(new String);
                           *skey << pool.format_integer(i);
   
                           result->hash().put(
                                   skey, 
                                   Value*(new VXnode(&&r.charsets, gdome_nl_item(nodes, i, &exc))));
                   }
           } else if(exc)
                   throw Exception(
                           method_name, 
                           exc);
   
           // write out result
           r.write_no_lang(result);
 }  }
   
 static void _string(Request& r, const String& method_name, MethodParams *params) {  static void _getElementsByTagNameNS(Request& r, MethodParams* params) {
         Pool& pool=r.pool();          VXdoc& vdoc=GET_SELF(r, VXdoc);
         VXnode& vnode=*static_cast<VXnode *>(r.self);  
   
         // node  
         XalanNode& node=vnode.get_node(pool, &method_name);  
   
         try {  
                 String parserString=*new(pool) String(pool);  
                 ParserStringXalanOutputStream stream(parserString);  
                 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          // namespaceURI;localName
                 r.write_no_lang(parserString);          const String& namespaceURI=params->as_string(0, "namespaceURI must be string");
         } catch(const XSLException& e) {          const String& localName=params->as_string(1, "localName must be string");
                 r._throw(&method_name, e);  
           GdomeException exc;
           VHash* result(new VHash);
           if(GdomeNodeList *nodes=
                   gdome_doc_getElementsByTagNameNS(
                           vdoc.get_document(method_name), 
                           r.transcode(namespaceURI).get(),
                           r.transcode(localName).get(),
                           &exc)) {
                   gulong length=gdome_nl_length(nodes, &exc);
                   for(gulong i=0; i<length; i++) {
                           const String& skey(new String);
                           *skey << pool.format_integer(i);
   
                           result->hash().put(
                                   skey, 
                                   Value*(new VXnode(&&r.charsets, gdome_nl_item(nodes, i, &exc))));
                   }
         }          }
   
           // write out result
           r.write_no_lang(result);
 }  }
   
   static void _getElementById(Request& r, MethodParams* params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
 static void _file(Request& r, const String& method_name, MethodParams *params) {          // elementId
         Pool& pool=r.pool();          const String& elementId=params->as_string(0, "elementID must be string");
         VXnode& vnode=*static_cast<VXnode *>(r.self);  
   
         // node  
         XalanNode& node=vnode.get_node(pool, &method_name);  
   
         try {  
                 String& parserString=*new(pool) String(pool);  
                 ParserStringXalanOutputStream stream(parserString);  
                 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...  
   
           GdomeException exc;
           if(GdomeNode *node=(GdomeNode *)gdome_doc_getElementById(
                   vdoc.get_document(method_name),
                   r.transcode(elementId).get(),
                   &exc)) {
                 // write out result                  // write out result
                 VFile& vfile=*new(pool) VFile(pool);                  r.write_no_lang(Value*(new VXnode(&&r.charsets, node)));
                 const char *cstr=parserString.cstr();          } else if(exc || xmlHaveGenericErrors())
                 String *scontent_type=new(pool) String(pool, content_type);                  throw Exception(
                 Value *vcontent_type;                          method_name, 
                 if(charset) {                          exc);
                         VHash *vhcontent_type=new(pool) VHash(pool);  }
                         vhcontent_type->hash().put(*value_name, new(pool) VString(*scontent_type));  
                         String *scharset=new(pool) String(pool, charset);  static void _importNode(Request& r, MethodParams* params) {
                         vhcontent_type->hash().put(*new(pool) String(pool, "charset"), new(pool) VString(*scharset));          VXdoc& vdoc=GET_SELF(r, VXdoc);
                         vcontent_type=vhcontent_type;  
                 } else          GdomeNode *importedNode=
                         vcontent_type=new(pool) VString(*scontent_type);                  as_node(method_name, params, 0, "importedNode must be node");
                 vfile.set(false/*tainted*/, cstr, strlen(cstr), 0/*file_name*/, vcontent_type);          bool deep=
                 r.write_no_lang(vfile);                  params->as_bool(1, "deep must be bool", r);
         } catch(const XSLException& e) {  
                 r._throw(&method_name, e);          GdomeException exc;
         }          GdomeNode *outputNode=gdome_doc_importNode(vdoc.get_document(method_name), 
                   importedNode,
                   deep, &exc);
           if(exc)
                   throw Exception(
                           method_name, 
                           exc);
   
           // write out result
           r.write_no_lang(Value*(new VXnode(&&r.charsets, outputNode)));
 }  }
   /*
   GdomeElement *gdome_doc_createElementNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc);
   GdomeAttr *gdome_doc_createAttributeNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc);
   */
   
 static void _set(Request& r, const String& method_name, MethodParams *params) {  static void _create(Request& r, MethodParams* params) {
         Pool& pool=r.pool();          Charset& source_charset=r.charsets.source();
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         Value& vxml=params->as_junction(0, "xml must be code");          Value* param=(*params)[params->count()-1];
         Temp_lang temp_lang(r, String::UL_XML);          GdomeDocument *document;
         const String& xml=r.process(vxml).as_string();          if(param->get_junction()) { // {<?xml?>...}
                   Temp_lang temp_lang(r, String::L_XML);
         std::istrstream stream(xml.cstr());                  const String& xml=r.process_to_string(param);
         const XalanParsedSource* parsedSource;  
                   const char* cstr=xml->cstr(String::L_UNSPECIFIED);
         try {                  document=(GdomeDocument *)
                 parsedSource = new XalanDefaultParsedSource2(&stream);                          gdome_xml_n_mkref((xmlNode *)xmlParseMemory(
         }                                  cstr, strlen(cstr)
         catch (XSLException& e) {                          ));
                 r._throw(&method_name, e);                  if(!document || xmlHaveGenericErrors()) {
         }                          GdomeException exc=0;
         catch (SAXParseException& e)    {                          throw Exception(
                 r._throw(&method_name, e);                                  method_name, 
         }                                  exc);
         catch (SAXException& e) {                  }
                 r._throw(&method_name, e);          } else { // [name]
         }                  const String& qualifiedName=param->as_string();
         catch (XMLException& e) {  
                 r._throw(&method_name, e);                  GdomeException exc;
         }                  /*
         catch(const XalanDOMException&  e)      {                  GdomeDocumentType *documentType=gdome_di_createDocumentType (
                 r._throw(&method_name, e);                          docimpl, 
                           r.transcode(qualifiedName), 
                           0/*publicId* /, 
                           0/*systemId* /, 
                           &exc);
                   if(!documentType || exc || xmlHaveGenericErrors())
                           throw Exception(
                                   method_name, 
                                   exc);
                   */
                   document=gdome_di_createDocument (domimpl, 
                           0/*namespaceURI*/, 
                           r.transcode(qualifiedName).get(), 
                           0/*doctype*/, 
                           &exc);
                   if(!document || exc || xmlHaveGenericErrors())
                           throw Exception(
                                   method_name, 
                                   exc);
   
                   xmlDoc *doc=gdome_xml_doc_get_xmlDoc(document);
                   const char* source_charset_name=source_charset.name()->cstr();
                   doc->encoding=source_charset.transcode_buf2xchar(source_charset_name, strlen(source_charset_name));
   
                   /// +xalan createXMLDecl ?
         }          }
           
           // 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));
   
         // replace any previous parsed source          // replace any previous parsed source
         vdoc.set_parsed_source(*parsedSource);          vdoc.set_document(&&r.charsets, document);
 }  }
   
 static void _load(Request& r, const String& method_name, MethodParams *params) {  static void _load(Request& r, MethodParams* params) {
         Pool& pool=r.pool();          Charset& source_charset=r.charsets.source();
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);          VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         // filespec          // filespec
         const String& file_name=params->as_string(0, "file name must not be code");          const String& file_name=params->as_string(0, "uri must be string");
         const char *filespec=r.absolute(file_name).cstr(String::UL_FILE_SPEC);          const String& uri=r.absolute(file_name);
           
         const XalanParsedSource* parsedSource;          void *data;  size_t size;
         try {          File_read_result file=file_read(source_charset, uri, false/*not text*/,
                 parsedSource = new XalanDefaultParsedSource2(filespec);                  params->count()>1?params->as_no_junction(1, "additional params must be hash")
         }                          ->get_hash()
         catch (XSLException& e) {                          :0);
                 r._throw(&method_name, e);  
         }          GdomeDocument *document=(GdomeDocument *)
         catch (SAXParseException& e)    {                  gdome_xml_n_mkref((xmlNode *)xmlParseMemory(file.data, file.length));
                 r._throw(&method_name, e);          if(!document || xmlHaveGenericErrors()) {
         }                  GdomeException exc=0;
         catch (SAXException& e) {                  throw Exception(uri, exc);
                 r._throw(&method_name, e);          }
         }          const char* URI_cstr=uri->cstr();
         catch (XMLException& e) {          xmlDoc *doc=gdome_xml_doc_get_xmlDoc(document);
                 r._throw(&method_name, e);          if(URI_cstr)
         }                  doc->URL=source_charset.transcode_buf2xchar(URI_cstr, strlen(URI_cstr));
         catch(const XalanDOMException&  e)      {  
                 r._throw(&method_name, e);  
         }  
   
         // replace any previous parsed source          // replace any previous parsed source
         vdoc.set_parsed_source(*parsedSource);          vdoc.set_document(&&r.charsets, document);
 }  }
   
 static void add_xslt_param(const Hash::Key& aattribute, Hash::Val *ameaning,   static void param_option_over_output_option
                                                    void *info) {                                                                                          HashStringValue& param_options, const char* option_name,
         XalanTransformer2& transformer=*static_cast<XalanTransformer2 *>(info);                                                                                          String* & output_option) {
         const char *attribute_cstr=aattribute.cstr();          if(Value* value=param_options.get(String* (new String(option_name))))
         const char *meaning_cstr=static_cast<Value *>(ameaning)->as_string().cstr();                  output_option=value->as_string();
   }
         transformer.setStylesheetParam(  static void param_option_over_output_option
                 XalanDOMString(attribute_cstr),                                                                                            HashStringValue& param_options, const char* option_name,
                 XalanDOMString(meaning_cstr));                                                                                          bool& output_option) {
 }          if(Value* value=param_options.get(String* (new String(option_name)))) {
 static void _transform(Request& r, const String& method_name, MethodParams *params) {                  const String& s=value->as_string();
         Pool& pool=r.pool();                  if(*s=="yes")
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);                          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);
           }
   }
   
         // params  /// @test valid_options check
         if(params->size()>1) {  static void prepare_output_options(Request& r,
                 Value& vparams=params->as_no_junction(1, "transform parameters parameter must not be code");                                                                     const String& method_name, MethodParams* params, int index,
                 if(vparams.is_defined())                                                                     VXdoc::Output_options& oo) {
                         if(Hash *params=vparams.get_hash())  /*
                                 params->for_each(add_xslt_param, &vdoc.transformer());  <xsl:output
                         else    !method = "xml" | "html" | "text" | qname-but-not-ncname 
                                 PTHROW(0, 0,    !version = nmtoken 
                                         &method_name,    !encoding = string 
                                         "transform parameters parameter must be hash");    !omit-xml-declaration = "yes" | "no"
     !standalone = "yes" | "no"
     !doctype-public = string 
     !doctype-system = string 
     cdata-section-elements = qnames 
     !indent = "yes" | "no"
     !media-type = string /> 
   */
   
           // configuring with options from parameter...
           if(params->count()>index) {
                   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* (new String(XDOC_OUTPUT_METHOD_OPTION_NAME))))
                                           oo.method=vmethod->as_string();
   
                                   // $.version[1.0]
                                   param_option_over_output_option(*options, "version", oo.version);
                                   // $.encoding[windows-1251|...]
                                   param_option_over_output_option(*options, "encoding", oo.encoding);
                                   // $.omit-xml-declaration[yes|no]
                                   param_option_over_output_option(*options, "omit-xml-declaration", oo.omitXmlDeclaration);
                                   // $.standalone[yes|no]
                                   param_option_over_output_option(*options, "standalone", oo.standalone);
                                   // $.doctype-public[?]
                                   param_option_over_output_option(*options, "doctype-public", oo.doctypePublic);
                                   // $.doctype-system[?]
                                   param_option_over_output_option(*options, "doctype-system", oo.doctypeSystem);
                                   // $.indent[yes|no]
                                   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);                           
                           }
                   }
         }          }
   
         // source          // default encoding from pool
         const XalanParsedSource &parsed_source=vdoc.get_parsed_source(pool, &method_name);          if(!oo.encoding)
                   oo.encoding=r.charsets.source().name();
           // default method=xml
           if(!oo.method)
                   oo.method=String* (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=String* (new String("text/xml"));
                   else if(*oo.method==XDOC_OUTPUT_METHOD_OPTION_VALUE_HTML)
                           oo.mediaType=String* (new String("text/html"));
                   else // XDOC_OUTPUT_METHOD_OPTION_VALUE_TEXT & all others
                           oo.mediaType=String* (new String("text/plain"));
           }
   }
   
         // stylesheet  struct Xdoc2buf_result {
         const String& stylesheet_file_name=params->as_string(0, "file name must not be code");          char* ptr;
         const String& stylesheet_filespec=r.absolute(stylesheet_file_name);          size_t size;
         //_asm int 3;  };
         Stylesheet_connection& connection=XSLT_stylesheet_manager->get_connection(stylesheet_filespec);  static Xdoc2buf_result xdoc2buf(Request& r, VXdoc& vdoc, 
                                            const String& method_name, MethodParams* params, int index,
         // target                                           VXdoc::Output_options& oo,
         XalanDocument* target=vdoc.parser_liaison().createDocument();                                           const String& file_spec) {
           Xdoc2buf_result result;
         // transform          prepare_output_options(r, method_name, params, index,
         try {                  oo);
                 vdoc.transformer().transform2(  
                         parsed_source,           const char* encoding_cstr=oo.encoding->cstr();
                         &connection.stylesheet(true/*nocache*/),           xmlCharEncodingHandler *encoder=xmlFindCharEncodingHandler(encoding_cstr);
                         target);          if(!encoder)
         }                  throw Exception("parser.runtime",
         catch (XSLException& e) {                          method_name,
                 connection.close();                          "encoding '%s' not supported", encoding_cstr.get());
                 r._throw(&stylesheet_file_name, e);          // UTF-8 encoder contains empty input/output converters, 
         }          // which is wrong for xmlOutputBufferCreateIO
         catch (SAXParseException& e)    {          // while zero encoder goes perfectly 
                 connection.close();          if(encoder && strcmp(encoder->name, "UTF-8")==0)
                 r._throw(&stylesheet_file_name, e);                  encoder=0;
         }  
         catch (SAXException& e) {          xmlOutputBuffer_auto_ptr outputBuffer(xmlAllocOutputBuffer(encoder));
                 connection.close();  
                 r._throw(&stylesheet_file_name, e);          xsltStylesheet_auto_ptr stylesheet(xsltNewStylesheet());
         }          if(!stylesheet.get())
         catch (XMLException& e) {                  throw Exception(0,
                 connection.close();                          method_name,
                 r._throw(&stylesheet_file_name, e);                          "xsltNewStylesheet failed");
         }  
         catch(const XalanDOMException&  e)      {          #define OOS2STYLE(name) \
                 connection.close();                  stylesheet->name=oo.name?BAD_CAST g_strdup(r.transcode(oo.name)->str):0
                 r._throw(&stylesheet_file_name, e);          #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(method_name));
           if(xsltSaveResultTo(outputBuffer.get(), document, stylesheet.get())<0) {
                   GdomeException exc=0;
                   throw Exception(
                           method_name, 
                           exc);
         }          }
   
         // write out result          // write out result
         VXdoc& result=*new(pool) VXdoc(pool);          char *gnome_buf;  size_t gnome_size;
         result.set_document(*target);          if(outputBuffer->conv) {
         r.write_no_lang(result);                  gnome_size=outputBuffer->conv->use;
 }                  gnome_buf=(char *)outputBuffer->conv->content;
           } else {
                   gnome_size=outputBuffer->buffer->use;
                   gnome_buf=(char *)outputBuffer->buffer->content;
           }
           if(file_spec)
                   file_write(file_spec,
                                           gnome_buf, gnome_size, 
                                           true/*as_text*/);
           else if(result.size=gnome_size) {
                   result.ptr=pool.copy(gnome_buf, gnome_size);
           } else
                   result.ptr=0;
   
 static void _getElementById(Request& r, const String& method_name, MethodParams *params) {          return result;
         Pool& pool=r.pool();  }
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         // elementId  static void _file(Request& r, MethodParams* params) {
         const char *elementId=params->as_string(0, "elementID must not be code").cstr(String::UL_AS_IS);          VXdoc& vdoc=GET_SELF(r, VXdoc);
           VXdoc::Output_options oo(vdoc.output_options);
           Xdoc2buf_result buf=xdoc2buf(r, vdoc, method_name, params, 0, 
                   oo,
                   0/*not to file, to memory*/);
           // write out result
           r.write_no_lang(String(buf.ptr, buf.length));
   
         if(XalanElement *element=          // write out result
                 vdoc.get_document(pool, &method_name).getElementById(XalanDOMString(elementId))) {          VFile* vfile(new VFile);
                 // write out result          Value* vcontent_type;
                 VXnode& result=*new(pool) VXnode(pool, element);          VHash* vhcontent_type(new VHash);
                 r.write_no_lang(result);          vhcontent_type->hash(method_name).put(
         }                  value_name, 
                   Value*(new VString(oo.mediaType)));
           vhcontent_type->hash(method_name).put(
                   String* (new String("charset")), 
                   Value*(new VString(oo.encoding)));
           vcontent_type=vhcontent_type;
   
           vfile->set(false/*tainted*/, buf.ptr?buf.ptr:""/*to distinguish from stat-ed file*/, buf.size, 
                   0/*file_name*/, vcontent_type);
           r.write_no_lang(vfile);
 }  }
 /*  
 static void _getElementsByTagName(Request& r, const String& method_name, MethodParams *params) {  
         Pool& pool=r.pool();  
         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 _save(Request& r, MethodParams* params) {
                 }          VXdoc& vdoc=GET_SELF(r, VXdoc);
         }  
           const String& file_spec=r.absolute(params->as_string(0, "file name must be string"));
           
           VXdoc::Output_options oo(vdoc.output_options);
           xdoc2buf(r, vdoc, method_name, params, 1, 
                   oo,
                   file_spec);
   }
   
   static void _string(Request& r, MethodParams* params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
           VXdoc::Output_options oo(vdoc.output_options);
           Xdoc2buf_result buf=xdoc2buf(r, vdoc, method_name, params, 0, 
                   oo,
                   0/*not to file, to memory*/);
         // write out result          // write out result
         r.write_no_lang(result);          r.write_no_lang(String(buf.ptr, buf.length));
 }  }
   
 static void _getElementsByTagNameNS(Request& r, const String& method_name, MethodParams *params) {  #ifndef DOXYGEN
         Pool& pool=r.pool();  struct Add_xslt_param_info {
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);          Request* r;
           Array<GdomeDOMString_auto_ptr>* strings;
           const char** current_transform_param;
   };
   #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(&info->r->pool())))->str; *info->strings+=s;
   }
   static VXdocPtr _transform(Request& r, const String& doc_source, const String& stylesheet_source, 
                                                      VXdoc& vdoc, xsltStylesheetPtr stylesheet, const char** transform_params) {
           xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document(doc_source));
           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 Exception(
                           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,
                           doc_source,
                           "gdome_xml_doc_mkref failed");
           VXdocPtr 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, stylesheet_source):0;
           oo.encoding=stylesheet->encoding?r.transcode(stylesheet->encoding, stylesheet_source):0;
           oo.mediaType=stylesheet->mediaType?r.transcode(stylesheet->mediaType, stylesheet_source):0;
           oo.doctypeSystem=stylesheet->doctypeSystem?r.transcode(stylesheet->doctypeSystem, stylesheet_source):0;
           oo.doctypePublic=stylesheet->doctypePublic?r.transcode(stylesheet->doctypePublic, stylesheet_source):0;
           oo.indent=stylesheet->indent!=0;
           oo.version=stylesheet->version?r.transcode(stylesheet->version, stylesheet_source):0;
           oo.standalone=stylesheet->standalone!=0;
           oo.omitXmlDeclaration=stylesheet->omitXmlDeclaration!=0;
   
         // namespaceURI;localName          // return
         const char *namespaceURI=params->as_string(0, "namespaceURI must not be code").cstr(String::UL_AS_IS);          return result;
         const char *localName=params->as_string(0, "localName must not be code").cstr(String::UL_AS_IS);  }
   static void _transform(Request& r, MethodParams* params) {
           VXdoc& vdoc=GET_SELF(r, VXdoc);
   
         VHash& result=*new(pool) VHash(pool);          // params
         if(const XalanNodeList *nodes=          Array<GdomeDOMString_auto_ptr> transform_strings;
                 vdoc.get_document(pool, &method_name).getElementsByTagNameNS(          smart_ptr<const char*> transform_params;
                         XalanDOMString(namespaceURI), XalanDOMString(localName))) {          if(params->count()>1) {
                 for(int i=0; i<nodes->getLength(); i++) {                  Value* vparams=params->as_no_junction(1, "transform parameters must be hash");
                         String& skey=*new(pool) String(pool);                  if(!vparams->is_string())
                         {                          if(HashStringValue* params=vparams->get_hash()) {
                                 char *buf=(char *)pool.malloc(MAX_NUMBER);                                  transform_params=smart_ptr<const char*>(new const char*[params->count()*2+1]);
                                 snprintf(buf, MAX_NUMBER, "%d", i);                                  Add_xslt_param_info info={
                                 skey << buf;                                          &r, 
                         }                                          &transform_strings,
                                           transform_params
                                   };
                                   params->for_each(add_xslt_param, &info);
                                   transform_params[params->count()*2]=0;                          
                           } else
                                   throw Exception("parser.runtime",
                                           method_name,
                                           "transform parameters parameter must be hash");
           }
   
                         result.hash().put(skey, new(pool) VXnode(pool, nodes->item(i)));          VXdocPtr result;
           Value* vmaybe_xdoc=(*params)[0];
           if(Value *vxdoc=vmaybe_xdoc->as(VXDOC_TYPE, false)) { // stylesheet (xdoc)
                   xmlDoc *document=gdome_xml_doc_get_xmlDoc(
                           static_cast<VXdoc *>(vxdoc)->get_document(method_name));
                   // compile xdoc stylesheet
                   xsltStylesheet_auto_ptr stylesheet_ptr(xsltParseStylesheetDoc(document)); 
                   // strange thing - xsltParseStylesheetDoc records document and destroys it in stylesheet destructor
                   // we don't need that
                   stylesheet_ptr->doc=0;
                   if(xmlHaveGenericErrors()) {
                           GdomeException exc=0;
                           throw Exception(method_name, exc);
                 }                  }
                   if(!stylesheet_ptr.get())
                           throw Exception("xml",
                                   method_name,
                                   "stylesheet failed to compile");
   
                   // transform!
                   result=_transform(r, method_name, method_name,
                           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_connectionPtr connection=stylesheet_manager.get_connection(stylesheet_filespec);
   
                   // load and compile file to stylesheet [or get cached if any]
                   // transform!
                   result=_transform(r, method_name, stylesheet_filespec,
                           vdoc, connection->stylesheet(false/*nocache*/),
                           transform_params);
         }          }
   
         // write out result          // write out result
         r.write_no_lang(result);          r.write_no_lang(result);
 }  }
 */  
 // constructor  // constructor
   
 MXdoc::MXdoc(Pool& apool) : MXnode(apool) {  /// @test how to create empty type html?
         set_name(*NEW String(pool(), XDOC_CLASS_NAME));  MXdoc::MXdoc(): MXnode(XDOC_CLASS_NAME, xnode_class.get()) {
           /// 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);
   
           // 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, 2);
   
         // ^xdoc.save[some.xml]          // ^xdoc.save[some.xml]
         // ^xdoc.save[some.xml;options hash]          // ^xdoc.save[some.xml;options hash]
Line 545  MXdoc::MXdoc(Pool& apool) : MXnode(apool Line 896  MXdoc::MXdoc(Pool& apool) : MXnode(apool
         // ^xdoc.file[options hash] file with "<doc/>"          // ^xdoc.file[options hash] file with "<doc/>"
         add_native_method("file", Method::CT_DYNAMIC, _file, 0, 1);          add_native_method("file", Method::CT_DYNAMIC, _file, 0, 1);
   
         // ^xdoc::set[<some>xml</some>]          // ^xdoc.transform[stylesheet file_name/xdoc]
         add_native_method("set", Method::CT_DYNAMIC, _set, 1, 1);          // ^xdoc.transform[stylesheet file_name/xdoc;params hash]
   
         // ^xdoc::load[some.xml]  
         add_native_method("load", Method::CT_DYNAMIC, _load, 1, 1);  
   
         // ^xdoc.transform[stylesheet file_name]  
         // ^xdoc.transform[stylesheet file_name;params hash]  
         add_native_method("transform", Method::CT_DYNAMIC, _transform, 1, 2);          add_native_method("transform", Method::CT_DYNAMIC, _transform, 1, 2);
   
         // ^xdoc.getElementById[elementId]  
         add_native_method("getElementById", Method::CT_DYNAMIC, _getElementById, 1, 1);  
 /*        
         // ^xdoc.getElementsByTagName[tagname]  
         add_native_method("getElementsByTagName", Method::CT_DYNAMIC, _getElementsByTagName, 1, 1);  
   
         // ^xdoc.getElementsByTagNameNS[namespaceURI;localName] = array of nodes  
         add_native_method("getElementsByTagNameNS", Method::CT_DYNAMIC, _getElementsByTagNameNS, 2, 2);  
 */  
 }  }
   
 void MXdoc::configure_admin(Request& r) {  void MXdoc::configure_admin(Request& r) {
 }  }
   
 // global variable  # else
   
 Methoded *Xdoc_class;  // global variable
   
 // creator  DECLARE_CLASS_VAR(xdoc, 0, 0); // fictive
   
 #endif  #endif
   
 Methoded *MXdoc_create(Pool& pool) {  
         return   
 #ifdef XML  
                 Xdoc_class=new(pool) MXdoc(pool);  
 #else  
                 0  
 #endif  
         ;  
 }  

Removed from v.1.13  
changed lines
  Added in v.1.108.2.19.2.8


E-mail: