Diff for /parser3/src/classes/xdoc.C between versions 1.65 and 1.92

version 1.65, 2002/01/16 10:28:34 version 1.92, 2002/04/18 15:54:39
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, 2002 ArtLebedev Group (http://www.artlebedev.com)
         Author: Alexander Petrosyan <paf@design.ru> (http://paf.design.ru)          Author: Alexandr Petrosian <paf@design.ru> (http://paf.design.ru)
   
         $Id$          $Id$
 */  */
 #include "pa_types.h"  #include "classes.h"
 #ifdef XML  #ifdef XML
   
 #include "pa_stylesheet_connection.h"  #include "pa_stylesheet_connection.h"
 #include "classes.h"  
 #include "pa_request.h"  #include "pa_request.h"
 #include "pa_vxdoc.h"  #include "pa_vxdoc.h"
 #include "pa_charset.h"  #include "pa_charset.h"
 #include "pa_vfile.h"  #include "pa_vfile.h"
 #include "xnode.h"  #include "xnode.h"
   
   #include "gdome.h"
   #include "libxml/tree.h"
 extern "C" {  extern "C" {
 #include "gdomecore/gdome-xml-node.h"  #include "gdomecore/gdome-xml-node.h"
 #include "gdomecore/gdome-xml-document.h"  #include "gdomecore/gdome-xml-document.h"
 };  };
   #include "libxslt/xsltInternals.h"
 #include "libxslt/transform.h"  #include "libxslt/transform.h"
 #include "libxslt/xsltutils.h"  #include "libxslt/xsltutils.h"
   #include "libxslt/variables.h"
   
 // defines  // defines
   
Line 43  public: Line 46  public:
         MXdoc(Pool& pool);          MXdoc(Pool& pool);
   
 public: // Methoded  public: // Methoded
         bool used_directly() { return true; }  
         void configure_admin(Request& r);          void configure_admin(Request& r);
 };  };
   
