~ubuntu-branches/ubuntu/maverick/conglomerate/maverick

« back to all changes in this revision

Viewing changes to src/cong-util.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel T Chen
  • Date: 2005-11-08 05:07:06 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051108050706-bcg60nwqf1z3w0d6
Tags: 0.9.1-1ubuntu1
* Resynchronise with Debian (Closes: #4397).
  - Thanks, Jordan Mantha.

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
cong_util_is_pure_whitespace (const gchar *utf8_text);
37
37
 
38
38
gchar* 
39
 
cong_util_cleanup_text (const xmlChar *text);
 
39
cong_util_cleanup_text (const gchar *text);
40
40
 
41
41
gchar* 
42
 
cong_util_text_header (const xmlChar *text,
 
42
cong_util_text_header (const gchar *text,
43
43
                       guint truncation_length);
44
44
 
45
45
gchar*
101
101
 
102
102
xmlDtdPtr
103
103
cong_util_make_dtd (xmlDocPtr xml_doc,
104
 
                    const xmlChar *root_element,
105
 
                    const xmlChar *ExternalID, 
106
 
                    const xmlChar *SystemID);
 
104
                    const gchar *root_element,
 
105
                    const gchar *ExternalID, 
 
106
                    const gchar *SystemID);
107
107
 
108
108
xmlDtdPtr 
109
109
cong_util_add_external_dtd (xmlDocPtr xml_doc, 
110
 
                            const xmlChar *root_element,
111
 
                            const xmlChar *ExternalID, 
112
 
                            const xmlChar *SystemID);
 
110
                            const gchar *root_element,
 
111
                            const gchar *ExternalID, 
 
112
                            const gchar *SystemID);
113
113
 
114
114
void
115
115
cong_util_run_add_dtd_dialog (CongDocument *doc,
238
238
 
239
239
char *
240
240
cong_util_get_qualified_attribute_name(const xmlNs *namespace,
241
 
                                       const xmlChar *local_attribute_name);
 
241
                                       const gchar *local_attribute_name);
242
242
 
243
243
void
244
244
cong_util_show_in_window (GtkWidget *content,
291
291
cong_str_or_null_equal (gconstpointer a,
292
292
                        gconstpointer b);
293
293
 
 
294
gchar*
 
295
cong_util_dup_and_free_xml_string (xmlChar *xml_string);
 
296
 
 
297
xmlDocPtr
 
298
cong_util_new_xml_doc (void);
 
299
 
 
300
xmlNodePtr
 
301
cong_util_new_xml_element (xmlDocPtr xml_doc, const gchar* local_name);
 
302
 
 
303
void
 
304
cong_util_set_attribute_bool (xmlNodePtr xml_node, const gchar* name, gboolean value);
 
305
 
 
306
void
 
307
cong_util_set_attribute_int (xmlNodePtr xml_node, const gchar* name, int value);
 
308
 
294
309
G_END_DECLS
295
310
 
296
311
#endif