00001
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef __XML_HANDLING_ROUTINES_H
00020 #define __XML_HANDLING_ROUTINES_H
00021
00028 u_char *get_node_value(GdomeNode *n);
00029
00037 GdomeDocument *xml_create_doc(GdomeDOMImplementation *impl,const u_char *dtd_uri);
00038
00046 GdomeElement *xml_create_element(GdomeDocument *doc,const u_char *name);
00047
00054 void xml_set_attribute(GdomeElement *el,const u_char *name,const u_char *val);
00055
00062 void xml_set_value(GdomeDocument *doc,GdomeElement *el,const u_char *value);
00063
00073 t_posting *stringify_posting(GdomeDocument *doc1,GdomeElement *t1,GdomeDocument *doc2,GdomeElement *t2,t_posting *p);
00074
00080 void stringify_thread_and_write_to_disk(GdomeDocument *doc1,t_thread *t);
00081
00082 #endif
00083
00084