Line 51  public: // Methoded Line 53  public: // Methoded
   
 class xmlOutputBuffer_auto_ptr {  class xmlOutputBuffer_auto_ptr {
 public:  public:
         explicit xmlOutputBuffer_auto_ptr(xmlOutputBuffer *_P = 0)           explicit xmlOutputBuffer_auto_ptr(xmlOutputBuffer *_APtr = 0) 
                 : _Owns(_P != 0), _Ptr(_P) {}                  : _Owns(_APtr != 0), _Ptr(_APtr) {}
         xmlOutputBuffer_auto_ptr(const xmlOutputBuffer_auto_ptr& _Y)           xmlOutputBuffer_auto_ptr(const xmlOutputBuffer_auto_ptr& _Y) 
                 : _Owns(_Y._Owns), _Ptr(_Y.release()) {}                  : _Owns(_Y._Owns), _Ptr(_Y.release()) {}
         xmlOutputBuffer_auto_ptr& operator=(const xmlOutputBuffer_auto_ptr& _Y)           xmlOutputBuffer_auto_ptr& operator=(const xmlOutputBuffer_auto_ptr& _Y) 
Line 84  private: Line 86  private:
   
 class xsltTransformContext_auto_ptr {  class xsltTransformContext_auto_ptr {
 public:  public:
         explicit xsltTransformContext_auto_ptr(xsltTransformContext *_P = 0)           explicit xsltTransformContext_auto_ptr(xsltTransformContext *_APtr = 0) 
                 : _Owns(_P != 0), _Ptr(_P) {}                  : _Owns(_APtr != 0), _Ptr(_APtr) {}
         xsltTransformContext_auto_ptr(const xsltTransformContext_auto_ptr& _Y)           xsltTransformContext_auto_ptr(const xsltTransformContext_auto_ptr& _Y) 
                 : _Owns(_Y._Owns), _Ptr(_Y.release()) {}                  : _Owns(_Y._Owns), _Ptr(_Y.release()) {}
         xsltTransformContext_auto_ptr& operator=(const xsltTransformContext_auto_ptr& _Y)           xsltTransformContext_auto_ptr& operator=(const xsltTransformContext_auto_ptr& _Y) 
Line 117  private: Line 119  private:
   
 class xsltStylesheet_auto_ptr {  class xsltStylesheet_auto_ptr {
 public:  public:
         explicit xsltStylesheet_auto_ptr(xsltStylesheet *_P = 0)           explicit xsltStylesheet_auto_ptr(xsltStylesheet *_APtr = 0) 
                 : _Owns(_P != 0), _Ptr(_P) {}                  : _Owns(_APtr != 0), _Ptr(_APtr) {}
         xsltStylesheet_auto_ptr(const xsltStylesheet_auto_ptr& _Y)           xsltStylesheet_auto_ptr(const xsltStylesheet_auto_ptr& _Y) 
                 : _Owns(_Y._Owns), _Ptr(_Y.release()) {}                  : _Owns(_Y._Owns), _Ptr(_Y.release()) {}
         xsltStylesheet_auto_ptr& operator=(const xsltStylesheet_auto_ptr& _Y)           xsltStylesheet_auto_ptr& operator=(const xsltStylesheet_auto_ptr& _Y) 
Line 153  private: Line 155  private:
 static void writeNode(Request& r,  const String& method_name, GdomeNode *node,   static void writeNode(Request& r,  const String& method_name, GdomeNode *node, 
                                           GdomeException exc) {                                            GdomeException exc) {
         if(!node || exc)          if(!node || exc)
                 throw Exception(0, 0,                   throw Exception(
                         &method_name,                           &method_name, 
                         exc);                          exc);
   
Line 283  static void _createEntityReference(Reque Line 285  static void _createEntityReference(Reque
         writeNode(r, method_name, node, exc);          writeNode(r, method_name, node, exc);
 }  }
   
 static void _getElementsByTagName(Request& r, const String& method_name, MethodParams *params) {  
         Pool& pool=r.pool();  
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         const String& name=params->as_string(0, "name must be string");  
   
         GdomeException exc;  
         VHash& result=*new(pool) VHash(pool);  
         if(GdomeNodeList *nodes=  
                 gdome_doc_getElementsByTagName(  
                         vdoc.get_document(&method_name),   
                         pool.transcode(name).get(),  
                         &exc)) {  
                 gulong length=gdome_nl_length(nodes, &exc);  
                 for(gulong i=0; i<length; i++) {  
                         String& skey=*new(pool) String(pool);  
                         {  
                                 char *buf=(char *)pool.malloc(MAX_NUMBER);  
                                 snprintf(buf, MAX_NUMBER, "%d", i);  
                                 skey << buf;  
                         }  
   
                         result.hash(0).put(skey, new(pool) VXnode(pool, gdome_nl_item(nodes, i, &exc)));  
                 }  
         }  
   
         // write out result  
         r.write_no_lang(result);  
 }  
   
 static void _getElementsByTagNameNS(Request& r, const String& method_name, MethodParams *params) {  
         Pool& pool=r.pool();  
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);  
   
         // namespaceURI;localName  
         const String& namespaceURI=params->as_string(0, "namespaceURI must be string");  
         const String& localName=params->as_string(0, "localName must be string");  
   
         GdomeException exc;  
         VHash& result=*new(pool) VHash(pool);  
         if(GdomeNodeList *nodes=  
                 gdome_doc_getElementsByTagNameNS(  
                         vdoc.get_document(&method_name),   
                         pool.transcode(namespaceURI).get(),  
                         pool.transcode(localName).get(),  
                         &exc)) {  
                 gulong length=gdome_nl_length(nodes, &exc);  
                 for(gulong i=0; i<length; i++) {  
                         String& skey=*new(pool) String(pool);  
                         {  
                                 char *buf=(char *)pool.malloc(MAX_NUMBER);  
                                 snprintf(buf, MAX_NUMBER, "%d", i);  
                                 skey << buf;  
                         }  
   
                         result.hash(0).put(skey, new(pool) VXnode(pool, gdome_nl_item(nodes, i, &exc)));  
                 }  
         }  
   
   
         // write out result  
         r.write_no_lang(result);  
 }  
   
 static void _getElementById(Request& r, const String& method_name, MethodParams *params) {  static void _getElementById(Request& r, const String& method_name, MethodParams *params) {
         Pool& pool=r.pool();          Pool& pool=r.pool();
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);          VXdoc& vdoc=*static_cast<VXdoc *>(r.self);
Line 362  static void _getElementById(Request& r, Line 300  static void _getElementById(Request& r,
                 // write out result                  // write out result
                 VXnode& result=*new(pool) VXnode(pool, node);                  VXnode& result=*new(pool) VXnode(pool, node);
                 r.write_no_lang(result);                  r.write_no_lang(result);
         } else if(exc)          } else if(exc || xmlHaveGenericErrors())
                 throw Exception(0, 0,                   throw Exception(
                         &method_name,                           &method_name, 
                         exc);                          exc);
 }  }
 /*  
 GdomeNode *gdome_doc_importNode (GdomeDocument *self, GdomeNode *importedNode, GdomeBoolean deep, GdomeException *exc);  
 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 _importNode(Request& r, const String& method_name, MethodParams *params) {
 static void _create(Request& r, const String& method_name, MethodParams *params) {  
         //_asm int 3;  
         Pool& pool=r.pool();          Pool& pool=r.pool();
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);          VXdoc& vdoc=*static_cast<VXdoc *>(r.self);
   
         const String& qualifiedName=params->as_string(0, "qualifiedName must be string");          GdomeNode *importedNode=
                   as_node(method_name, params, 0, "importedNode must be node");
           bool deep=
                   params->as_bool(1, "deep must be bool", r);
   
         GdomeException exc;          GdomeException exc;
         /*          GdomeNode *outputNode=gdome_doc_importNode(vdoc.get_document(&method_name), 
         GdomeDocumentType *documentType=gdome_di_createDocumentType (                  importedNode,
                 docimpl,                   deep, &exc);
                 pool.transcode(qualifiedName),           if(exc)
                 0/*publicId* /,                   throw Exception(
                 0/*systemId* /,   
                 &exc);  
         if(!documentType || exc)  
                 throw Exception(0, 0,   
                         &method_name,   
                         exc);  
         */  
         GdomeDocument *document=gdome_di_createDocument (domimpl,   
                 0/*namespaceURI*/,   
                 pool.transcode(qualifiedName).get(),   
                 0/*doctype*/,   
                 &exc);  
         if(!document || exc)  
                 throw Exception(0, 0,   
                         &method_name,                           &method_name, 
                         exc);                          exc);
   
         /// +xalan createXMLDecl ?          // write out result
           r.write_no_lang(*new(pool) VXnode(pool, outputNode));
         // replace any previous parsed source  
         vdoc.set_document(document);  
 }  }
   /*
   GdomeElement *gdome_doc_createElementNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc);
   GdomeAttr *gdome_doc_createAttributeNS (GdomeDocument *self, GdomeDOMString *namespaceURI, GdomeDOMString *qualifiedName, GdomeException *exc);
   */
   
   
 /// @test xmlSAXParseMemory(NULL<<error handler subst, buffer, size, 0)  static void _create(Request& r, const String& method_name, MethodParams *params) {
 static void _set(Request& r, const String& method_name, MethodParams *params) {          //_asm int 3;
 //      _asm int 3;  
         Pool& pool=r.pool();          Pool& pool=r.pool();
         VXdoc& vdoc=*static_cast<VXdoc *>(r.self);          VXdoc& vdoc=*static_cast<VXdoc *>(r.self);
   
         Value& vxml=params->as_junction(0, "xml must be code");          Value& param=params->get(0);
         Temp_lang temp_lang(r, String::UL_XML);          GdomeDocument *document;
         const String& xml=r.process(vxml).as_string();          if(param.get_junction()) { // {<tag/>}
                   Temp_lang temp_lang(r, String::UL_XML);
                   const String& xml=r.process_to_string(param);
   
                   const char *cstr=xml.cstr(String::UL_UNSPECIFIED);
                   document=(GdomeDocument *)
                           gdome_xml_n_mkref((xmlNode *)xmlParseMemory(
                                   cstr, strlen(cstr)
                           ));
                   if(!document || xmlHaveGenericErrors()) {
                           GdomeException exc=0;
                           throw Exception(
                                   &method_name, 
                                   exc);
                   }
           } else { // [name]
                   const String& qualifiedName=param.as_string();
   
         GdomeException exc;                  GdomeException exc;
         GdomeDocument *document=gdome_di_createDocFromMemory(domimpl,                  /*
                 xml.cstr(String::UL_UNSPECIFIED, r.connection(0)),                  GdomeDocumentType *documentType=gdome_di_createDocumentType (
                 GDOME_LOAD_PARSING                          docimpl, 
                 /* GDOME_LOAD_VALIDATING  pending until kill warning of no-dtd*/                           pool.transcode(qualifiedName), 
                 /*|GDOME_LOAD_SUBSTITUTE_ENTITIES */,                          0/*publicId* /, 
                 &exc);                          0/*systemId* /, 
         if(!document || exc)                          &exc);
                 throw Exception(0, 0,                   if(!documentType || exc || xmlHaveGenericErrors())
                         &method_name,                           throw Exception(
                         exc);                                  &method_name, 
                                   exc);
                   */
                   document=gdome_di_createDocument (domimpl, 
                           0/*namespaceURI*/, 
                           pool.transcode(qualifiedName).get(), 
                           0/*doctype*/, 
                           &exc);
                   if(!document || exc || xmlHaveGenericErrors())
                           throw Exception(
                                   &method_name, 
                                   exc);
   
                   /// +xalan createXMLDecl ?
           }
         // replace any previous parsed source          // replace any previous parsed source
         vdoc.set_document(document);          vdoc.set_document(document);
 }  }
Line 444  static void _load(Request& r, const Stri Line 395  static void _load(Request& r, const Stri
         const String& file_name=params->as_string(0, "uri must be string");          const String& file_name=params->as_string(0, "uri must be string");
         const String& uri=r.absolute(file_name);          const String& uri=r.absolute(file_name);
                   
         GdomeException exc;          GdomeDocument *document=(GdomeDocument *)
         GdomeDocument *document=gdome_di_createDocFromURI(domimpl,                  gdome_xml_n_mkref((xmlNode *)xmlParseFile(uri.cstr()));
                 uri.cstr(),          if(!document || xmlHaveGenericErrors()) {
                 GDOME_LOAD_PARSING                  GdomeException exc=0;
                 /* GDOME_LOAD_VALIDATING  pending until kill warning of no-dtd*/                   throw Exception(
                 /*|GDOME_LOAD_SUBSTITUTE_ENTITIES */,                          &uri, 
                 &exc);  
         if(!document || exc)  
                 throw Exception(0, 0,   
                         &method_name,   
                         exc);                          exc);
           }
   
         // replace any previous parsed source          // replace any previous parsed source
         vdoc.set_document(document);          vdoc.set_document(document);
Line 478  static void param_option_over_output_opt Line 426  static void param_option_over_output_opt
                 else if(s=="no")                  else if(s=="no")
                         output_option=false;                          output_option=false;
                 else                  else
                         throw Exception(0, 0,                          throw Exception("parser.runtime",
                                 &s,                                  &s,
                                 "%s must be either 'yes' or 'no'", option_name);                                  "%s must be either 'yes' or 'no'", option_name);
         }          }
Line 559  static void xdoc2buf(Pool& pool, VXdoc& Line 507  static void xdoc2buf(Pool& pool, VXdoc&
         const char *encoding_cstr=oo.encoding->cstr();          const char *encoding_cstr=oo.encoding->cstr();
         xmlCharEncodingHandler *encoder=xmlFindCharEncodingHandler(encoding_cstr);          xmlCharEncodingHandler *encoder=xmlFindCharEncodingHandler(encoding_cstr);
         if(!encoder)          if(!encoder)
                 throw Exception(0, 0,                  throw Exception("parser.runtime",
                         &method_name,                          &method_name,
                         "encoding '%s' not supported", encoding_cstr);                          "encoding '%s' not supported", encoding_cstr);
         // UTF-8 encoder contains empty input/output converters,           // UTF-8 encoder contains empty input/output converters, 
Line 572  static void xdoc2buf(Pool& pool, VXdoc& Line 520  static void xdoc2buf(Pool& pool, VXdoc&
   
         xsltStylesheet_auto_ptr stylesheet(xsltNewStylesheet());          xsltStylesheet_auto_ptr stylesheet(xsltNewStylesheet());
         if(!stylesheet.get())          if(!stylesheet.get())
                 throw Exception(0, 0,                  throw Exception(0,
                         &method_name,                          &method_name,
                         "xsltNewStylesheet failed");                          "xsltNewStylesheet failed");
   
Line 591  static void xdoc2buf(Pool& pool, VXdoc& Line 539  static void xdoc2buf(Pool& pool, VXdoc&
         OOE2STYLE(standalone);          OOE2STYLE(standalone);
         OOE2STYLE(omitXmlDeclaration);          OOE2STYLE(omitXmlDeclaration);
   
         xmlDoc *document=((Gdome_xml_Document*)vdoc.get_document(&method_name))->n;          xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document(&method_name));
         xsltSaveResultTo(outputBuffer.get(), document, stylesheet.get());          if(xsltSaveResultTo(outputBuffer.get(), document, stylesheet.get())<0) {
                   GdomeException exc=0;
                   throw Exception(
                           &method_name, 
                           exc);
           }
   
         // write out result          // write out result
         char *gnome_buf;  size_t gnome_size;          char *gnome_buf;  size_t gnome_size;
Line 604  static void xdoc2buf(Pool& pool, VXdoc& Line 557  static void xdoc2buf(Pool& pool, VXdoc&
                 gnome_buf=(char *)outputBuffer->buffer->content;                  gnome_buf=(char *)outputBuffer->buffer->content;
         }          }
         if(file_spec)          if(file_spec)
                 file_write(pool,                   file_write(
                                         *file_spec,                                          *file_spec,
                                         gnome_buf, gnome_size,                                           gnome_buf, gnome_size, 
                                         true/*as_text*/);                                          true/*as_text*/);
         else {          else if(*parser_size=gnome_size) {
                 *parser_size=gnome_size;  
                 *parser_buf=(char *)pool.malloc(gnome_size);                  *parser_buf=(char *)pool.malloc(gnome_size);
                 memcpy(*parser_buf, gnome_buf, gnome_size);                  memcpy(*parser_buf, gnome_buf, gnome_size);
         }          } else
                   *parser_buf=0;
 }  }
   
 static void _file(Request& r, const String& method_name, MethodParams *params) {  static void _file(Request& r, const String& method_name, MethodParams *params) {
Line 673  static void add_xslt_param(const Hash::K Line 626  static void add_xslt_param(const Hash::K
                                                    void *info) {                                                     void *info) {
         Value *meaning=static_cast<Value *>(ameaning);          Value *meaning=static_cast<Value *>(ameaning);
         Pool& pool=meaning->pool();          Pool& pool=meaning->pool();
         const char **transform_params=(const char **)info;          const char ** & current_transform_param=*(const char ***)info;
         *transform_params++=pool.transcode(aattribute)->str;          *current_transform_param++=pool.transcode(aattribute)->str;
         *transform_params++=pool.transcode(meaning->as_string())->str;          *current_transform_param++=pool.transcode(meaning->as_string())->str;
 }  }
 static void _transform(Request& r, const String& method_name, MethodParams *params) {  static void _transform(Request& r, const String& method_name, MethodParams *params) {
         //_asm int 3;          //_asm int 3;
Line 688  static void _transform(Request& r, const Line 641  static void _transform(Request& r, const
                 Value& vparams=params->as_no_junction(1, "transform parameters must be hash");                  Value& vparams=params->as_no_junction(1, "transform parameters must be hash");
                 if(vparams.is_defined())                  if(vparams.is_defined())
                         if(Hash *params=vparams.get_hash(&method_name)) {                          if(Hash *params=vparams.get_hash(&method_name)) {
                                 transform_params=                                  const char **current_transform_param=transform_params=
                                         (const char **)pool.malloc(sizeof(const char *)*params->size()*2+1);                                          (const char **)pool.malloc(sizeof(const char *)*(params->size()*2+1));
                                 params->for_each(add_xslt_param, transform_params);                                  params->for_each(add_xslt_param, &current_transform_param);
                                 transform_params[params->size()*2]=0;                                                             transform_params[params->size()*2]=0;                           
                         } else                          } else
                                 throw Exception(0, 0,                                  throw Exception("parser.runtime",
                                         &method_name,                                          &method_name,
                                         "transform parameters parameter must be hash");                                          "transform parameters parameter must be hash");
         }          }
Line 702  static void _transform(Request& r, const Line 655  static void _transform(Request& r, const
         const String& stylesheet_filespec=r.absolute(params->as_string(0, "file name must be string"));          const String& stylesheet_filespec=r.absolute(params->as_string(0, "file name must be string"));
         Stylesheet_connection_ptr connection=stylesheet_manager->get_connection(stylesheet_filespec);          Stylesheet_connection_ptr connection=stylesheet_manager->get_connection(stylesheet_filespec);
   
         // transform          // prepare to transform
         xsltStylesheet *stylesheet=connection->stylesheet(false/*nocache*/);          xsltStylesheet *stylesheet=connection->stylesheet(false/*nocache*/);
         xmlDoc *document=((Gdome_xml_Document*)vdoc.get_document(&method_name))->n;          xmlDoc *document=gdome_xml_doc_get_xmlDoc(vdoc.get_document(&method_name));
         xsltTransformContext_auto_ptr transformContext(          xsltTransformContext_auto_ptr transformContext(
                 xsltNewTransformContext(stylesheet, document));                  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(          xmlDoc *transformed=xsltApplyStylesheetUser(
                 stylesheet,                  stylesheet,
                 document,                  document,
                 transform_params,                  0/*already quoted-inserted  transform_params*/,
                 0/*const char *output*/,                  0/*const char *output*/,
                 0/*FILE *profile*/,                  0/*FILE *profile*/,
                 transformContext.get());                  transformContext.get());
         if(!transformed)          if(!transformed || xmlHaveGenericErrors()) {
                 throw Exception(0, 0,                  GdomeException exc=0;
                         &method_name,                   throw Exception(
                         "transform failed. TODO: show errors");                          &stylesheet_filespec, 
                           exc);
           }
   
         //gdome_xml_doc_mkref dislikes XML_HTML_DOCUMENT_NODE  type, fixing          //gdome_xml_doc_mkref dislikes XML_HTML_DOCUMENT_NODE  type, fixing
         transformed->type=XML_DOCUMENT_NODE;          transformed->type=XML_DOCUMENT_NODE;
         // constructing result          // constructing result
         GdomeDocument *gdomeDocument=gdome_xml_doc_mkref(transformed);          GdomeDocument *gdomeDocument=gdome_xml_doc_mkref(transformed);
         if(!gdomeDocument)          if(!gdomeDocument)
                 throw Exception(0, 0,                  throw Exception(0,
                         &method_name,                          &method_name,
                         "gdome_xml_doc_mkref failed");                          "gdome_xml_doc_mkref failed");
         VXdoc& result=*new(pool) VXdoc(pool, gdomeDocument);          VXdoc& result=*new(pool) VXdoc(pool, gdomeDocument);
Line 762  static void _transform(Request& r, const Line 722  static void _transform(Request& r, const
   
 // 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(Pool& apool) : MXnode(apool, XDOC_CLASS_NAME, Xnode_class) {
   
         /// @test how to create empty type html?  
   
         /// DOM1          /// DOM1
   
         // Element createElement(in DOMString tagName) raises(DOMException);          // Element createElement(in DOMString tagName) raises(DOMException);
Line 785  MXdoc::MXdoc(Pool& apool) : MXnode(apool Line 742  MXdoc::MXdoc(Pool& apool) : MXnode(apool
         add_native_method("createAttribute", Method::CT_DYNAMIC, _createAttribute, 1, 1);          add_native_method("createAttribute", Method::CT_DYNAMIC, _createAttribute, 1, 1);
         // EntityReference createEntityReference(in DOMString name) raises(DOMException);          // EntityReference createEntityReference(in DOMString name) raises(DOMException);
         add_native_method("createEntityReference", Method::CT_DYNAMIC, _createEntityReference, 1, 1);          add_native_method("createEntityReference", Method::CT_DYNAMIC, _createEntityReference, 1, 1);
         // NodeList getElementsByTagName(in DOMString 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);  
   
         /// DOM2(?)          /// DOM2
   
         // ^xdoc.getElementById[elementId]          // ^xdoc.getElementById[elementId]
         add_native_method("getElementById", Method::CT_DYNAMIC, _getElementById, 1, 1);          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);
   
         /// parser          /// parser
                   
         // ^xdoc::create{qualifiedName}          // ^xdoc::create{qualifiedName}
           // ^xdoc::_create[<some>xml</some>]
         add_native_method("create", Method::CT_DYNAMIC, _create, 1, 1);           add_native_method("create", Method::CT_DYNAMIC, _create, 1, 1); 
         // ^xdoc::set[<some>xml</some>]          // for backward compatibility with <=v 1.82 2002/01/31 11:51:46 paf
         add_native_method("set", Method::CT_DYNAMIC, _set, 1, 1);          add_native_method("set", Method::CT_DYNAMIC, _create, 1, 1);
   
         // ^xdoc::load[some.xml]          // ^xdoc::load[some.xml]
         add_native_method("load", Method::CT_DYNAMIC, _load, 1, 1);          add_native_method("load", Method::CT_DYNAMIC, _load, 1, 1);

Removed from v.1.65  
changed lines
  Added in v.1.92


E-mail: