1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
|
/*
* Copyright (C) 2006 - 2011 Vivien Malerba <malerba@gnome-db.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <glib.h>
#include <libxml/tree.h>
#include <libgda/libgda.h>
typedef struct {
gchar *name;
xmlDocPtr doc;
xmlNodePtr body;
xmlNodePtr toc;
} HtmlFile;
typedef struct {
HtmlFile *index;
GHashTable *nodes; /* key=node name, value=xmlNodePtr */
gchar *dir;
GSList *all_files;
} HtmlConfig;
#define HTML_CONFIG(x) ((HtmlConfig*)(x))
/*
* HTML output files manipulation
* Files are built as XML files and then printed at the end
*/
void html_init_config (HtmlConfig *config);
HtmlFile *html_file_new (HtmlConfig *config,
const gchar *name, const gchar *title);
gboolean html_file_write (HtmlFile *file, HtmlConfig *config);
void html_file_free (HtmlFile *file);
void html_declare_node (HtmlConfig *config, const gchar *path, xmlNodePtr node);
void html_declare_node_own (HtmlConfig *config, gchar *path, xmlNodePtr node);
void html_add_link_to_node (HtmlConfig *config, const gchar *nodepath,
const gchar *text, const gchar *link_to);
void html_add_to_toc (HtmlConfig *config, HtmlFile *file, const gchar *text, const gchar *link_to);
xmlNodePtr html_add_header (HtmlConfig *config, HtmlFile *file, const gchar *text);
void html_mark_path_error (HtmlConfig *config, const gchar *nodepath);
void html_mark_node_error (HtmlConfig *config, xmlNodePtr node);
void html_mark_node_warning (HtmlConfig *config, xmlNodePtr node);
void html_mark_node_notice (HtmlConfig *config, xmlNodePtr node);
xmlNodePtr html_render_attribute_str (xmlNodePtr parent, const gchar *node_type,
const gchar *att_name, const gchar *att_val);
xmlNodePtr html_render_attribute_bool (xmlNodePtr parent, const gchar *node_type,
const gchar *att_name, gboolean att_val);
xmlNodePtr html_render_data_model (xmlNodePtr parent, GdaDataModel *model);
|