#include "config.h"
#include "defines.h"
#include <stdlib.h>
#include <gdome.h>
#include <pthread.h>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/stat.h>
#include "cf_pthread.h"
#include "charconvert.h"
#include "utils.h"
#include "hashlib.h"
#include "readline.h"
#include "fo_server.h"
#include "configparser.h"
#include "xml_handling.h"
#include "serverlib.h"
Go to the source code of this file.
Functions | |
| GdomeDocument * | xml_create_doc (GdomeDOMImplementation *impl, const u_char *dtd_uri) |
| GdomeElement * | xml_create_element (GdomeDocument *doc, const u_char *name) |
| void | xml_set_attribute (GdomeElement *el, const u_char *name, const u_char *val) |
| void | xml_set_value (GdomeDocument *doc, GdomeElement *el, const u_char *value) |
| t_posting * | stringify_posting (GdomeDocument *doc1, GdomeElement *t1, GdomeDocument *doc2, GdomeElement *t2, t_posting *p) |
| void | stringify_thread_and_write_to_disk (GdomeDocument *doc1, t_thread *t) |
| u_char * | get_node_value (GdomeNode *n) |
Definition in file xml_handling.c.
|
|
This function tries to get the node content. The returned charset is UTF-8.
Definition at line 348 of file xml_handling.c. |
|
||||||||||||||||||||||||
|
This function stringifies the postings of a thread.
Definition at line 104 of file xml_handling.c. |
|
||||||||||||
|
This function stringifies the thread and its postings
Definition at line 278 of file xml_handling.c. |
|
||||||||||||
|
This function creates a new DOM document.
Definition at line 47 of file xml_handling.c. |
|
||||||||||||
|
This function creates a new XML element.
Definition at line 63 of file xml_handling.c. |
|
||||||||||||||||
|
This function sets a XML attribute to the element
Definition at line 74 of file xml_handling.c. |
|
||||||||||||||||
|
This function sets a value to a GdomeElement.
Definition at line 91 of file xml_handling.c. |
1.3.5