2004-02-13 19:09:12 +03:00
|
|
|
/*
|
|
|
|
* This file is part of NetSurf, http://netsurf.sourceforge.net/
|
|
|
|
* Licensed under the GNU General Public License,
|
|
|
|
* http://www.opensource.org/licenses/gpl-license
|
|
|
|
* Copyright 2003 Phil Mellor <monkeyson@users.sourceforge.net>
|
|
|
|
* Copyright 2003 John M Bell <jmb202@ecs.soton.ac.uk>
|
|
|
|
* Copyright 2004 James Bursa <bursa@users.sourceforge.net>
|
2005-12-01 05:59:55 +03:00
|
|
|
* Copyright 2005 Richard Wilson <info@tinct.net>
|
2004-02-13 19:09:12 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* Option reading and saving (implementation).
|
|
|
|
*
|
|
|
|
* Options are stored in the format key:value, one per line. For bool options,
|
|
|
|
* value is "0" or "1".
|
|
|
|
*/
|
|
|
|
|
2004-12-09 13:30:44 +03:00
|
|
|
#include <assert.h>
|
2004-02-13 19:09:12 +03:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2004-12-09 13:30:44 +03:00
|
|
|
#include "libxml/HTMLparser.h"
|
|
|
|
#include "libxml/HTMLtree.h"
|
2006-01-03 02:31:29 +03:00
|
|
|
#include "netsurf/css/css.h"
|
2004-02-13 19:09:12 +03:00
|
|
|
#include "netsurf/desktop/options.h"
|
2004-12-09 13:30:44 +03:00
|
|
|
#include "netsurf/desktop/tree.h"
|
2004-02-13 19:09:12 +03:00
|
|
|
#include "netsurf/utils/log.h"
|
2004-12-09 13:30:44 +03:00
|
|
|
#include "netsurf/utils/messages.h"
|
2004-02-13 19:09:12 +03:00
|
|
|
#include "netsurf/utils/utils.h"
|
|
|
|
|
|
|
|
#ifdef riscos
|
|
|
|
#include "netsurf/riscos/options.h"
|
|
|
|
#else
|
|
|
|
#define EXTRA_OPTION_DEFINE
|
|
|
|
#define EXTRA_OPTION_TABLE
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
/** An HTTP proxy should be used. */
|
|
|
|
bool option_http_proxy = false;
|
|
|
|
/** Hostname of proxy. */
|
|
|
|
char *option_http_proxy_host = 0;
|
|
|
|
/** Proxy port. */
|
|
|
|
int option_http_proxy_port = 8080;
|
2004-07-27 19:49:28 +04:00
|
|
|
/** Proxy authentication method. */
|
|
|
|
int option_http_proxy_auth = OPTION_HTTP_PROXY_AUTH_NONE;
|
|
|
|
/** Proxy authentication user name */
|
|
|
|
char *option_http_proxy_auth_user = 0;
|
|
|
|
/** Proxy authentication password */
|
|
|
|
char *option_http_proxy_auth_pass = 0;
|
2004-02-14 02:07:42 +03:00
|
|
|
/** Default font size / 0.1pt. */
|
|
|
|
int option_font_size = 100;
|
|
|
|
/** Minimum font size. */
|
|
|
|
int option_font_min_size = 70;
|
2006-03-31 14:41:21 +04:00
|
|
|
/** Default sans serif font */
|
|
|
|
char *option_font_sans;
|
|
|
|
/** Default serif font */
|
|
|
|
char *option_font_serif;
|
|
|
|
/** Default monospace font */
|
|
|
|
char *option_font_mono;
|
|
|
|
/** Default cursive font */
|
|
|
|
char *option_font_cursive;
|
|
|
|
/** Default fantasy font */
|
|
|
|
char *option_font_fantasy;
|
2004-03-08 03:03:58 +03:00
|
|
|
/** Accept-Language header. */
|
|
|
|
char *option_accept_language = 0;
|
2004-06-21 19:09:59 +04:00
|
|
|
/** Preferred maximum size of memory cache / bytes. */
|
|
|
|
int option_memory_cache_size = 2 * 1024 * 1024;
|
2006-01-07 03:39:14 +03:00
|
|
|
/** Preferred expiry age of disc cache / days. */
|
|
|
|
int option_disc_cache_age = 28;
|
2004-07-31 03:40:01 +04:00
|
|
|
/** Whether to block advertisements */
|
|
|
|
bool option_block_ads = false;
|
2004-10-05 03:54:42 +04:00
|
|
|
/** Minimum GIF animation delay */
|
|
|
|
int option_minimum_gif_delay = 10;
|
2004-10-02 01:31:55 +04:00
|
|
|
/** Whether to send the referer HTTP header */
|
|
|
|
bool option_send_referer = true;
|
2004-12-09 13:30:44 +03:00
|
|
|
/** Whether to animate images */
|
|
|
|
bool option_animate_images = true;
|
2005-12-30 02:18:17 +03:00
|
|
|
/** How many days to retain URL data for */
|
|
|
|
int option_expire_url = 28;
|
2006-01-03 02:31:29 +03:00
|
|
|
/** Default font family */
|
|
|
|
int option_font_default = CSS_FONT_FAMILY_SANS_SERIF;
|
2006-01-08 04:51:33 +03:00
|
|
|
/** ca-bundle location */
|
|
|
|
char *option_ca_bundle = 0;
|
|
|
|
/** Cookie file location */
|
|
|
|
char *option_cookie_file = 0;
|
|
|
|
/** Cookie jar loaction */
|
|
|
|
char *option_cookie_jar = 0;
|
2006-03-29 19:26:54 +04:00
|
|
|
/** Home page location */
|
|
|
|
char *option_homepage_url = 0;
|
2006-03-14 17:21:01 +03:00
|
|
|
/* Fetcher configuration */
|
|
|
|
/** Maximum simultaneous active fetchers */
|
|
|
|
int option_max_fetchers = 24;
|
|
|
|
/** Maximum simultaneous active fetchers per host.
|
|
|
|
* (<=option_max_fetchers else it makes no sense
|
|
|
|
*/
|
|
|
|
int option_max_fetchers_per_host = 5;
|
|
|
|
/** Maximum number of inactive fetchers cached.
|
|
|
|
* The total number of handles netsurf will therefore have open
|
|
|
|
* is this plus option_max_fetchers.
|
|
|
|
*/
|
|
|
|
int option_max_cached_fetch_handles = 6;
|
|
|
|
|
2004-02-13 19:09:12 +03:00
|
|
|
EXTRA_OPTION_DEFINE
|
|
|
|
|
|
|
|
|
|
|
|
struct {
|
|
|
|
const char *key;
|
|
|
|
enum { OPTION_BOOL, OPTION_INTEGER, OPTION_STRING } type;
|
|
|
|
void *p;
|
|
|
|
} option_table[] = {
|
|
|
|
{ "http_proxy", OPTION_BOOL, &option_http_proxy },
|
|
|
|
{ "http_proxy_host", OPTION_STRING, &option_http_proxy_host },
|
|
|
|
{ "http_proxy_port", OPTION_INTEGER, &option_http_proxy_port },
|
2004-07-27 19:49:28 +04:00
|
|
|
{ "http_proxy_auth", OPTION_BOOL, &option_http_proxy_auth },
|
|
|
|
{ "http_proxy_auth_user", OPTION_STRING, &option_http_proxy_auth_user },
|
|
|
|
{ "http_proxy_auth_pass", OPTION_STRING, &option_http_proxy_auth_pass },
|
2004-02-14 02:07:42 +03:00
|
|
|
{ "font_size", OPTION_INTEGER, &option_font_size },
|
|
|
|
{ "font_min_size", OPTION_INTEGER, &option_font_min_size },
|
2006-03-31 14:41:21 +04:00
|
|
|
{ "font_sans", OPTION_STRING, &option_font_sans },
|
|
|
|
{ "font_serif", OPTION_STRING, &option_font_serif },
|
|
|
|
{ "font_mono", OPTION_STRING, &option_font_mono },
|
|
|
|
{ "font_cursive", OPTION_STRING, &option_font_cursive },
|
|
|
|
{ "font_fantasy", OPTION_STRING, &option_font_fantasy },
|
2004-03-08 03:03:58 +03:00
|
|
|
{ "accept_language", OPTION_STRING, &option_accept_language },
|
2004-06-21 19:22:05 +04:00
|
|
|
{ "memory_cache_size", OPTION_INTEGER, &option_memory_cache_size },
|
2006-01-07 03:39:14 +03:00
|
|
|
{ "disc_cache_age", OPTION_INTEGER, &option_disc_cache_age },
|
2004-07-31 03:40:01 +04:00
|
|
|
{ "block_advertisements", OPTION_BOOL, &option_block_ads },
|
2004-10-05 03:54:42 +04:00
|
|
|
{ "minimum_gif_delay", OPTION_INTEGER, &option_minimum_gif_delay },
|
2004-10-02 01:31:55 +04:00
|
|
|
{ "send_referer", OPTION_BOOL, &option_send_referer },
|
2005-12-30 02:18:17 +03:00
|
|
|
{ "animate_images", OPTION_BOOL, &option_animate_images },
|
2006-01-08 04:51:33 +03:00
|
|
|
{ "expire_url", OPTION_INTEGER, &option_expire_url },
|
|
|
|
{ "font_default", OPTION_INTEGER, &option_font_default },
|
|
|
|
{ "ca_bundle", OPTION_STRING, &option_ca_bundle },
|
|
|
|
{ "cookie_file", OPTION_STRING, &option_cookie_file },
|
|
|
|
{ "cookie_jar", OPTION_STRING, &option_cookie_jar },
|
2006-03-29 19:26:54 +04:00
|
|
|
{ "homepage_url", OPTION_STRING, &option_homepage_url },
|
2006-03-14 17:21:01 +03:00
|
|
|
/* Fetcher options */
|
|
|
|
{ "max_fetchers", OPTION_INTEGER, &option_max_fetchers },
|
|
|
|
{ "max_fetchers_per_host",
|
|
|
|
OPTION_INTEGER, &option_max_fetchers_per_host },
|
|
|
|
{ "max_cached_fetch_handles",
|
|
|
|
OPTION_INTEGER, &option_max_cached_fetch_handles },
|
2004-02-13 19:09:12 +03:00
|
|
|
EXTRA_OPTION_TABLE
|
|
|
|
};
|
|
|
|
|
|
|
|
#define option_table_entries (sizeof option_table / sizeof option_table[0])
|
|
|
|
|
|
|
|
|
2005-02-07 17:28:43 +03:00
|
|
|
static void options_load_tree_directory(xmlNode *ul, struct node *directory);
|
|
|
|
static void options_load_tree_entry(xmlNode *li, struct node *directory);
|
|
|
|
xmlNode *options_find_tree_element(xmlNode *node, const char *name);
|
|
|
|
bool options_save_tree_directory(struct node *directory, xmlNode *node);
|
|
|
|
bool options_save_tree_entry(struct node *entry, xmlNode *node);
|
2004-12-09 13:30:44 +03:00
|
|
|
|
|
|
|
|
2004-02-13 19:09:12 +03:00
|
|
|
/**
|
|
|
|
* Read options from a file.
|
|
|
|
*
|
|
|
|
* \param path name of file to read options from
|
|
|
|
*
|
|
|
|
* Option variables corresponding to lines in the file are updated. Missing
|
|
|
|
* options are unchanged. If the file fails to open, options are unchanged.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void options_read(const char *path)
|
|
|
|
{
|
|
|
|
char s[100];
|
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
fp = fopen(path, "r");
|
|
|
|
if (!fp) {
|
|
|
|
LOG(("failed to open file '%s'", path));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (fgets(s, 100, fp)) {
|
|
|
|
char *colon, *value;
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
if (s[0] == 0 || s[0] == '#')
|
|
|
|
continue;
|
|
|
|
colon = strchr(s, ':');
|
|
|
|
if (colon == 0)
|
|
|
|
continue;
|
|
|
|
s[strlen(s) - 1] = 0; /* remove \n at end */
|
|
|
|
*colon = 0; /* terminate key */
|
|
|
|
value = colon + 1;
|
|
|
|
|
|
|
|
for (i = 0; i != option_table_entries; i++) {
|
|
|
|
if (strcasecmp(s, option_table[i].key) != 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
switch (option_table[i].type) {
|
|
|
|
case OPTION_BOOL:
|
|
|
|
*((bool *) option_table[i].p) =
|
|
|
|
value[0] == '1';
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPTION_INTEGER:
|
|
|
|
*((int *) option_table[i].p) =
|
|
|
|
atoi(value);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPTION_STRING:
|
|
|
|
free(*((char **) option_table[i].p));
|
|
|
|
*((char **) option_table[i].p) =
|
|
|
|
strdup(value);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
2004-02-14 02:07:42 +03:00
|
|
|
|
|
|
|
if (option_font_size < 50)
|
|
|
|
option_font_size = 50;
|
|
|
|
if (1000 < option_font_size)
|
|
|
|
option_font_size = 1000;
|
|
|
|
if (option_font_min_size < 10)
|
|
|
|
option_font_min_size = 10;
|
|
|
|
if (500 < option_font_min_size)
|
|
|
|
option_font_min_size = 500;
|
2004-06-21 19:09:59 +04:00
|
|
|
|
|
|
|
if (option_memory_cache_size < 0)
|
|
|
|
option_memory_cache_size = 0;
|
2004-02-13 19:09:12 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save options to a file.
|
|
|
|
*
|
|
|
|
* \param path name of file to write options to
|
|
|
|
*
|
|
|
|
* Errors are ignored.
|
|
|
|
*/
|
|
|
|
|
|
|
|
void options_write(const char *path)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
fp = fopen(path, "w");
|
|
|
|
if (!fp) {
|
|
|
|
LOG(("failed to open file '%s' for writing", path));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i != option_table_entries; i++) {
|
|
|
|
fprintf(fp, "%s:", option_table[i].key);
|
|
|
|
switch (option_table[i].type) {
|
|
|
|
case OPTION_BOOL:
|
|
|
|
fprintf(fp, "%c", *((bool *) option_table[i].p) ?
|
|
|
|
'1' : '0');
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPTION_INTEGER:
|
|
|
|
fprintf(fp, "%i", *((int *) option_table[i].p));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPTION_STRING:
|
|
|
|
if (*((char **) option_table[i].p))
|
|
|
|
fprintf(fp, "%s", *((char **) option_table[i].p));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
fprintf(fp, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose(fp);
|
|
|
|
}
|
2004-12-09 13:30:44 +03:00
|
|
|
|
2006-01-01 21:52:30 +03:00
|
|
|
/**
|
|
|
|
* Dump user options to stderr
|
|
|
|
*/
|
|
|
|
void options_dump(void)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
for (i = 0; i != option_table_entries; i++) {
|
|
|
|
fprintf(stderr, "%s:", option_table[i].key);
|
|
|
|
switch (option_table[i].type) {
|
|
|
|
case OPTION_BOOL:
|
|
|
|
fprintf(stderr, "%c",
|
|
|
|
*((bool *) option_table[i].p) ?
|
|
|
|
'1' : '0');
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPTION_INTEGER:
|
|
|
|
fprintf(stderr, "%i",
|
|
|
|
*((int *) option_table[i].p));
|
|
|
|
break;
|
|
|
|
|
|
|
|
case OPTION_STRING:
|
|
|
|
if (*((char **) option_table[i].p))
|
|
|
|
fprintf(stderr, "%s",
|
|
|
|
*((char **) option_table[i].p));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
}
|
2004-12-09 13:30:44 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads a hotlist as a tree from a specified file.
|
|
|
|
*
|
|
|
|
* \param filename name of file to read
|
|
|
|
* \return the hotlist file represented as a tree, or NULL on failure
|
|
|
|
*/
|
2005-02-07 17:28:43 +03:00
|
|
|
struct tree *options_load_tree(const char *filename) {
|
2004-12-09 13:30:44 +03:00
|
|
|
xmlDoc *doc;
|
|
|
|
xmlNode *html, *body, *ul;
|
|
|
|
struct tree *tree;
|
|
|
|
|
|
|
|
doc = htmlParseFile(filename, "iso-8859-1");
|
|
|
|
if (!doc) {
|
|
|
|
warn_user("HotlistLoadError", messages_get("ParsingFail"));
|
|
|
|
return NULL;
|
|
|
|
}
|
2006-01-01 21:52:30 +03:00
|
|
|
|
2005-02-07 17:28:43 +03:00
|
|
|
html = options_find_tree_element((xmlNode *) doc, "html");
|
|
|
|
body = options_find_tree_element(html, "body");
|
|
|
|
ul = options_find_tree_element(body, "ul");
|
2004-12-09 13:30:44 +03:00
|
|
|
if (!ul) {
|
|
|
|
xmlFreeDoc(doc);
|
|
|
|
warn_user("HotlistLoadError",
|
|
|
|
"(<html>...<body>...<ul> not found.)");
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
tree = calloc(sizeof(struct tree), 1);
|
|
|
|
if (!tree) {
|
|
|
|
xmlFreeDoc(doc);
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
tree->root = tree_create_folder_node(NULL, "Root");
|
|
|
|
if (!tree->root) return NULL;
|
|
|
|
|
2005-02-07 17:28:43 +03:00
|
|
|
options_load_tree_directory(ul, tree->root);
|
2004-12-09 13:30:44 +03:00
|
|
|
tree->root->expanded = true;
|
|
|
|
tree_initialise(tree);
|
|
|
|
|
|
|
|
xmlFreeDoc(doc);
|
|
|
|
return tree;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse a directory represented as a ul.
|
|
|
|
*
|
|
|
|
* \param ul xmlNode for parsed ul
|
|
|
|
* \param directory directory to add this directory to
|
|
|
|
*/
|
2005-02-07 17:28:43 +03:00
|
|
|
void options_load_tree_directory(xmlNode *ul, struct node *directory) {
|
2004-12-09 13:30:44 +03:00
|
|
|
char *title;
|
|
|
|
struct node *dir;
|
|
|
|
xmlNode *n;
|
2006-01-01 21:52:30 +03:00
|
|
|
|
2004-12-09 13:30:44 +03:00
|
|
|
assert(ul);
|
|
|
|
assert(directory);
|
|
|
|
|
|
|
|
for (n = ul->children; n; n = n->next) {
|
|
|
|
/* The ul may contain entries as a li, or directories as
|
|
|
|
* an h4 followed by a ul. Non-element nodes may be present
|
|
|
|
* (eg. text, comments), and are ignored. */
|
|
|
|
|
|
|
|
if (n->type != XML_ELEMENT_NODE)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (strcmp(n->name, "li") == 0) {
|
|
|
|
/* entry */
|
2005-02-07 17:28:43 +03:00
|
|
|
options_load_tree_entry(n, directory);
|
2004-12-09 13:30:44 +03:00
|
|
|
|
|
|
|
} else if (strcmp(n->name, "h4") == 0) {
|
|
|
|
/* directory */
|
|
|
|
title = (char *) xmlNodeGetContent(n);
|
|
|
|
if (!title) {
|
|
|
|
warn_user("HotlistLoadError", "(Empty <h4> "
|
|
|
|
"or memory exhausted.)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (n = n->next;
|
|
|
|
n && n->type != XML_ELEMENT_NODE;
|
|
|
|
n = n->next)
|
|
|
|
;
|
|
|
|
if (!n || strcmp(n->name, "ul") != 0) {
|
|
|
|
/* next element isn't expected ul */
|
|
|
|
free(title);
|
|
|
|
warn_user("HotlistLoadError", "(Expected "
|
|
|
|
"<ul> not present.)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dir = tree_create_folder_node(directory, title);
|
|
|
|
if (!dir)
|
|
|
|
return;
|
2005-02-07 17:28:43 +03:00
|
|
|
options_load_tree_directory(n, dir);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse an entry represented as a li.
|
|
|
|
*
|
|
|
|
* \param li xmlNode for parsed li
|
|
|
|
* \param directory directory to add this entry to
|
|
|
|
*/
|
2005-02-07 17:28:43 +03:00
|
|
|
void options_load_tree_entry(xmlNode *li, struct node *directory) {
|
2004-12-09 13:30:44 +03:00
|
|
|
char *url = 0;
|
|
|
|
char *title = 0;
|
|
|
|
struct node *entry;
|
|
|
|
xmlNode *n;
|
2005-12-31 07:31:37 +03:00
|
|
|
struct url_content *data;
|
2004-12-09 13:30:44 +03:00
|
|
|
|
|
|
|
for (n = li->children; n; n = n->next) {
|
2005-12-31 07:31:37 +03:00
|
|
|
/* The li must contain an "a" element */
|
2004-12-09 13:30:44 +03:00
|
|
|
if (n->type == XML_ELEMENT_NODE &&
|
|
|
|
strcmp(n->name, "a") == 0) {
|
|
|
|
url = (char *) xmlGetProp(n, (const xmlChar *) "href");
|
|
|
|
title = (char *) xmlNodeGetContent(n);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!url || !title) {
|
|
|
|
warn_user("HotlistLoadError", "(Missing <a> in <li> or "
|
|
|
|
"memory exhausted.)");
|
|
|
|
return;
|
|
|
|
}
|
2006-01-01 21:52:30 +03:00
|
|
|
|
2005-12-31 07:31:37 +03:00
|
|
|
data = url_store_find(url);
|
|
|
|
if (!data)
|
|
|
|
return;
|
|
|
|
if (!data->title)
|
|
|
|
data->title = strdup(title);
|
|
|
|
entry = tree_create_URL_node(directory, data, title);
|
2005-12-01 05:59:55 +03:00
|
|
|
xmlFree(url);
|
|
|
|
xmlFree(title);
|
2004-12-09 13:30:44 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Search the children of an xmlNode for an element.
|
|
|
|
*
|
|
|
|
* \param node xmlNode to search children of, or 0
|
|
|
|
* \param name name of element to find
|
|
|
|
* \return first child of node which is an element and matches name, or
|
|
|
|
* 0 if not found or parameter node is 0
|
|
|
|
*/
|
2005-02-07 17:28:43 +03:00
|
|
|
xmlNode *options_find_tree_element(xmlNode *node, const char *name) {
|
2004-12-09 13:30:44 +03:00
|
|
|
xmlNode *n;
|
|
|
|
if (!node)
|
|
|
|
return 0;
|
|
|
|
for (n = node->children;
|
|
|
|
n && !(n->type == XML_ELEMENT_NODE &&
|
|
|
|
strcmp(n->name, name) == 0);
|
|
|
|
n = n->next)
|
|
|
|
;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform a save to a specified file
|
|
|
|
*
|
|
|
|
* /param filename the file to save to
|
|
|
|
*/
|
2005-02-07 17:28:43 +03:00
|
|
|
bool options_save_tree(struct tree *tree, const char *filename, const char *page_title) {
|
2004-12-09 13:30:44 +03:00
|
|
|
int res;
|
|
|
|
xmlDoc *doc;
|
|
|
|
xmlNode *html, *head, *title, *body;
|
|
|
|
|
|
|
|
/* Unfortunately the Browse Hotlist format is invalid HTML,
|
|
|
|
* so this is a lie. */
|
|
|
|
doc = htmlNewDoc("http://www.w3.org/TR/html4/strict.dtd",
|
|
|
|
"-//W3C//DTD HTML 4.01//EN");
|
|
|
|
if (!doc) {
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
html = xmlNewNode(NULL, "html");
|
|
|
|
if (!html) {
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
xmlFreeDoc(doc);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
xmlDocSetRootElement(doc, html);
|
|
|
|
|
|
|
|
head = xmlNewChild(html, NULL, "head", NULL);
|
|
|
|
if (!head) {
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
xmlFreeDoc(doc);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-02-07 17:28:43 +03:00
|
|
|
title = xmlNewTextChild(head, NULL, "title", page_title);
|
2004-12-09 13:30:44 +03:00
|
|
|
if (!title) {
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
xmlFreeDoc(doc);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
body = xmlNewChild(html, NULL, "body", NULL);
|
|
|
|
if (!body) {
|
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
xmlFreeDoc(doc);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-02-07 17:28:43 +03:00
|
|
|
if (!options_save_tree_directory(tree->root, body)) {
|
2004-12-09 13:30:44 +03:00
|
|
|
warn_user("NoMemory", 0);
|
|
|
|
xmlFreeDoc(doc);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
doc->charset = XML_CHAR_ENCODING_UTF8;
|
|
|
|
res = htmlSaveFileEnc(filename, doc, "iso-8859-1");
|
|
|
|
if (res == -1) {
|
|
|
|
warn_user("HotlistSaveError", 0);
|
|
|
|
xmlFreeDoc(doc);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
xmlFreeDoc(doc);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a directory to the HTML tree for saving.
|
|
|
|
*
|
|
|
|
* \param directory hotlist directory to add
|
|
|
|
* \param node node to add ul to
|
|
|
|
* \return true on success, false on memory exhaustion
|
|
|
|
*/
|
2005-02-07 17:28:43 +03:00
|
|
|
bool options_save_tree_directory(struct node *directory, xmlNode *node) {
|
2004-12-09 13:30:44 +03:00
|
|
|
struct node *child;
|
|
|
|
xmlNode *ul, *h4;
|
|
|
|
|
|
|
|
ul = xmlNewChild(node, NULL, "ul", NULL);
|
|
|
|
if (!ul)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
for (child = directory->child; child; child = child->next) {
|
|
|
|
if (!child->folder) {
|
|
|
|
/* entry */
|
2005-02-07 17:28:43 +03:00
|
|
|
if (!options_save_tree_entry(child, ul))
|
2004-12-09 13:30:44 +03:00
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
/* directory */
|
|
|
|
/* invalid HTML */
|
|
|
|
h4 = xmlNewTextChild(ul, NULL, "h4", child->data.text);
|
|
|
|
if (!h4)
|
|
|
|
return false;
|
|
|
|
|
2005-02-07 17:28:43 +03:00
|
|
|
if (!options_save_tree_directory(child, ul))
|
2004-12-09 13:30:44 +03:00
|
|
|
return false;
|
|
|
|
} }
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add an entry to the HTML tree for saving.
|
|
|
|
*
|
|
|
|
* The node must contain a sequence of node_elements in the following order:
|
|
|
|
*
|
|
|
|
* \param entry hotlist entry to add
|
|
|
|
* \param node node to add li to
|
|
|
|
* \return true on success, false on memory exhaustion
|
|
|
|
*/
|
2005-02-07 17:28:43 +03:00
|
|
|
bool options_save_tree_entry(struct node *entry, xmlNode *node) {
|
2004-12-09 13:30:44 +03:00
|
|
|
xmlNode *li, *a;
|
|
|
|
xmlAttr *href;
|
|
|
|
struct node_element *element;
|
|
|
|
|
|
|
|
li = xmlNewChild(node, NULL, "li", NULL);
|
|
|
|
if (!li)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
a = xmlNewTextChild(li, NULL, "a", entry->data.text);
|
|
|
|
if (!a)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
element = tree_find_element(entry, TREE_ELEMENT_URL);
|
|
|
|
if (!element)
|
|
|
|
return false;
|
|
|
|
href = xmlNewProp(a, "href", element->text);
|
|
|
|
if (!href)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|