2003-06-30 16:44:03 +04:00
|
|
|
/*
|
2007-05-06 04:41:12 +04:00
|
|
|
* Copyright 2007 James Bursa <bursa@users.sourceforge.net>
|
2010-06-04 13:35:08 +04:00
|
|
|
* Copyright 2010 Michael Drake <tlsa@netsurf-browser.org>
|
2007-08-08 20:16:03 +04:00
|
|
|
*
|
|
|
|
* This file is part of NetSurf, http://www.netsurf-browser.org/
|
|
|
|
*
|
|
|
|
* NetSurf 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; version 2 of the License.
|
|
|
|
*
|
|
|
|
* NetSurf 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, see <http://www.gnu.org/licenses/>.
|
2004-02-20 03:43:17 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
* Content for text/html (implementation).
|
2003-02-09 15:58:15 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <assert.h>
|
2004-07-06 00:19:52 +04:00
|
|
|
#include <ctype.h>
|
2005-08-21 16:04:18 +04:00
|
|
|
#include <stdint.h>
|
2003-02-09 15:58:15 +03:00
|
|
|
#include <string.h>
|
2003-04-06 01:38:06 +04:00
|
|
|
#include <strings.h>
|
2003-02-09 15:58:15 +03:00
|
|
|
#include <stdlib.h>
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "utils/config.h"
|
2014-02-02 02:17:36 +04:00
|
|
|
#include "utils/corestrings.h"
|
|
|
|
#include "utils/http.h"
|
|
|
|
#include "utils/libdom.h"
|
|
|
|
#include "utils/log.h"
|
|
|
|
#include "utils/messages.h"
|
|
|
|
#include "utils/talloc.h"
|
|
|
|
#include "utils/utf8.h"
|
|
|
|
#include "utils/utils.h"
|
|
|
|
#include "utils/nsoption.h"
|
2010-03-28 16:56:39 +04:00
|
|
|
#include "content/content_protected.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "content/fetch.h"
|
2010-03-28 16:56:39 +04:00
|
|
|
#include "content/hlcache.h"
|
2011-07-01 15:16:43 +04:00
|
|
|
#include "desktop/selection.h"
|
2011-11-29 21:47:29 +04:00
|
|
|
#include "desktop/scrollbar.h"
|
2013-02-08 19:26:24 +04:00
|
|
|
#include "desktop/textarea.h"
|
2008-10-14 04:12:31 +04:00
|
|
|
#include "image/bitmap.h"
|
2014-02-02 02:17:36 +04:00
|
|
|
#include "javascript/js.h"
|
2014-10-17 15:21:06 +04:00
|
|
|
#include "desktop/browser.h"
|
2014-10-13 14:56:31 +04:00
|
|
|
#include "desktop/font.h"
|
2014-10-16 12:48:09 +04:00
|
|
|
#include "desktop/gui_utf8.h"
|
|
|
|
#include "desktop/gui_internal.h"
|
2014-02-02 02:17:36 +04:00
|
|
|
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "render/box.h"
|
2009-02-20 14:39:25 +03:00
|
|
|
#include "render/form.h"
|
2011-05-07 00:40:09 +04:00
|
|
|
#include "render/html_internal.h"
|
2007-05-31 02:39:54 +04:00
|
|
|
#include "render/imagemap.h"
|
|
|
|
#include "render/layout.h"
|
2011-08-24 16:29:30 +04:00
|
|
|
#include "render/search.h"
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2004-02-20 03:43:17 +03:00
|
|
|
#define CHUNK 4096
|
|
|
|
|
2008-10-10 14:56:34 +04:00
|
|
|
/* Change these to 1 to cause a dump to stderr of the frameset or box
|
|
|
|
* when the trees have been built.
|
|
|
|
*/
|
|
|
|
#define ALWAYS_DUMP_FRAMESET 0
|
|
|
|
#define ALWAYS_DUMP_BOX 0
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
static const char *html_types[] = {
|
|
|
|
"application/xhtml+xml",
|
|
|
|
"text/html"
|
|
|
|
};
|
|
|
|
|
2003-02-09 15:58:15 +03:00
|
|
|
|
2004-02-20 03:43:17 +03:00
|
|
|
/**
|
2012-07-06 23:00:32 +04:00
|
|
|
* Perform post-box-creation conversion of a document
|
|
|
|
*
|
|
|
|
* \param c HTML content to complete conversion of
|
|
|
|
* \param success Whether box tree construction was successful
|
2004-02-20 03:43:17 +03:00
|
|
|
*/
|
2012-07-06 23:00:32 +04:00
|
|
|
static void html_box_convert_done(html_content *c, bool success)
|
2003-02-09 15:58:15 +03:00
|
|
|
{
|
2012-11-26 21:23:03 +04:00
|
|
|
nserror err;
|
2012-07-06 23:00:32 +04:00
|
|
|
dom_exception exc; /* returned by libdom functions */
|
|
|
|
dom_node *html;
|
2009-04-15 15:28:07 +04:00
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
LOG(("Done XML to box (%p)", c));
|
2009-04-15 15:28:07 +04:00
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
/* Clean up and report error if unsuccessful or aborted */
|
2012-10-18 00:52:43 +04:00
|
|
|
if ((success == false) || (c->aborted)) {
|
2013-02-25 22:24:04 +04:00
|
|
|
html_object_free_objects(c);
|
2012-11-26 21:23:03 +04:00
|
|
|
|
2012-10-18 00:52:43 +04:00
|
|
|
if (success == false) {
|
2012-11-26 21:23:03 +04:00
|
|
|
content_broadcast_errorcode(&c->base, NSERROR_BOX_CONVERT);
|
2012-10-18 00:52:43 +04:00
|
|
|
} else {
|
2012-11-26 21:23:03 +04:00
|
|
|
content_broadcast_errorcode(&c->base, NSERROR_STOPPED);
|
2012-10-18 00:52:43 +04:00
|
|
|
}
|
2012-11-26 21:23:03 +04:00
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
content_set_error(&c->base);
|
|
|
|
return;
|
Merged revisions 4859-5013,5016-5018 via svnmerge from
svn://source.netsurf-browser.org/branches/takkaria/netsurf-hubbub
........
r4860 | takkaria | 2008-08-02 03:51:35 +0100 (Sat, 02 Aug 2008) | 2 lines
A really horribly rough first go at integrating hubbub with NetSurf. Segfaults, but I'm not sure what I've done wrong.
........
r4861 | jmb | 2008-08-02 05:01:19 +0100 (Sat, 02 Aug 2008) | 3 lines
Fix segfault caused by mismatched struct layout expectations.
Fix warnings, too.
........
r4862 | jmb | 2008-08-02 05:11:02 +0100 (Sat, 02 Aug 2008) | 2 lines
Destroy parser as soon as it's no longer needed, and flag this so that html_destroy doesn't cause things to trample all over the heap.
........
r4863 | takkaria | 2008-08-02 15:30:34 +0100 (Sat, 02 Aug 2008) | 2 lines
Remove deugging printf()s, add Aliases file, add script { display: none; } block.
........
r4868 | takkaria | 2008-08-02 22:14:55 +0100 (Sat, 02 Aug 2008) | 2 lines
Fix a segfault bug.
........
r4869 | takkaria | 2008-08-02 22:17:58 +0100 (Sat, 02 Aug 2008) | 2 lines
Add gtk/res/Aliases as a symlink to the one in !NS/Resources
........
r4870 | takkaria | 2008-08-02 22:26:31 +0100 (Sat, 02 Aug 2008) | 2 lines
Fix symlink.
........
r4885 | jmb | 2008-08-03 23:26:54 +0100 (Sun, 03 Aug 2008) | 2 lines
Make multiple parallel parser instances work correctly.
........
r4886 | tlsa | 2008-08-04 00:21:29 +0100 (Mon, 04 Aug 2008) | 1 line
Don't display contents of STYLE.
........
r4891 | jmb | 2008-08-04 01:18:07 +0100 (Mon, 04 Aug 2008) | 5 lines
Fix reparent_children to actually work
Make get_parent_node pay attention to the element_only flag
Fixup node referencing when appending a text child
Make clone_node clone attributes and namespace information in the non-deep case
........
r4918 | jmb | 2008-08-05 15:27:03 +0100 (Tue, 05 Aug 2008) | 2 lines
Fix debug target
........
r4944 | takkaria | 2008-08-07 12:56:50 +0100 (Thu, 07 Aug 2008) | 2 lines
Use talloc to allocate space for Hubbub.
........
r4993 | takkaria | 2008-08-10 17:49:47 +0100 (Sun, 10 Aug 2008) | 2 lines
Stub out the encoding change callback so NS-hubbub compiles again.
........
r4994 | takkaria | 2008-08-10 18:02:33 +0100 (Sun, 10 Aug 2008) | 2 lines
Tell Hubbub the encoding that HTTP gives us, if we have one.
........
r5001 | takkaria | 2008-08-11 02:53:24 +0100 (Mon, 11 Aug 2008) | 2 lines
First go at implementing proper <meta charset> support in NetSurf, amongst some refactoring. Probably works, but I have no pages around to test it on.
........
r5002 | takkaria | 2008-08-11 02:56:35 +0100 (Mon, 11 Aug 2008) | 2 lines
Fix (I hope) a 64-bit compiler warning.
........
r5012 | takkaria | 2008-08-11 08:40:28 +0100 (Mon, 11 Aug 2008) | 2 lines
Fix some nits from jmb. (Remove const from html->encoding, set encoding_source to something about right.)
........
r5013 | takkaria | 2008-08-11 08:48:50 +0100 (Mon, 11 Aug 2008) | 2 lines
Properly fix <meta charset> handling, by passing in the right thing as the context. No idea how this worked before. :) (credit: jmb)
........
r5017 | jmb | 2008-08-11 09:13:22 +0100 (Mon, 11 Aug 2008) | 7 lines
Pedantic typo fix.
Make Hubbub YES when building for RISC OS.
Make Hubbub AUTO when building for GTK
Ignore the presence of Hubbub on other platforms.
Remove the explicit libparserutils pkg-config stuff from the makefile (see r5016)
Add some logic that means Hubbub gets enabled correctly when building on RISC OS and when cross-compiling for it. (This is ugly and will go away when pkg-config is available on RO)
........
svn path=/trunk/netsurf/; revision=5019
2008-08-11 12:17:48 +04:00
|
|
|
}
|
2007-02-11 00:34:22 +03:00
|
|
|
|
2012-11-26 21:23:03 +04:00
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
#if ALWAYS_DUMP_BOX
|
2014-07-13 21:07:12 +04:00
|
|
|
box_dump(stderr, c->layout->children, 0, true);
|
2012-07-06 23:00:32 +04:00
|
|
|
#endif
|
|
|
|
#if ALWAYS_DUMP_FRAMESET
|
|
|
|
if (c->frameset)
|
|
|
|
html_dump_frameset(c->frameset, 0);
|
|
|
|
#endif
|
Merged revisions 4859-5013,5016-5018 via svnmerge from
svn://source.netsurf-browser.org/branches/takkaria/netsurf-hubbub
........
r4860 | takkaria | 2008-08-02 03:51:35 +0100 (Sat, 02 Aug 2008) | 2 lines
A really horribly rough first go at integrating hubbub with NetSurf. Segfaults, but I'm not sure what I've done wrong.
........
r4861 | jmb | 2008-08-02 05:01:19 +0100 (Sat, 02 Aug 2008) | 3 lines
Fix segfault caused by mismatched struct layout expectations.
Fix warnings, too.
........
r4862 | jmb | 2008-08-02 05:11:02 +0100 (Sat, 02 Aug 2008) | 2 lines
Destroy parser as soon as it's no longer needed, and flag this so that html_destroy doesn't cause things to trample all over the heap.
........
r4863 | takkaria | 2008-08-02 15:30:34 +0100 (Sat, 02 Aug 2008) | 2 lines
Remove deugging printf()s, add Aliases file, add script { display: none; } block.
........
r4868 | takkaria | 2008-08-02 22:14:55 +0100 (Sat, 02 Aug 2008) | 2 lines
Fix a segfault bug.
........
r4869 | takkaria | 2008-08-02 22:17:58 +0100 (Sat, 02 Aug 2008) | 2 lines
Add gtk/res/Aliases as a symlink to the one in !NS/Resources
........
r4870 | takkaria | 2008-08-02 22:26:31 +0100 (Sat, 02 Aug 2008) | 2 lines
Fix symlink.
........
r4885 | jmb | 2008-08-03 23:26:54 +0100 (Sun, 03 Aug 2008) | 2 lines
Make multiple parallel parser instances work correctly.
........
r4886 | tlsa | 2008-08-04 00:21:29 +0100 (Mon, 04 Aug 2008) | 1 line
Don't display contents of STYLE.
........
r4891 | jmb | 2008-08-04 01:18:07 +0100 (Mon, 04 Aug 2008) | 5 lines
Fix reparent_children to actually work
Make get_parent_node pay attention to the element_only flag
Fixup node referencing when appending a text child
Make clone_node clone attributes and namespace information in the non-deep case
........
r4918 | jmb | 2008-08-05 15:27:03 +0100 (Tue, 05 Aug 2008) | 2 lines
Fix debug target
........
r4944 | takkaria | 2008-08-07 12:56:50 +0100 (Thu, 07 Aug 2008) | 2 lines
Use talloc to allocate space for Hubbub.
........
r4993 | takkaria | 2008-08-10 17:49:47 +0100 (Sun, 10 Aug 2008) | 2 lines
Stub out the encoding change callback so NS-hubbub compiles again.
........
r4994 | takkaria | 2008-08-10 18:02:33 +0100 (Sun, 10 Aug 2008) | 2 lines
Tell Hubbub the encoding that HTTP gives us, if we have one.
........
r5001 | takkaria | 2008-08-11 02:53:24 +0100 (Mon, 11 Aug 2008) | 2 lines
First go at implementing proper <meta charset> support in NetSurf, amongst some refactoring. Probably works, but I have no pages around to test it on.
........
r5002 | takkaria | 2008-08-11 02:56:35 +0100 (Mon, 11 Aug 2008) | 2 lines
Fix (I hope) a 64-bit compiler warning.
........
r5012 | takkaria | 2008-08-11 08:40:28 +0100 (Mon, 11 Aug 2008) | 2 lines
Fix some nits from jmb. (Remove const from html->encoding, set encoding_source to something about right.)
........
r5013 | takkaria | 2008-08-11 08:48:50 +0100 (Mon, 11 Aug 2008) | 2 lines
Properly fix <meta charset> handling, by passing in the right thing as the context. No idea how this worked before. :) (credit: jmb)
........
r5017 | jmb | 2008-08-11 09:13:22 +0100 (Mon, 11 Aug 2008) | 7 lines
Pedantic typo fix.
Make Hubbub YES when building for RISC OS.
Make Hubbub AUTO when building for GTK
Ignore the presence of Hubbub on other platforms.
Remove the explicit libparserutils pkg-config stuff from the makefile (see r5016)
Add some logic that means Hubbub gets enabled correctly when building on RISC OS and when cross-compiling for it. (This is ugly and will go away when pkg-config is available on RO)
........
svn path=/trunk/netsurf/; revision=5019
2008-08-11 12:17:48 +04:00
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
exc = dom_document_get_document_element(c->document, (void *) &html);
|
|
|
|
if ((exc != DOM_NO_ERR) || (html == NULL)) {
|
2013-02-25 22:24:04 +04:00
|
|
|
/** @todo should this call html_object_free_objects(c);
|
2012-10-18 00:52:43 +04:00
|
|
|
* like the other error paths
|
|
|
|
*/
|
2012-07-06 23:00:32 +04:00
|
|
|
LOG(("error retrieving html element from dom"));
|
2012-11-26 21:23:03 +04:00
|
|
|
content_broadcast_errorcode(&c->base, NSERROR_DOM);
|
2012-07-06 23:00:32 +04:00
|
|
|
content_set_error(&c->base);
|
|
|
|
return;
|
|
|
|
}
|
Merged revisions 4859-5013,5016-5018 via svnmerge from
svn://source.netsurf-browser.org/branches/takkaria/netsurf-hubbub
........
r4860 | takkaria | 2008-08-02 03:51:35 +0100 (Sat, 02 Aug 2008) | 2 lines
A really horribly rough first go at integrating hubbub with NetSurf. Segfaults, but I'm not sure what I've done wrong.
........
r4861 | jmb | 2008-08-02 05:01:19 +0100 (Sat, 02 Aug 2008) | 3 lines
Fix segfault caused by mismatched struct layout expectations.
Fix warnings, too.
........
r4862 | jmb | 2008-08-02 05:11:02 +0100 (Sat, 02 Aug 2008) | 2 lines
Destroy parser as soon as it's no longer needed, and flag this so that html_destroy doesn't cause things to trample all over the heap.
........
r4863 | takkaria | 2008-08-02 15:30:34 +0100 (Sat, 02 Aug 2008) | 2 lines
Remove deugging printf()s, add Aliases file, add script { display: none; } block.
........
r4868 | takkaria | 2008-08-02 22:14:55 +0100 (Sat, 02 Aug 2008) | 2 lines
Fix a segfault bug.
........
r4869 | takkaria | 2008-08-02 22:17:58 +0100 (Sat, 02 Aug 2008) | 2 lines
Add gtk/res/Aliases as a symlink to the one in !NS/Resources
........
r4870 | takkaria | 2008-08-02 22:26:31 +0100 (Sat, 02 Aug 2008) | 2 lines
Fix symlink.
........
r4885 | jmb | 2008-08-03 23:26:54 +0100 (Sun, 03 Aug 2008) | 2 lines
Make multiple parallel parser instances work correctly.
........
r4886 | tlsa | 2008-08-04 00:21:29 +0100 (Mon, 04 Aug 2008) | 1 line
Don't display contents of STYLE.
........
r4891 | jmb | 2008-08-04 01:18:07 +0100 (Mon, 04 Aug 2008) | 5 lines
Fix reparent_children to actually work
Make get_parent_node pay attention to the element_only flag
Fixup node referencing when appending a text child
Make clone_node clone attributes and namespace information in the non-deep case
........
r4918 | jmb | 2008-08-05 15:27:03 +0100 (Tue, 05 Aug 2008) | 2 lines
Fix debug target
........
r4944 | takkaria | 2008-08-07 12:56:50 +0100 (Thu, 07 Aug 2008) | 2 lines
Use talloc to allocate space for Hubbub.
........
r4993 | takkaria | 2008-08-10 17:49:47 +0100 (Sun, 10 Aug 2008) | 2 lines
Stub out the encoding change callback so NS-hubbub compiles again.
........
r4994 | takkaria | 2008-08-10 18:02:33 +0100 (Sun, 10 Aug 2008) | 2 lines
Tell Hubbub the encoding that HTTP gives us, if we have one.
........
r5001 | takkaria | 2008-08-11 02:53:24 +0100 (Mon, 11 Aug 2008) | 2 lines
First go at implementing proper <meta charset> support in NetSurf, amongst some refactoring. Probably works, but I have no pages around to test it on.
........
r5002 | takkaria | 2008-08-11 02:56:35 +0100 (Mon, 11 Aug 2008) | 2 lines
Fix (I hope) a 64-bit compiler warning.
........
r5012 | takkaria | 2008-08-11 08:40:28 +0100 (Mon, 11 Aug 2008) | 2 lines
Fix some nits from jmb. (Remove const from html->encoding, set encoding_source to something about right.)
........
r5013 | takkaria | 2008-08-11 08:48:50 +0100 (Mon, 11 Aug 2008) | 2 lines
Properly fix <meta charset> handling, by passing in the right thing as the context. No idea how this worked before. :) (credit: jmb)
........
r5017 | jmb | 2008-08-11 09:13:22 +0100 (Mon, 11 Aug 2008) | 7 lines
Pedantic typo fix.
Make Hubbub YES when building for RISC OS.
Make Hubbub AUTO when building for GTK
Ignore the presence of Hubbub on other platforms.
Remove the explicit libparserutils pkg-config stuff from the makefile (see r5016)
Add some logic that means Hubbub gets enabled correctly when building on RISC OS and when cross-compiling for it. (This is ugly and will go away when pkg-config is available on RO)
........
svn path=/trunk/netsurf/; revision=5019
2008-08-11 12:17:48 +04:00
|
|
|
|
2012-11-26 21:23:03 +04:00
|
|
|
/* extract image maps - can't do this sensibly in dom_to_box */
|
|
|
|
err = imagemap_extract(c);
|
|
|
|
if (err != NSERROR_OK) {
|
2012-07-06 23:00:32 +04:00
|
|
|
LOG(("imagemap extraction failed"));
|
2013-02-25 22:24:04 +04:00
|
|
|
html_object_free_objects(c);
|
2012-11-26 21:23:03 +04:00
|
|
|
content_broadcast_errorcode(&c->base, err);
|
2012-07-06 23:00:32 +04:00
|
|
|
content_set_error(&c->base);
|
2012-07-21 23:10:44 +04:00
|
|
|
dom_node_unref(html);
|
2012-07-06 23:00:32 +04:00
|
|
|
return;
|
Merged revisions 4859-5013,5016-5018 via svnmerge from
svn://source.netsurf-browser.org/branches/takkaria/netsurf-hubbub
........
r4860 | takkaria | 2008-08-02 03:51:35 +0100 (Sat, 02 Aug 2008) | 2 lines
A really horribly rough first go at integrating hubbub with NetSurf. Segfaults, but I'm not sure what I've done wrong.
........
r4861 | jmb | 2008-08-02 05:01:19 +0100 (Sat, 02 Aug 2008) | 3 lines
Fix segfault caused by mismatched struct layout expectations.
Fix warnings, too.
........
r4862 | jmb | 2008-08-02 05:11:02 +0100 (Sat, 02 Aug 2008) | 2 lines
Destroy parser as soon as it's no longer needed, and flag this so that html_destroy doesn't cause things to trample all over the heap.
........
r4863 | takkaria | 2008-08-02 15:30:34 +0100 (Sat, 02 Aug 2008) | 2 lines
Remove deugging printf()s, add Aliases file, add script { display: none; } block.
........
r4868 | takkaria | 2008-08-02 22:14:55 +0100 (Sat, 02 Aug 2008) | 2 lines
Fix a segfault bug.
........
r4869 | takkaria | 2008-08-02 22:17:58 +0100 (Sat, 02 Aug 2008) | 2 lines
Add gtk/res/Aliases as a symlink to the one in !NS/Resources
........
r4870 | takkaria | 2008-08-02 22:26:31 +0100 (Sat, 02 Aug 2008) | 2 lines
Fix symlink.
........
r4885 | jmb | 2008-08-03 23:26:54 +0100 (Sun, 03 Aug 2008) | 2 lines
Make multiple parallel parser instances work correctly.
........
r4886 | tlsa | 2008-08-04 00:21:29 +0100 (Mon, 04 Aug 2008) | 1 line
Don't display contents of STYLE.
........
r4891 | jmb | 2008-08-04 01:18:07 +0100 (Mon, 04 Aug 2008) | 5 lines
Fix reparent_children to actually work
Make get_parent_node pay attention to the element_only flag
Fixup node referencing when appending a text child
Make clone_node clone attributes and namespace information in the non-deep case
........
r4918 | jmb | 2008-08-05 15:27:03 +0100 (Tue, 05 Aug 2008) | 2 lines
Fix debug target
........
r4944 | takkaria | 2008-08-07 12:56:50 +0100 (Thu, 07 Aug 2008) | 2 lines
Use talloc to allocate space for Hubbub.
........
r4993 | takkaria | 2008-08-10 17:49:47 +0100 (Sun, 10 Aug 2008) | 2 lines
Stub out the encoding change callback so NS-hubbub compiles again.
........
r4994 | takkaria | 2008-08-10 18:02:33 +0100 (Sun, 10 Aug 2008) | 2 lines
Tell Hubbub the encoding that HTTP gives us, if we have one.
........
r5001 | takkaria | 2008-08-11 02:53:24 +0100 (Mon, 11 Aug 2008) | 2 lines
First go at implementing proper <meta charset> support in NetSurf, amongst some refactoring. Probably works, but I have no pages around to test it on.
........
r5002 | takkaria | 2008-08-11 02:56:35 +0100 (Mon, 11 Aug 2008) | 2 lines
Fix (I hope) a 64-bit compiler warning.
........
r5012 | takkaria | 2008-08-11 08:40:28 +0100 (Mon, 11 Aug 2008) | 2 lines
Fix some nits from jmb. (Remove const from html->encoding, set encoding_source to something about right.)
........
r5013 | takkaria | 2008-08-11 08:48:50 +0100 (Mon, 11 Aug 2008) | 2 lines
Properly fix <meta charset> handling, by passing in the right thing as the context. No idea how this worked before. :) (credit: jmb)
........
r5017 | jmb | 2008-08-11 09:13:22 +0100 (Mon, 11 Aug 2008) | 7 lines
Pedantic typo fix.
Make Hubbub YES when building for RISC OS.
Make Hubbub AUTO when building for GTK
Ignore the presence of Hubbub on other platforms.
Remove the explicit libparserutils pkg-config stuff from the makefile (see r5016)
Add some logic that means Hubbub gets enabled correctly when building on RISC OS and when cross-compiling for it. (This is ugly and will go away when pkg-config is available on RO)
........
svn path=/trunk/netsurf/; revision=5019
2008-08-11 12:17:48 +04:00
|
|
|
}
|
2012-07-06 23:00:32 +04:00
|
|
|
/*imagemap_dump(c);*/
|
Merged revisions 4859-5013,5016-5018 via svnmerge from
svn://source.netsurf-browser.org/branches/takkaria/netsurf-hubbub
........
r4860 | takkaria | 2008-08-02 03:51:35 +0100 (Sat, 02 Aug 2008) | 2 lines
A really horribly rough first go at integrating hubbub with NetSurf. Segfaults, but I'm not sure what I've done wrong.
........
r4861 | jmb | 2008-08-02 05:01:19 +0100 (Sat, 02 Aug 2008) | 3 lines
Fix segfault caused by mismatched struct layout expectations.
Fix warnings, too.
........
r4862 | jmb | 2008-08-02 05:11:02 +0100 (Sat, 02 Aug 2008) | 2 lines
Destroy parser as soon as it's no longer needed, and flag this so that html_destroy doesn't cause things to trample all over the heap.
........
r4863 | takkaria | 2008-08-02 15:30:34 +0100 (Sat, 02 Aug 2008) | 2 lines
Remove deugging printf()s, add Aliases file, add script { display: none; } block.
........
r4868 | takkaria | 2008-08-02 22:14:55 +0100 (Sat, 02 Aug 2008) | 2 lines
Fix a segfault bug.
........
r4869 | takkaria | 2008-08-02 22:17:58 +0100 (Sat, 02 Aug 2008) | 2 lines
Add gtk/res/Aliases as a symlink to the one in !NS/Resources
........
r4870 | takkaria | 2008-08-02 22:26:31 +0100 (Sat, 02 Aug 2008) | 2 lines
Fix symlink.
........
r4885 | jmb | 2008-08-03 23:26:54 +0100 (Sun, 03 Aug 2008) | 2 lines
Make multiple parallel parser instances work correctly.
........
r4886 | tlsa | 2008-08-04 00:21:29 +0100 (Mon, 04 Aug 2008) | 1 line
Don't display contents of STYLE.
........
r4891 | jmb | 2008-08-04 01:18:07 +0100 (Mon, 04 Aug 2008) | 5 lines
Fix reparent_children to actually work
Make get_parent_node pay attention to the element_only flag
Fixup node referencing when appending a text child
Make clone_node clone attributes and namespace information in the non-deep case
........
r4918 | jmb | 2008-08-05 15:27:03 +0100 (Tue, 05 Aug 2008) | 2 lines
Fix debug target
........
r4944 | takkaria | 2008-08-07 12:56:50 +0100 (Thu, 07 Aug 2008) | 2 lines
Use talloc to allocate space for Hubbub.
........
r4993 | takkaria | 2008-08-10 17:49:47 +0100 (Sun, 10 Aug 2008) | 2 lines
Stub out the encoding change callback so NS-hubbub compiles again.
........
r4994 | takkaria | 2008-08-10 18:02:33 +0100 (Sun, 10 Aug 2008) | 2 lines
Tell Hubbub the encoding that HTTP gives us, if we have one.
........
r5001 | takkaria | 2008-08-11 02:53:24 +0100 (Mon, 11 Aug 2008) | 2 lines
First go at implementing proper <meta charset> support in NetSurf, amongst some refactoring. Probably works, but I have no pages around to test it on.
........
r5002 | takkaria | 2008-08-11 02:56:35 +0100 (Mon, 11 Aug 2008) | 2 lines
Fix (I hope) a 64-bit compiler warning.
........
r5012 | takkaria | 2008-08-11 08:40:28 +0100 (Mon, 11 Aug 2008) | 2 lines
Fix some nits from jmb. (Remove const from html->encoding, set encoding_source to something about right.)
........
r5013 | takkaria | 2008-08-11 08:48:50 +0100 (Mon, 11 Aug 2008) | 2 lines
Properly fix <meta charset> handling, by passing in the right thing as the context. No idea how this worked before. :) (credit: jmb)
........
r5017 | jmb | 2008-08-11 09:13:22 +0100 (Mon, 11 Aug 2008) | 7 lines
Pedantic typo fix.
Make Hubbub YES when building for RISC OS.
Make Hubbub AUTO when building for GTK
Ignore the presence of Hubbub on other platforms.
Remove the explicit libparserutils pkg-config stuff from the makefile (see r5016)
Add some logic that means Hubbub gets enabled correctly when building on RISC OS and when cross-compiling for it. (This is ugly and will go away when pkg-config is available on RO)
........
svn path=/trunk/netsurf/; revision=5019
2008-08-11 12:17:48 +04:00
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
/* Destroy the parser binding */
|
2012-07-14 03:33:15 +04:00
|
|
|
dom_hubbub_parser_destroy(c->parser);
|
|
|
|
c->parser = NULL;
|
2008-08-11 12:40:58 +04:00
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
content_set_ready(&c->base);
|
2009-01-07 01:06:14 +03:00
|
|
|
|
2012-10-18 00:52:43 +04:00
|
|
|
if (c->base.active == 0) {
|
2012-07-06 23:00:32 +04:00
|
|
|
content_set_done(&c->base);
|
2012-10-18 00:52:43 +04:00
|
|
|
}
|
2009-01-07 01:06:14 +03:00
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
html_set_status(c, "");
|
2012-07-21 23:10:44 +04:00
|
|
|
dom_node_unref(html);
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
2009-01-07 01:06:14 +03:00
|
|
|
|
2013-05-23 16:29:40 +04:00
|
|
|
|
|
|
|
/** process link node */
|
|
|
|
static bool html_process_link(html_content *c, dom_node *node)
|
|
|
|
{
|
|
|
|
struct content_rfc5988_link link; /* the link added to the content */
|
|
|
|
dom_exception exc; /* returned by libdom functions */
|
|
|
|
dom_string *atr_string;
|
|
|
|
nserror error;
|
|
|
|
|
|
|
|
memset(&link, 0, sizeof(struct content_rfc5988_link));
|
|
|
|
|
|
|
|
/* check that the relation exists - w3c spec says must be present */
|
|
|
|
exc = dom_element_get_attribute(node, corestring_dom_rel, &atr_string);
|
|
|
|
if ((exc != DOM_NO_ERR) || (atr_string == NULL)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
/* get a lwc string containing the link relation */
|
|
|
|
exc = dom_string_intern(atr_string, &link.rel);
|
|
|
|
dom_string_unref(atr_string);
|
|
|
|
if (exc != DOM_NO_ERR) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* check that the href exists - w3c spec says must be present */
|
|
|
|
exc = dom_element_get_attribute(node, corestring_dom_href, &atr_string);
|
|
|
|
if ((exc != DOM_NO_ERR) || (atr_string == NULL)) {
|
|
|
|
lwc_string_unref(link.rel);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get nsurl */
|
|
|
|
error = nsurl_join(c->base_url, dom_string_data(atr_string),
|
|
|
|
&link.href);
|
|
|
|
dom_string_unref(atr_string);
|
|
|
|
if (error != NSERROR_OK) {
|
|
|
|
lwc_string_unref(link.rel);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* look for optional properties -- we don't care if internment fails */
|
|
|
|
|
|
|
|
exc = dom_element_get_attribute(node,
|
|
|
|
corestring_dom_hreflang, &atr_string);
|
|
|
|
if ((exc == DOM_NO_ERR) && (atr_string != NULL)) {
|
|
|
|
/* get a lwc string containing the href lang */
|
|
|
|
exc = dom_string_intern(atr_string, &link.hreflang);
|
|
|
|
dom_string_unref(atr_string);
|
|
|
|
}
|
|
|
|
|
|
|
|
exc = dom_element_get_attribute(node,
|
|
|
|
corestring_dom_type, &atr_string);
|
|
|
|
if ((exc == DOM_NO_ERR) && (atr_string != NULL)) {
|
|
|
|
/* get a lwc string containing the type */
|
|
|
|
exc = dom_string_intern(atr_string, &link.type);
|
|
|
|
dom_string_unref(atr_string);
|
|
|
|
}
|
|
|
|
|
|
|
|
exc = dom_element_get_attribute(node,
|
|
|
|
corestring_dom_media, &atr_string);
|
|
|
|
if ((exc == DOM_NO_ERR) && (atr_string != NULL)) {
|
|
|
|
/* get a lwc string containing the media */
|
|
|
|
exc = dom_string_intern(atr_string, &link.media);
|
|
|
|
dom_string_unref(atr_string);
|
|
|
|
}
|
|
|
|
|
|
|
|
exc = dom_element_get_attribute(node,
|
|
|
|
corestring_dom_sizes, &atr_string);
|
|
|
|
if ((exc == DOM_NO_ERR) && (atr_string != NULL)) {
|
|
|
|
/* get a lwc string containing the sizes */
|
|
|
|
exc = dom_string_intern(atr_string, &link.sizes);
|
|
|
|
dom_string_unref(atr_string);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* add to content */
|
|
|
|
content__add_rfc5988_link(&c->base, &link);
|
|
|
|
|
|
|
|
if (link.sizes != NULL)
|
|
|
|
lwc_string_unref(link.sizes);
|
|
|
|
if (link.media != NULL)
|
|
|
|
lwc_string_unref(link.media);
|
|
|
|
if (link.type != NULL)
|
|
|
|
lwc_string_unref(link.type);
|
|
|
|
if (link.hreflang != NULL)
|
|
|
|
lwc_string_unref(link.hreflang);
|
|
|
|
|
|
|
|
nsurl_unref(link.href);
|
|
|
|
lwc_string_unref(link.rel);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** process title node */
|
|
|
|
static bool html_process_title(html_content *c, dom_node *node)
|
|
|
|
{
|
|
|
|
dom_exception exc; /* returned by libdom functions */
|
|
|
|
dom_string *title;
|
|
|
|
char *title_str;
|
|
|
|
bool success;
|
|
|
|
|
|
|
|
exc = dom_node_get_text_content(node, &title);
|
|
|
|
if ((exc != DOM_NO_ERR) || (title == NULL)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
title_str = squash_whitespace(dom_string_data(title));
|
|
|
|
dom_string_unref(title);
|
|
|
|
|
|
|
|
if (title_str == NULL) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
success = content__set_title(&c->base, title_str);
|
|
|
|
|
|
|
|
free(title_str);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool html_process_base(html_content *c, dom_node *node)
|
|
|
|
{
|
|
|
|
dom_exception exc; /* returned by libdom functions */
|
|
|
|
dom_string *atr_string;
|
|
|
|
|
|
|
|
/* get href attribute if present */
|
|
|
|
exc = dom_element_get_attribute(node,
|
|
|
|
corestring_dom_href, &atr_string);
|
|
|
|
if ((exc == DOM_NO_ERR) && (atr_string != NULL)) {
|
|
|
|
nsurl *url;
|
|
|
|
nserror error;
|
|
|
|
|
|
|
|
/* get url from string */
|
|
|
|
error = nsurl_create(dom_string_data(atr_string), &url);
|
|
|
|
dom_string_unref(atr_string);
|
|
|
|
if (error == NSERROR_OK) {
|
|
|
|
if (c->base_url != NULL)
|
|
|
|
nsurl_unref(c->base_url);
|
|
|
|
c->base_url = url;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* get target attribute if present and not already set */
|
|
|
|
if (c->base_target != NULL) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
exc = dom_element_get_attribute(node,
|
|
|
|
corestring_dom_target, &atr_string);
|
|
|
|
if ((exc == DOM_NO_ERR) && (atr_string != NULL)) {
|
|
|
|
/* Validation rules from the HTML5 spec for the base element:
|
|
|
|
* The target must be one of _blank, _self, _parent, or
|
|
|
|
* _top or any identifier which does not begin with an
|
|
|
|
* underscore
|
|
|
|
*/
|
|
|
|
if (*dom_string_data(atr_string) != '_' ||
|
|
|
|
dom_string_caseless_lwc_isequal(atr_string,
|
|
|
|
corestring_lwc__blank) ||
|
|
|
|
dom_string_caseless_lwc_isequal(atr_string,
|
|
|
|
corestring_lwc__self) ||
|
|
|
|
dom_string_caseless_lwc_isequal(atr_string,
|
|
|
|
corestring_lwc__parent) ||
|
|
|
|
dom_string_caseless_lwc_isequal(atr_string,
|
|
|
|
corestring_lwc__top)) {
|
|
|
|
c->base_target = strdup(dom_string_data(atr_string));
|
|
|
|
}
|
|
|
|
dom_string_unref(atr_string);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-05-23 02:57:59 +04:00
|
|
|
static nserror html_meta_refresh_process_element(html_content *c, dom_node *n)
|
|
|
|
{
|
|
|
|
union content_msg_data msg_data;
|
|
|
|
const char *url, *end, *refresh = NULL;
|
|
|
|
char *new_url;
|
|
|
|
char quote = '\0';
|
|
|
|
dom_string *equiv, *content;
|
|
|
|
dom_exception exc;
|
|
|
|
nsurl *nsurl;
|
|
|
|
nserror error = NSERROR_OK;
|
|
|
|
|
|
|
|
exc = dom_element_get_attribute(n, corestring_dom_http_equiv, &equiv);
|
|
|
|
if (exc != DOM_NO_ERR) {
|
|
|
|
return NSERROR_DOM;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (equiv == NULL) {
|
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dom_string_caseless_lwc_isequal(equiv, corestring_lwc_refresh)) {
|
|
|
|
dom_string_unref(equiv);
|
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
dom_string_unref(equiv);
|
|
|
|
|
|
|
|
exc = dom_element_get_attribute(n, corestring_dom_content, &content);
|
|
|
|
if (exc != DOM_NO_ERR) {
|
|
|
|
return NSERROR_DOM;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (content == NULL) {
|
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
end = dom_string_data(content) + dom_string_byte_length(content);
|
|
|
|
|
|
|
|
/* content := *LWS intpart fracpart? *LWS [';' *LWS *1url *LWS]
|
|
|
|
* intpart := 1*DIGIT
|
|
|
|
* fracpart := 1*('.' | DIGIT)
|
|
|
|
* url := "url" *LWS '=' *LWS (url-nq | url-sq | url-dq)
|
|
|
|
* url-nq := *urlchar
|
|
|
|
* url-sq := "'" *(urlchar | '"') "'"
|
|
|
|
* url-dq := '"' *(urlchar | "'") '"'
|
|
|
|
* urlchar := [#x9#x21#x23-#x26#x28-#x7E] | nonascii
|
|
|
|
* nonascii := [#x80-#xD7FF#xE000-#xFFFD#x10000-#x10FFFF]
|
|
|
|
*/
|
|
|
|
|
|
|
|
url = dom_string_data(content);
|
|
|
|
|
|
|
|
/* *LWS */
|
|
|
|
while (url < end && isspace(*url)) {
|
|
|
|
url++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* intpart */
|
|
|
|
if (url == end || (*url < '0' || '9' < *url)) {
|
|
|
|
/* Empty content, or invalid timeval */
|
|
|
|
dom_string_unref(content);
|
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
msg_data.delay = (int) strtol(url, &new_url, 10);
|
|
|
|
/* a very small delay and self-referencing URL can cause a loop
|
|
|
|
* that grinds machines to a halt. To prevent this we set a
|
|
|
|
* minimum refresh delay of 1s. */
|
|
|
|
if (msg_data.delay < 1) {
|
|
|
|
msg_data.delay = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
url = new_url;
|
|
|
|
|
|
|
|
/* fracpart? (ignored, as delay is integer only) */
|
|
|
|
while (url < end && (('0' <= *url && *url <= '9') ||
|
|
|
|
*url == '.')) {
|
|
|
|
url++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* *LWS */
|
|
|
|
while (url < end && isspace(*url)) {
|
|
|
|
url++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ';' */
|
|
|
|
if (url < end && *url == ';')
|
|
|
|
url++;
|
|
|
|
|
|
|
|
/* *LWS */
|
|
|
|
while (url < end && isspace(*url)) {
|
|
|
|
url++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (url == end) {
|
|
|
|
/* Just delay specified, so refresh current page */
|
|
|
|
dom_string_unref(content);
|
|
|
|
|
|
|
|
c->base.refresh = nsurl_ref(
|
|
|
|
content_get_url(&c->base));
|
|
|
|
|
|
|
|
content_broadcast(&c->base, CONTENT_MSG_REFRESH, msg_data);
|
|
|
|
|
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* "url" */
|
|
|
|
if (url <= end - 3) {
|
|
|
|
if (strncasecmp(url, "url", 3) == 0) {
|
|
|
|
url += 3;
|
|
|
|
} else {
|
|
|
|
/* Unexpected input, ignore this header */
|
|
|
|
dom_string_unref(content);
|
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Insufficient input, ignore this header */
|
|
|
|
dom_string_unref(content);
|
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* *LWS */
|
|
|
|
while (url < end && isspace(*url)) {
|
|
|
|
url++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* '=' */
|
|
|
|
if (url < end) {
|
|
|
|
if (*url == '=') {
|
|
|
|
url++;
|
|
|
|
} else {
|
|
|
|
/* Unexpected input, ignore this header */
|
|
|
|
dom_string_unref(content);
|
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Insufficient input, ignore this header */
|
|
|
|
dom_string_unref(content);
|
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* *LWS */
|
|
|
|
while (url < end && isspace(*url)) {
|
|
|
|
url++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* '"' or "'" */
|
|
|
|
if (url < end && (*url == '"' || *url == '\'')) {
|
|
|
|
quote = *url;
|
|
|
|
url++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start of URL */
|
|
|
|
refresh = url;
|
|
|
|
|
|
|
|
if (quote != 0) {
|
|
|
|
/* url-sq | url-dq */
|
|
|
|
while (url < end && *url != quote)
|
|
|
|
url++;
|
|
|
|
} else {
|
|
|
|
/* url-nq */
|
|
|
|
while (url < end && !isspace(*url))
|
|
|
|
url++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* '"' or "'" or *LWS (we don't care) */
|
|
|
|
if (url > refresh) {
|
|
|
|
/* There's a URL */
|
|
|
|
new_url = strndup(refresh, url - refresh);
|
|
|
|
if (new_url == NULL) {
|
|
|
|
dom_string_unref(content);
|
|
|
|
return NSERROR_NOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
error = nsurl_join(c->base_url, new_url, &nsurl);
|
|
|
|
if (error == NSERROR_OK) {
|
|
|
|
/* broadcast valid refresh url */
|
|
|
|
|
|
|
|
c->base.refresh = nsurl;
|
|
|
|
|
|
|
|
content_broadcast(&c->base, CONTENT_MSG_REFRESH, msg_data);
|
|
|
|
c->refresh = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
free(new_url);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
dom_string_unref(content);
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2014-01-05 18:34:04 +04:00
|
|
|
static bool html_process_img(html_content *c, dom_node *node)
|
|
|
|
{
|
|
|
|
dom_string *src;
|
|
|
|
nsurl *url;
|
|
|
|
nserror err;
|
|
|
|
dom_exception exc;
|
|
|
|
bool success;
|
|
|
|
|
|
|
|
/* Do nothing if foreground images are disabled */
|
|
|
|
if (nsoption_bool(foreground_images) == false) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
exc = dom_element_get_attribute(node, corestring_dom_src, &src);
|
|
|
|
if (exc != DOM_NO_ERR || src == NULL) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = nsurl_join(c->base_url, dom_string_data(src), &url);
|
|
|
|
if (err != NSERROR_OK) {
|
|
|
|
dom_string_unref(src);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
dom_string_unref(src);
|
|
|
|
|
|
|
|
/* Speculatively fetch the image */
|
|
|
|
success = html_fetch_object(c, url, NULL, CONTENT_IMAGE, 0, 0, false);
|
|
|
|
nsurl_unref(url);
|
|
|
|
|
|
|
|
return success;
|
|
|
|
}
|
2012-11-26 21:23:03 +04:00
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
/**
|
|
|
|
* Complete conversion of an HTML document
|
|
|
|
*
|
|
|
|
* \param c Content to convert
|
|
|
|
*/
|
2012-07-13 23:19:04 +04:00
|
|
|
void html_finish_conversion(html_content *c)
|
2012-07-06 23:00:32 +04:00
|
|
|
{
|
|
|
|
union content_msg_data msg_data;
|
|
|
|
dom_exception exc; /* returned by libdom functions */
|
|
|
|
dom_node *html;
|
2012-11-26 21:23:03 +04:00
|
|
|
nserror error;
|
2005-01-02 01:05:21 +03:00
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
/* Bail out if we've been aborted */
|
|
|
|
if (c->aborted) {
|
2012-11-26 21:23:03 +04:00
|
|
|
content_broadcast_errorcode(&c->base, NSERROR_STOPPED);
|
2012-07-06 23:00:32 +04:00
|
|
|
content_set_error(&c->base);
|
|
|
|
return;
|
2005-01-02 01:05:21 +03:00
|
|
|
}
|
|
|
|
|
2013-02-24 17:15:05 +04:00
|
|
|
/* create new css selection context */
|
|
|
|
error = html_css_new_selection_context(c, &c->select_ctx);
|
|
|
|
if (error != NSERROR_OK) {
|
|
|
|
content_broadcast_errorcode(&c->base, error);
|
2012-07-06 23:00:32 +04:00
|
|
|
content_set_error(&c->base);
|
|
|
|
return;
|
2010-03-28 16:56:39 +04:00
|
|
|
}
|
2005-01-02 01:05:21 +03:00
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
|
2012-11-28 22:07:36 +04:00
|
|
|
/* fire a simple event named load at the Document's Window
|
|
|
|
* object, but with its target set to the Document object (and
|
|
|
|
* the currentTarget set to the Window object)
|
|
|
|
*/
|
2012-12-03 21:09:44 +04:00
|
|
|
js_fire_event(c->jscontext, "load", c->document, NULL);
|
2012-11-28 22:07:36 +04:00
|
|
|
|
2012-11-26 21:23:03 +04:00
|
|
|
/* convert dom tree to box tree */
|
|
|
|
LOG(("DOM to box (%p)", c));
|
2012-07-06 23:00:32 +04:00
|
|
|
content_set_status(&c->base, messages_get("Processing"));
|
2012-08-15 22:00:50 +04:00
|
|
|
msg_data.explicit_status_text = NULL;
|
2012-07-06 23:00:32 +04:00
|
|
|
content_broadcast(&c->base, CONTENT_MSG_STATUS, msg_data);
|
|
|
|
|
|
|
|
exc = dom_document_get_document_element(c->document, (void *) &html);
|
|
|
|
if ((exc != DOM_NO_ERR) || (html == NULL)) {
|
|
|
|
LOG(("error retrieving html element from dom"));
|
2012-11-26 21:23:03 +04:00
|
|
|
content_broadcast_errorcode(&c->base, NSERROR_DOM);
|
2012-07-06 23:00:32 +04:00
|
|
|
content_set_error(&c->base);
|
|
|
|
return;
|
2012-03-24 21:11:17 +04:00
|
|
|
}
|
2008-11-20 17:47:36 +03:00
|
|
|
|
2012-11-26 21:23:03 +04:00
|
|
|
error = dom_to_box(html, c, html_box_convert_done);
|
|
|
|
if (error != NSERROR_OK) {
|
2014-03-08 18:13:27 +04:00
|
|
|
LOG(("box conversion failed"));
|
2012-07-22 16:49:10 +04:00
|
|
|
dom_node_unref(html);
|
2013-02-25 22:24:04 +04:00
|
|
|
html_object_free_objects(c);
|
2012-11-26 21:23:03 +04:00
|
|
|
content_broadcast_errorcode(&c->base, error);
|
2012-07-06 23:00:32 +04:00
|
|
|
content_set_error(&c->base);
|
|
|
|
return;
|
2008-09-23 06:19:50 +04:00
|
|
|
}
|
2012-07-22 16:49:10 +04:00
|
|
|
|
2012-07-21 23:10:44 +04:00
|
|
|
dom_node_unref(html);
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
Merged revisions 4859-5013,5016-5018 via svnmerge from
svn://source.netsurf-browser.org/branches/takkaria/netsurf-hubbub
........
r4860 | takkaria | 2008-08-02 03:51:35 +0100 (Sat, 02 Aug 2008) | 2 lines
A really horribly rough first go at integrating hubbub with NetSurf. Segfaults, but I'm not sure what I've done wrong.
........
r4861 | jmb | 2008-08-02 05:01:19 +0100 (Sat, 02 Aug 2008) | 3 lines
Fix segfault caused by mismatched struct layout expectations.
Fix warnings, too.
........
r4862 | jmb | 2008-08-02 05:11:02 +0100 (Sat, 02 Aug 2008) | 2 lines
Destroy parser as soon as it's no longer needed, and flag this so that html_destroy doesn't cause things to trample all over the heap.
........
r4863 | takkaria | 2008-08-02 15:30:34 +0100 (Sat, 02 Aug 2008) | 2 lines
Remove deugging printf()s, add Aliases file, add script { display: none; } block.
........
r4868 | takkaria | 2008-08-02 22:14:55 +0100 (Sat, 02 Aug 2008) | 2 lines
Fix a segfault bug.
........
r4869 | takkaria | 2008-08-02 22:17:58 +0100 (Sat, 02 Aug 2008) | 2 lines
Add gtk/res/Aliases as a symlink to the one in !NS/Resources
........
r4870 | takkaria | 2008-08-02 22:26:31 +0100 (Sat, 02 Aug 2008) | 2 lines
Fix symlink.
........
r4885 | jmb | 2008-08-03 23:26:54 +0100 (Sun, 03 Aug 2008) | 2 lines
Make multiple parallel parser instances work correctly.
........
r4886 | tlsa | 2008-08-04 00:21:29 +0100 (Mon, 04 Aug 2008) | 1 line
Don't display contents of STYLE.
........
r4891 | jmb | 2008-08-04 01:18:07 +0100 (Mon, 04 Aug 2008) | 5 lines
Fix reparent_children to actually work
Make get_parent_node pay attention to the element_only flag
Fixup node referencing when appending a text child
Make clone_node clone attributes and namespace information in the non-deep case
........
r4918 | jmb | 2008-08-05 15:27:03 +0100 (Tue, 05 Aug 2008) | 2 lines
Fix debug target
........
r4944 | takkaria | 2008-08-07 12:56:50 +0100 (Thu, 07 Aug 2008) | 2 lines
Use talloc to allocate space for Hubbub.
........
r4993 | takkaria | 2008-08-10 17:49:47 +0100 (Sun, 10 Aug 2008) | 2 lines
Stub out the encoding change callback so NS-hubbub compiles again.
........
r4994 | takkaria | 2008-08-10 18:02:33 +0100 (Sun, 10 Aug 2008) | 2 lines
Tell Hubbub the encoding that HTTP gives us, if we have one.
........
r5001 | takkaria | 2008-08-11 02:53:24 +0100 (Mon, 11 Aug 2008) | 2 lines
First go at implementing proper <meta charset> support in NetSurf, amongst some refactoring. Probably works, but I have no pages around to test it on.
........
r5002 | takkaria | 2008-08-11 02:56:35 +0100 (Mon, 11 Aug 2008) | 2 lines
Fix (I hope) a 64-bit compiler warning.
........
r5012 | takkaria | 2008-08-11 08:40:28 +0100 (Mon, 11 Aug 2008) | 2 lines
Fix some nits from jmb. (Remove const from html->encoding, set encoding_source to something about right.)
........
r5013 | takkaria | 2008-08-11 08:48:50 +0100 (Mon, 11 Aug 2008) | 2 lines
Properly fix <meta charset> handling, by passing in the right thing as the context. No idea how this worked before. :) (credit: jmb)
........
r5017 | jmb | 2008-08-11 09:13:22 +0100 (Mon, 11 Aug 2008) | 7 lines
Pedantic typo fix.
Make Hubbub YES when building for RISC OS.
Make Hubbub AUTO when building for GTK
Ignore the presence of Hubbub on other platforms.
Remove the explicit libparserutils pkg-config stuff from the makefile (see r5016)
Add some logic that means Hubbub gets enabled correctly when building on RISC OS and when cross-compiling for it. (This is ugly and will go away when pkg-config is available on RO)
........
svn path=/trunk/netsurf/; revision=5019
2008-08-11 12:17:48 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
/* callback for DOMNodeInserted end type */
|
|
|
|
static void
|
|
|
|
dom_default_action_DOMNodeInserted_cb(struct dom_event *evt, void *pw)
|
|
|
|
{
|
|
|
|
dom_event_target *node;
|
|
|
|
dom_node_type type;
|
|
|
|
dom_string *name;
|
|
|
|
dom_exception exc;
|
|
|
|
html_content *htmlc = pw;
|
|
|
|
|
|
|
|
exc = dom_event_get_target(evt, &node);
|
|
|
|
if ((exc == DOM_NO_ERR) && (node != NULL)) {
|
|
|
|
exc = dom_node_get_node_type(node, &type);
|
|
|
|
if ((exc == DOM_NO_ERR) && (type == DOM_ELEMENT_NODE)) {
|
|
|
|
/* an element node has been inserted */
|
|
|
|
exc = dom_node_get_node_name(node, &name);
|
|
|
|
if ((exc == DOM_NO_ERR) && (name != NULL)) {
|
2013-05-23 18:02:15 +04:00
|
|
|
|
2013-05-23 02:57:59 +04:00
|
|
|
if (dom_string_caseless_isequal(name,
|
|
|
|
corestring_dom_link)) {
|
2013-05-23 16:29:40 +04:00
|
|
|
/* Handle stylesheet loading */
|
2013-05-23 02:57:59 +04:00
|
|
|
html_css_process_link(htmlc,
|
|
|
|
(dom_node *)node);
|
2013-05-23 16:29:40 +04:00
|
|
|
/* Generic link handling */
|
|
|
|
html_process_link(htmlc,
|
|
|
|
(dom_node *)node);
|
2013-05-23 02:57:59 +04:00
|
|
|
|
|
|
|
} else if (dom_string_caseless_lwc_isequal(name,
|
|
|
|
corestring_lwc_meta) &&
|
|
|
|
htmlc->refresh == false) {
|
|
|
|
html_meta_refresh_process_element(htmlc,
|
|
|
|
(dom_node *)node);
|
2013-05-23 16:29:40 +04:00
|
|
|
} else if (dom_string_caseless_lwc_isequal(
|
|
|
|
name, corestring_lwc_base)) {
|
|
|
|
html_process_base(htmlc,
|
|
|
|
(dom_node *)node);
|
2013-05-23 18:02:15 +04:00
|
|
|
} else if (dom_string_caseless_lwc_isequal(
|
|
|
|
name, corestring_lwc_title) &&
|
|
|
|
htmlc->title == NULL) {
|
|
|
|
htmlc->title = dom_node_ref(node);
|
2014-01-05 18:34:04 +04:00
|
|
|
} else if (dom_string_caseless_lwc_isequal(
|
|
|
|
name, corestring_lwc_img)) {
|
|
|
|
html_process_img(htmlc,
|
|
|
|
(dom_node *) node);
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
2013-02-23 01:28:07 +04:00
|
|
|
|
|
|
|
dom_string_unref(name);
|
2003-02-09 15:58:15 +03:00
|
|
|
}
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
2013-03-06 02:53:55 +04:00
|
|
|
dom_node_unref(node);
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
|
|
|
}
|
2003-04-06 01:38:06 +04:00
|
|
|
|
2013-02-20 21:13:23 +04:00
|
|
|
/* callback for DOMNodeInserted end type */
|
|
|
|
static void
|
|
|
|
dom_default_action_DOMSubtreeModified_cb(struct dom_event *evt, void *pw)
|
|
|
|
{
|
|
|
|
dom_event_target *node;
|
|
|
|
dom_node_type type;
|
|
|
|
dom_string *name;
|
|
|
|
dom_exception exc;
|
|
|
|
html_content *htmlc = pw;
|
|
|
|
|
|
|
|
exc = dom_event_get_target(evt, &node);
|
|
|
|
if ((exc == DOM_NO_ERR) && (node != NULL)) {
|
2013-05-23 18:02:15 +04:00
|
|
|
if (htmlc->title == (dom_node *)node) {
|
|
|
|
/* Node is our title node */
|
|
|
|
html_process_title(htmlc, (dom_node *)node);
|
|
|
|
dom_node_unref(node);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-02-20 21:13:23 +04:00
|
|
|
exc = dom_node_get_node_type(node, &type);
|
|
|
|
if ((exc == DOM_NO_ERR) && (type == DOM_ELEMENT_NODE)) {
|
2013-05-23 18:02:15 +04:00
|
|
|
/* an element node has been modified */
|
2013-02-20 21:13:23 +04:00
|
|
|
exc = dom_node_get_node_name(node, &name);
|
|
|
|
if ((exc == DOM_NO_ERR) && (name != NULL)) {
|
2013-05-23 18:02:15 +04:00
|
|
|
|
|
|
|
if (dom_string_caseless_isequal(name,
|
|
|
|
corestring_dom_style)) {
|
|
|
|
html_css_update_style(htmlc,
|
|
|
|
(dom_node *)node);
|
|
|
|
}
|
2013-02-23 01:28:07 +04:00
|
|
|
|
|
|
|
dom_string_unref(name);
|
2013-02-20 21:13:23 +04:00
|
|
|
}
|
|
|
|
}
|
2013-03-06 02:53:55 +04:00
|
|
|
dom_node_unref(node);
|
2013-02-20 21:13:23 +04:00
|
|
|
}
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
/* callback function selector
|
2012-07-06 23:00:32 +04:00
|
|
|
*
|
2013-02-20 03:51:16 +04:00
|
|
|
* selects a callback function for libdom to call based on the type and phase.
|
|
|
|
* dom_default_action_phase from events/document_event.h
|
2012-07-06 23:00:32 +04:00
|
|
|
*
|
2013-02-25 19:00:50 +04:00
|
|
|
* The principle events are:
|
|
|
|
* DOMSubtreeModified
|
|
|
|
* DOMAttrModified
|
|
|
|
* DOMNodeInserted
|
|
|
|
* DOMNodeInsertedIntoDocument
|
|
|
|
*
|
2013-02-20 03:51:16 +04:00
|
|
|
* @return callback function pointer or NULL for none
|
2012-07-06 23:00:32 +04:00
|
|
|
*/
|
2013-02-20 03:51:16 +04:00
|
|
|
static dom_default_action_callback
|
|
|
|
dom_event_fetcher(dom_string *type,
|
|
|
|
dom_default_action_phase phase,
|
|
|
|
void **pw)
|
2012-07-06 23:00:32 +04:00
|
|
|
{
|
2013-02-20 03:51:16 +04:00
|
|
|
//LOG(("type:%s", dom_string_data(type)));
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 21:13:23 +04:00
|
|
|
if (phase == DOM_DEFAULT_ACTION_END) {
|
|
|
|
if (dom_string_isequal(type, corestring_dom_DOMNodeInserted)) {
|
|
|
|
return dom_default_action_DOMNodeInserted_cb;
|
|
|
|
} else if (dom_string_isequal(type, corestring_dom_DOMSubtreeModified)) {
|
|
|
|
return dom_default_action_DOMSubtreeModified_cb;
|
2012-03-24 21:11:17 +04:00
|
|
|
}
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
2013-02-20 03:51:16 +04:00
|
|
|
return NULL;
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
static nserror
|
|
|
|
html_create_html_data(html_content *c, const http_parameter *params)
|
2012-07-06 23:00:32 +04:00
|
|
|
{
|
2013-02-20 03:51:16 +04:00
|
|
|
lwc_string *charset;
|
|
|
|
nserror nerror;
|
|
|
|
dom_hubbub_parser_params parse_params;
|
|
|
|
dom_hubbub_error error;
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
c->parser = NULL;
|
2014-02-10 05:24:43 +04:00
|
|
|
c->parse_completed = false;
|
2013-02-20 03:51:16 +04:00
|
|
|
c->document = NULL;
|
|
|
|
c->quirks = DOM_DOCUMENT_QUIRKS_MODE_NONE;
|
|
|
|
c->encoding = NULL;
|
|
|
|
c->base_url = nsurl_ref(content_get_url(&c->base));
|
|
|
|
c->base_target = NULL;
|
|
|
|
c->aborted = false;
|
2013-05-23 02:57:59 +04:00
|
|
|
c->refresh = false;
|
2014-09-27 12:57:26 +04:00
|
|
|
c->reflowing = false;
|
2013-05-23 18:02:15 +04:00
|
|
|
c->title = NULL;
|
2013-02-20 03:51:16 +04:00
|
|
|
c->bctx = NULL;
|
|
|
|
c->layout = NULL;
|
|
|
|
c->background_colour = NS_TRANSPARENT;
|
|
|
|
c->stylesheet_count = 0;
|
|
|
|
c->stylesheets = NULL;
|
|
|
|
c->select_ctx = NULL;
|
|
|
|
c->universal = NULL;
|
|
|
|
c->num_objects = 0;
|
|
|
|
c->object_list = NULL;
|
|
|
|
c->forms = NULL;
|
|
|
|
c->imagemaps = NULL;
|
|
|
|
c->bw = NULL;
|
|
|
|
c->frameset = NULL;
|
|
|
|
c->iframe = NULL;
|
|
|
|
c->page = NULL;
|
|
|
|
c->font_func = &nsfont;
|
|
|
|
c->drag_type = HTML_DRAG_NONE;
|
|
|
|
c->drag_owner.no_owner = true;
|
2013-02-22 17:24:36 +04:00
|
|
|
c->selection_type = HTML_SELECTION_NONE;
|
|
|
|
c->selection_owner.none = true;
|
|
|
|
c->focus_type = HTML_FOCUS_SELF;
|
|
|
|
c->focus_owner.self = true;
|
2013-05-07 17:41:40 +04:00
|
|
|
c->search = NULL;
|
|
|
|
c->search_string = NULL;
|
2013-02-20 03:51:16 +04:00
|
|
|
c->scripts_count = 0;
|
|
|
|
c->scripts = NULL;
|
|
|
|
c->jscontext = NULL;
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
c->base.active = 1; /* The html content itself is active */
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
if (lwc_intern_string("*", SLEN("*"), &c->universal) != lwc_error_ok) {
|
|
|
|
return NSERROR_NOMEM;
|
2012-03-24 21:11:17 +04:00
|
|
|
}
|
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
selection_prepare(&c->sel, (struct content *)c, true);
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-24 17:15:05 +04:00
|
|
|
nerror = http_parameter_list_find_item(params, corestring_lwc_charset, &charset);
|
2013-02-20 03:51:16 +04:00
|
|
|
if (nerror == NSERROR_OK) {
|
|
|
|
c->encoding = strdup(lwc_string_data(charset));
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
lwc_string_unref(charset);
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
if (c->encoding == NULL) {
|
|
|
|
lwc_string_unref(c->universal);
|
|
|
|
c->universal = NULL;
|
|
|
|
return NSERROR_NOMEM;
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
}
|
|
|
|
c->encoding_source = DOM_HUBBUB_ENCODING_SOURCE_HEADER;
|
2012-03-24 21:11:17 +04:00
|
|
|
}
|
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
/* Create the parser binding */
|
|
|
|
parse_params.enc = c->encoding;
|
|
|
|
parse_params.fix_enc = true;
|
|
|
|
parse_params.enable_script = nsoption_bool(enable_javascript);
|
|
|
|
parse_params.msg = NULL;
|
|
|
|
parse_params.script = html_process_script;
|
|
|
|
parse_params.ctx = c;
|
|
|
|
parse_params.daf = dom_event_fetcher;
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
error = dom_hubbub_parser_create(&parse_params,
|
|
|
|
&c->parser,
|
|
|
|
&c->document);
|
|
|
|
if ((error != DOM_HUBBUB_OK) && (c->encoding != NULL)) {
|
|
|
|
/* Ok, we don't support the declared encoding. Bailing out
|
|
|
|
* isn't exactly user-friendly, so fall back to autodetect */
|
|
|
|
free(c->encoding);
|
|
|
|
c->encoding = NULL;
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
parse_params.enc = c->encoding;
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
error = dom_hubbub_parser_create(&parse_params,
|
|
|
|
&c->parser,
|
|
|
|
&c->document);
|
2012-11-26 21:23:03 +04:00
|
|
|
}
|
2013-02-20 03:51:16 +04:00
|
|
|
if (error != DOM_HUBBUB_OK) {
|
|
|
|
nsurl_unref(c->base_url);
|
|
|
|
c->base_url = NULL;
|
2012-06-19 13:35:51 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
lwc_string_unref(c->universal);
|
|
|
|
c->universal = NULL;
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
return libdom_hubbub_error_to_nserror(error);
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
return NSERROR_OK;
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
/**
|
|
|
|
* Create a CONTENT_HTML.
|
|
|
|
*
|
|
|
|
* The content_html_data structure is initialized and the HTML parser is
|
|
|
|
* created.
|
|
|
|
*/
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
static nserror
|
|
|
|
html_create(const content_handler *handler,
|
|
|
|
lwc_string *imime_type,
|
|
|
|
const http_parameter *params,
|
|
|
|
llcache_handle *llcache,
|
|
|
|
const char *fallback_charset,
|
|
|
|
bool quirks,
|
|
|
|
struct content **c)
|
|
|
|
{
|
|
|
|
html_content *html;
|
|
|
|
nserror error;
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
html = calloc(1, sizeof(html_content));
|
|
|
|
if (html == NULL)
|
|
|
|
return NSERROR_NOMEM;
|
2012-11-26 21:23:03 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
error = content__init(&html->base, handler, imime_type, params,
|
|
|
|
llcache, fallback_charset, quirks);
|
|
|
|
if (error != NSERROR_OK) {
|
|
|
|
free(html);
|
|
|
|
return error;
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
error = html_create_html_data(html, params);
|
|
|
|
if (error != NSERROR_OK) {
|
|
|
|
content_broadcast_errorcode(&html->base, error);
|
|
|
|
free(html);
|
|
|
|
return error;
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-24 17:15:05 +04:00
|
|
|
error = html_css_new_stylesheets(html);
|
|
|
|
if (error != NSERROR_OK) {
|
|
|
|
content_broadcast_errorcode(&html->base, error);
|
|
|
|
free(html);
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
*c = (struct content *) html;
|
2012-07-06 23:00:32 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
return NSERROR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static nserror
|
|
|
|
html_process_encoding_change(struct content *c,
|
|
|
|
const char *data,
|
|
|
|
unsigned int size)
|
|
|
|
{
|
|
|
|
html_content *html = (html_content *) c;
|
|
|
|
dom_hubbub_parser_params parse_params;
|
|
|
|
dom_hubbub_error error;
|
|
|
|
const char *encoding;
|
|
|
|
const char *source_data;
|
|
|
|
unsigned long source_size;
|
|
|
|
|
|
|
|
/* Retrieve new encoding */
|
|
|
|
encoding = dom_hubbub_parser_get_encoding(html->parser,
|
|
|
|
&html->encoding_source);
|
|
|
|
if (encoding == NULL) {
|
|
|
|
return NSERROR_NOMEM;
|
2012-03-24 21:11:17 +04:00
|
|
|
}
|
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
if (html->encoding != NULL) {
|
|
|
|
free(html->encoding);
|
2013-10-23 21:55:51 +04:00
|
|
|
html->encoding = NULL;
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
html->encoding = strdup(encoding);
|
|
|
|
if (html->encoding == NULL) {
|
|
|
|
return NSERROR_NOMEM;
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
/* Destroy binding */
|
|
|
|
dom_hubbub_parser_destroy(html->parser);
|
|
|
|
html->parser = NULL;
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
if (html->document != NULL) {
|
|
|
|
dom_node_unref(html->document);
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
parse_params.enc = html->encoding;
|
|
|
|
parse_params.fix_enc = true;
|
|
|
|
parse_params.enable_script = nsoption_bool(enable_javascript);
|
|
|
|
parse_params.msg = NULL;
|
|
|
|
parse_params.script = html_process_script;
|
|
|
|
parse_params.ctx = html;
|
|
|
|
parse_params.daf = dom_event_fetcher;
|
|
|
|
|
|
|
|
/* Create new binding, using the new encoding */
|
|
|
|
error = dom_hubbub_parser_create(&parse_params,
|
|
|
|
&html->parser,
|
|
|
|
&html->document);
|
|
|
|
if (error != DOM_HUBBUB_OK) {
|
|
|
|
/* Ok, we don't support the declared encoding. Bailing out
|
|
|
|
* isn't exactly user-friendly, so fall back to Windows-1252 */
|
|
|
|
free(html->encoding);
|
|
|
|
html->encoding = strdup("Windows-1252");
|
|
|
|
if (html->encoding == NULL) {
|
2012-11-26 21:23:03 +04:00
|
|
|
return NSERROR_NOMEM;
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
2013-02-20 03:51:16 +04:00
|
|
|
parse_params.enc = html->encoding;
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
error = dom_hubbub_parser_create(&parse_params,
|
|
|
|
&html->parser,
|
|
|
|
&html->document);
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
if (error != DOM_HUBBUB_OK) {
|
|
|
|
return libdom_hubbub_error_to_nserror(error);
|
2012-03-24 21:11:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2012-07-06 23:00:32 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
source_data = content__get_source_data(c, &source_size);
|
2012-07-06 23:00:32 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
/* Reprocess all the data. This is safe because
|
|
|
|
* the encoding is now specified at parser start which means
|
|
|
|
* it cannot be changed again.
|
|
|
|
*/
|
|
|
|
error = dom_hubbub_parser_parse_chunk(html->parser,
|
|
|
|
(const uint8_t *)source_data,
|
|
|
|
source_size);
|
|
|
|
|
|
|
|
return libdom_hubbub_error_to_nserror(error);
|
2012-03-24 21:11:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2013-02-20 03:51:16 +04:00
|
|
|
* Process data for CONTENT_HTML.
|
2012-03-24 21:11:17 +04:00
|
|
|
*/
|
2012-07-06 23:00:32 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
static bool
|
|
|
|
html_process_data(struct content *c, const char *data, unsigned int size)
|
2012-03-24 21:11:17 +04:00
|
|
|
{
|
2013-02-20 03:51:16 +04:00
|
|
|
html_content *html = (html_content *) c;
|
|
|
|
dom_hubbub_error dom_ret;
|
|
|
|
nserror err = NSERROR_OK; /* assume its all going to be ok */
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
dom_ret = dom_hubbub_parser_parse_chunk(html->parser,
|
|
|
|
(const uint8_t *) data,
|
|
|
|
size);
|
|
|
|
|
|
|
|
err = libdom_hubbub_error_to_nserror(dom_ret);
|
|
|
|
|
|
|
|
/* deal with encoding change */
|
|
|
|
if (err == NSERROR_ENCODING_CHANGE) {
|
|
|
|
err = html_process_encoding_change(c, data, size);
|
2012-11-27 00:33:27 +04:00
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
/* broadcast the error if necessary */
|
|
|
|
if (err != NSERROR_OK) {
|
|
|
|
content_broadcast_errorcode(c, err);
|
|
|
|
return false;
|
2012-11-27 00:33:27 +04:00
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
return true;
|
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
|
2004-02-20 03:43:17 +03:00
|
|
|
/**
|
2012-03-24 21:11:17 +04:00
|
|
|
* Convert a CONTENT_HTML for display.
|
|
|
|
*
|
|
|
|
* The following steps are carried out in order:
|
|
|
|
*
|
|
|
|
* - parsing to an XML tree is completed
|
|
|
|
* - stylesheets are fetched
|
|
|
|
* - the XML tree is converted to a box tree and object fetches are started
|
|
|
|
*
|
|
|
|
* On exit, the content status will be either CONTENT_STATUS_DONE if the
|
|
|
|
* document is completely loaded or CONTENT_STATUS_READY if objects are still
|
|
|
|
* being fetched.
|
2004-02-20 03:43:17 +03:00
|
|
|
*/
|
|
|
|
|
2012-03-24 21:11:17 +04:00
|
|
|
static bool html_convert(struct content *c)
|
2003-04-15 21:53:00 +04:00
|
|
|
{
|
2012-03-24 21:11:17 +04:00
|
|
|
html_content *htmlc = (html_content *) c;
|
2013-02-25 19:00:50 +04:00
|
|
|
dom_exception exc; /* returned by libdom functions */
|
|
|
|
|
|
|
|
/* The quirk check and associated stylesheet fetch is "safe"
|
|
|
|
* once the root node has been inserted into the document
|
|
|
|
* which must have happened by this point in the parse.
|
|
|
|
*
|
|
|
|
* faliure to retrive the quirk mode or to start the
|
|
|
|
* stylesheet fetch is non fatal as this "only" affects the
|
|
|
|
* render and it would annoy the user to fail the entire
|
|
|
|
* render for want of a quirks stylesheet.
|
|
|
|
*/
|
|
|
|
exc = dom_document_get_quirks_mode(htmlc->document, &htmlc->quirks);
|
|
|
|
if (exc == DOM_NO_ERR) {
|
|
|
|
html_css_quirks_stylesheets(htmlc);
|
|
|
|
LOG(("quirks set to %d", htmlc->quirks));
|
|
|
|
}
|
2012-07-30 21:18:11 +04:00
|
|
|
|
|
|
|
htmlc->base.active--; /* the html fetch is no longer active */
|
|
|
|
LOG(("%d fetches active", htmlc->base.active));
|
|
|
|
|
2013-02-25 19:00:50 +04:00
|
|
|
/* The parse cannot be completed here because it may be paused
|
|
|
|
* untill all the resources being fetched have completed.
|
|
|
|
*/
|
|
|
|
|
2012-07-30 21:18:11 +04:00
|
|
|
/* if there are no active fetches in progress no scripts are
|
|
|
|
* being fetched or they completed already.
|
2013-03-18 18:48:00 +04:00
|
|
|
*/
|
|
|
|
if (html_can_begin_conversion(htmlc)) {
|
2012-07-30 21:18:11 +04:00
|
|
|
return html_begin_conversion(htmlc);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-03-18 18:48:00 +04:00
|
|
|
/* Exported interface documented in html_internal.h */
|
|
|
|
bool html_can_begin_conversion(html_content *htmlc)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
2013-05-20 22:51:15 +04:00
|
|
|
|
|
|
|
if (htmlc->base.active != 0)
|
|
|
|
return false;
|
2013-03-18 18:48:00 +04:00
|
|
|
|
|
|
|
for (i = 0; i != htmlc->stylesheet_count; i++) {
|
2013-05-20 22:51:15 +04:00
|
|
|
if (htmlc->stylesheets[i].modified)
|
|
|
|
return false;
|
2013-03-18 18:48:00 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-07-30 21:18:11 +04:00
|
|
|
bool
|
|
|
|
html_begin_conversion(html_content *htmlc)
|
|
|
|
{
|
2013-05-23 18:02:15 +04:00
|
|
|
dom_node *html;
|
2012-11-26 21:23:03 +04:00
|
|
|
nserror ns_error;
|
2012-03-24 21:11:17 +04:00
|
|
|
struct form *f;
|
|
|
|
dom_exception exc; /* returned by libdom functions */
|
|
|
|
dom_string *node_name = NULL;
|
2012-07-30 21:18:11 +04:00
|
|
|
dom_hubbub_error error;
|
2004-01-24 20:08:16 +03:00
|
|
|
|
2014-02-10 05:24:43 +04:00
|
|
|
/* The act of completing the parse can result in additional data
|
|
|
|
* being flushed through the parser. This may result in new style or
|
|
|
|
* script nodes, upon which the conversion depends. Thus, once we
|
|
|
|
* have completed the parse, we must check again to see if we can
|
|
|
|
* begin the conversion. If we can't, we must stop and wait for the
|
|
|
|
* new styles/scripts to be processed. Once they have been processed,
|
|
|
|
* we will be called again to begin the conversion for real. Thus,
|
|
|
|
* we must also ensure that we don't attempt to complete the parse
|
|
|
|
* multiple times, so store a flag to indicate that parsing is
|
|
|
|
* complete to avoid repeating the completion pointlessly.
|
|
|
|
*/
|
|
|
|
if (htmlc->parse_completed == false) {
|
|
|
|
LOG(("Completing parse"));
|
|
|
|
/* complete parsing */
|
|
|
|
error = dom_hubbub_parser_completed(htmlc->parser);
|
|
|
|
if (error != DOM_HUBBUB_OK) {
|
|
|
|
LOG(("Parsing failed"));
|
|
|
|
|
|
|
|
content_broadcast_errorcode(&htmlc->base,
|
|
|
|
libdom_hubbub_error_to_nserror(error));
|
2012-11-26 21:23:03 +04:00
|
|
|
|
2014-02-10 05:24:43 +04:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
htmlc->parse_completed = true;
|
|
|
|
}
|
2011-04-27 17:50:49 +04:00
|
|
|
|
2014-02-10 05:24:43 +04:00
|
|
|
if (html_can_begin_conversion(htmlc) == false) {
|
|
|
|
/* We can't proceed (see commentary above) */
|
|
|
|
return true;
|
2012-03-24 21:11:17 +04:00
|
|
|
}
|
2011-04-27 17:50:49 +04:00
|
|
|
|
2012-11-26 21:23:03 +04:00
|
|
|
/* Give up processing if we've been aborted */
|
|
|
|
if (htmlc->aborted) {
|
|
|
|
content_broadcast_errorcode(&htmlc->base, NSERROR_STOPPED);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-08-01 01:33:08 +04:00
|
|
|
/* complete script execution */
|
|
|
|
html_scripts_exec(htmlc);
|
|
|
|
|
2012-11-26 21:23:03 +04:00
|
|
|
/* fire a simple event that bubbles named DOMContentLoaded at
|
|
|
|
* the Document.
|
|
|
|
*/
|
|
|
|
|
2012-08-05 13:53:03 +04:00
|
|
|
/* get encoding */
|
2012-03-24 21:11:17 +04:00
|
|
|
if (htmlc->encoding == NULL) {
|
2012-07-14 03:33:15 +04:00
|
|
|
const char *encoding;
|
2012-10-03 22:24:58 +04:00
|
|
|
|
2012-07-14 03:33:15 +04:00
|
|
|
encoding = dom_hubbub_parser_get_encoding(htmlc->parser,
|
|
|
|
&htmlc->encoding_source);
|
2012-10-03 22:24:58 +04:00
|
|
|
if (encoding == NULL) {
|
2012-11-26 21:23:03 +04:00
|
|
|
content_broadcast_errorcode(&htmlc->base,
|
|
|
|
NSERROR_NOMEM);
|
2012-10-03 22:24:58 +04:00
|
|
|
return false;
|
|
|
|
}
|
2011-04-27 17:50:49 +04:00
|
|
|
|
2012-10-03 22:24:58 +04:00
|
|
|
htmlc->encoding = strdup(encoding);
|
2012-03-24 21:11:17 +04:00
|
|
|
if (htmlc->encoding == NULL) {
|
2012-11-26 21:23:03 +04:00
|
|
|
content_broadcast_errorcode(&htmlc->base,
|
|
|
|
NSERROR_NOMEM);
|
2012-03-24 21:11:17 +04:00
|
|
|
return false;
|
2011-04-27 17:50:49 +04:00
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
}
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2012-06-18 02:12:29 +04:00
|
|
|
/* locate root element and ensure it is html */
|
2012-03-25 02:26:44 +04:00
|
|
|
exc = dom_document_get_document_element(htmlc->document, (void *) &html);
|
2012-07-06 23:00:32 +04:00
|
|
|
if ((exc != DOM_NO_ERR) || (html == NULL)) {
|
2012-03-24 21:11:17 +04:00
|
|
|
LOG(("error retrieving html element from dom"));
|
2012-11-26 21:23:03 +04:00
|
|
|
content_broadcast_errorcode(&htmlc->base, NSERROR_DOM);
|
2012-03-24 21:11:17 +04:00
|
|
|
return false;
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2012-03-24 21:11:17 +04:00
|
|
|
exc = dom_node_get_node_name(html, &node_name);
|
2012-07-06 23:00:32 +04:00
|
|
|
if ((exc != DOM_NO_ERR) ||
|
|
|
|
(node_name == NULL) ||
|
2012-07-23 02:28:45 +04:00
|
|
|
(!dom_string_caseless_lwc_isequal(node_name,
|
|
|
|
corestring_lwc_html))) {
|
2012-06-18 02:12:29 +04:00
|
|
|
LOG(("root element not html"));
|
2012-11-26 21:23:03 +04:00
|
|
|
content_broadcast_errorcode(&htmlc->base, NSERROR_DOM);
|
2012-07-21 23:10:44 +04:00
|
|
|
dom_node_unref(html);
|
2012-03-24 21:11:17 +04:00
|
|
|
return false;
|
2012-07-06 23:00:32 +04:00
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
dom_string_unref(node_name);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2012-03-24 21:11:17 +04:00
|
|
|
/* Retrieve forms from parser */
|
2012-07-15 04:02:33 +04:00
|
|
|
htmlc->forms = html_forms_get_forms(htmlc->encoding,
|
|
|
|
(dom_html_document *) htmlc->document);
|
2012-03-24 21:11:17 +04:00
|
|
|
for (f = htmlc->forms; f != NULL; f = f->prev) {
|
2012-10-11 20:49:42 +04:00
|
|
|
nsurl *action;
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2012-03-24 21:11:17 +04:00
|
|
|
/* Make all actions absolute */
|
|
|
|
if (f->action == NULL || f->action[0] == '\0') {
|
2012-10-11 20:49:42 +04:00
|
|
|
/* HTML5 4.10.22.3 step 9 */
|
|
|
|
nsurl *doc_addr = content_get_url(&htmlc->base);
|
2012-11-26 21:23:03 +04:00
|
|
|
ns_error = nsurl_join(htmlc->base_url,
|
|
|
|
nsurl_access(doc_addr),
|
|
|
|
&action);
|
2012-03-24 21:11:17 +04:00
|
|
|
} else {
|
2012-11-26 21:23:03 +04:00
|
|
|
ns_error = nsurl_join(htmlc->base_url,
|
|
|
|
f->action,
|
|
|
|
&action);
|
2012-03-24 21:11:17 +04:00
|
|
|
}
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2012-11-26 21:23:03 +04:00
|
|
|
if (ns_error != NSERROR_OK) {
|
|
|
|
content_broadcast_errorcode(&htmlc->base, ns_error);
|
|
|
|
|
2012-07-21 23:10:44 +04:00
|
|
|
dom_node_unref(html);
|
2012-03-24 21:11:17 +04:00
|
|
|
return false;
|
2011-10-04 00:38:23 +04:00
|
|
|
}
|
2010-03-28 16:56:39 +04:00
|
|
|
|
2012-03-24 21:11:17 +04:00
|
|
|
free(f->action);
|
2012-10-11 20:49:42 +04:00
|
|
|
f->action = strdup(nsurl_access(action));
|
|
|
|
nsurl_unref(action);
|
|
|
|
if (f->action == NULL) {
|
2012-11-26 21:23:03 +04:00
|
|
|
content_broadcast_errorcode(&htmlc->base,
|
|
|
|
NSERROR_NOMEM);
|
|
|
|
|
2012-10-11 20:49:42 +04:00
|
|
|
dom_node_unref(html);
|
|
|
|
return false;
|
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
|
|
|
|
/* Ensure each form has a document encoding */
|
|
|
|
if (f->document_charset == NULL) {
|
|
|
|
f->document_charset = strdup(htmlc->encoding);
|
|
|
|
if (f->document_charset == NULL) {
|
2012-11-26 21:23:03 +04:00
|
|
|
content_broadcast_errorcode(&htmlc->base,
|
|
|
|
NSERROR_NOMEM);
|
2012-07-21 23:10:44 +04:00
|
|
|
dom_node_unref(html);
|
2012-03-24 21:11:17 +04:00
|
|
|
return false;
|
|
|
|
}
|
2011-03-11 02:08:34 +03:00
|
|
|
}
|
2012-03-24 21:11:17 +04:00
|
|
|
}
|
2011-03-11 02:08:34 +03:00
|
|
|
|
2013-02-20 03:51:16 +04:00
|
|
|
dom_node_unref(html);
|
2012-07-30 18:17:57 +04:00
|
|
|
|
2012-07-30 21:18:11 +04:00
|
|
|
if (htmlc->base.active == 0) {
|
|
|
|
html_finish_conversion(htmlc);
|
|
|
|
}
|
|
|
|
|
2012-03-24 21:11:17 +04:00
|
|
|
return true;
|
|
|
|
}
|
2011-12-02 19:08:25 +04:00
|
|
|
|
2003-06-17 23:24:21 +04:00
|
|
|
|
2004-06-21 03:09:52 +04:00
|
|
|
/**
|
2011-07-20 00:23:59 +04:00
|
|
|
* Stop loading a CONTENT_HTML.
|
2004-06-21 03:09:52 +04:00
|
|
|
*/
|
|
|
|
|
2012-03-24 21:11:17 +04:00
|
|
|
static void html_stop(struct content *c)
|
2004-06-21 03:09:52 +04:00
|
|
|
{
|
2011-05-07 00:40:09 +04:00
|
|
|
html_content *htmlc = (html_content *) c;
|
2004-06-21 03:09:52 +04:00
|
|
|
|
2011-07-20 00:23:59 +04:00
|
|
|
switch (c->status) {
|
|
|
|
case CONTENT_STATUS_LOADING:
|
|
|
|
/* Still loading; simply flag that we've been aborted
|
|
|
|
* html_convert/html_finish_conversion will do the rest */
|
|
|
|
htmlc->aborted = true;
|
|
|
|
break;
|
2012-06-19 13:35:51 +04:00
|
|
|
|
2013-02-25 22:24:04 +04:00
|
|
|
case CONTENT_STATUS_READY:
|
|
|
|
html_object_abort_objects(htmlc);
|
2011-07-20 03:08:55 +04:00
|
|
|
|
|
|
|
/* If there are no further active fetches and we're still
|
|
|
|
* in the READY state, transition to the DONE state. */
|
|
|
|
if (c->status == CONTENT_STATUS_READY && c->active == 0) {
|
|
|
|
html_set_status(htmlc, "");
|
|
|
|
content_set_done(c);
|
|
|
|
}
|
|
|
|
|
2011-07-20 00:23:59 +04:00
|
|
|
break;
|
2013-02-25 22:24:04 +04:00
|
|
|
|
2011-07-20 00:23:59 +04:00
|
|
|
case CONTENT_STATUS_DONE:
|
|
|
|
/* Nothing to do */
|
|
|
|
break;
|
2013-02-25 22:24:04 +04:00
|
|
|
|
2011-07-20 00:23:59 +04:00
|
|
|
default:
|
|
|
|
LOG(("Unexpected status %d", c->status));
|
|
|
|
assert(0);
|
2004-06-21 03:09:52 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-20 03:43:17 +03:00
|
|
|
/**
|
|
|
|
* Reformat a CONTENT_HTML to a new width.
|
|
|
|
*/
|
|
|
|
|
2012-03-24 21:11:17 +04:00
|
|
|
static void html_reformat(struct content *c, int width, int height)
|
2003-02-09 15:58:15 +03:00
|
|
|
{
|
2011-05-07 00:40:09 +04:00
|
|
|
html_content *htmlc = (html_content *) c;
|
2006-09-17 01:33:55 +04:00
|
|
|
struct box *layout;
|
2010-03-30 02:33:21 +04:00
|
|
|
unsigned int time_before, time_taken;
|
|
|
|
|
|
|
|
time_before = wallclock();
|
2006-06-29 23:55:08 +04:00
|
|
|
|
2014-09-27 12:57:26 +04:00
|
|
|
htmlc->reflowing = true;
|
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
layout_document(htmlc, width, height);
|
|
|
|
layout = htmlc->layout;
|
2006-09-17 01:33:55 +04:00
|
|
|
|
|
|
|
/* width and height are at least margin box of document */
|
|
|
|
c->width = layout->x + layout->padding[LEFT] + layout->width +
|
2009-07-24 03:05:34 +04:00
|
|
|
layout->padding[RIGHT] + layout->border[RIGHT].width +
|
2006-09-17 01:33:55 +04:00
|
|
|
layout->margin[RIGHT];
|
|
|
|
c->height = layout->y + layout->padding[TOP] + layout->height +
|
2009-07-24 03:05:34 +04:00
|
|
|
layout->padding[BOTTOM] + layout->border[BOTTOM].width +
|
2006-09-17 01:33:55 +04:00
|
|
|
layout->margin[BOTTOM];
|
|
|
|
|
|
|
|
/* if boxes overflow right or bottom edge, expand to contain it */
|
|
|
|
if (c->width < layout->x + layout->descendant_x1)
|
|
|
|
c->width = layout->x + layout->descendant_x1;
|
|
|
|
if (c->height < layout->y + layout->descendant_y1)
|
|
|
|
c->height = layout->y + layout->descendant_y1;
|
2010-03-30 02:33:21 +04:00
|
|
|
|
2011-07-13 17:20:26 +04:00
|
|
|
selection_reinit(&htmlc->sel, htmlc->layout);
|
|
|
|
|
2014-09-27 12:57:26 +04:00
|
|
|
htmlc->reflowing = false;
|
|
|
|
|
2010-03-30 02:33:21 +04:00
|
|
|
time_taken = wallclock() - time_before;
|
|
|
|
c->reformat_time = wallclock() +
|
2013-05-27 21:39:51 +04:00
|
|
|
((time_taken * 3 < nsoption_uint(min_reflow_period) ?
|
|
|
|
nsoption_uint(min_reflow_period) : time_taken * 3));
|
2003-02-09 15:58:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-04 13:35:08 +04:00
|
|
|
/**
|
|
|
|
* Redraw a box.
|
|
|
|
*
|
2010-11-03 18:44:01 +03:00
|
|
|
* \param h content containing the box, of type CONTENT_HTML
|
2010-06-04 13:35:08 +04:00
|
|
|
* \param box box to redraw
|
|
|
|
*/
|
|
|
|
|
|
|
|
void html_redraw_a_box(hlcache_handle *h, struct box *box)
|
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
box_coords(box, &x, &y);
|
|
|
|
|
|
|
|
content_request_redraw(h, x, y,
|
|
|
|
box->padding[LEFT] + box->width + box->padding[RIGHT],
|
|
|
|
box->padding[TOP] + box->height + box->padding[BOTTOM]);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-07 21:50:04 +04:00
|
|
|
/**
|
|
|
|
* Redraw a box.
|
|
|
|
*
|
|
|
|
* \param h content containing the box, of type CONTENT_HTML
|
|
|
|
* \param box box to redraw
|
|
|
|
*/
|
|
|
|
|
2012-08-16 16:22:35 +04:00
|
|
|
void html__redraw_a_box(struct html_content *html, struct box *box)
|
2011-07-07 21:50:04 +04:00
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
|
|
|
|
box_coords(box, &x, &y);
|
|
|
|
|
2012-08-16 16:22:35 +04:00
|
|
|
content__request_redraw((struct content *)html, x, y,
|
2011-07-07 21:50:04 +04:00
|
|
|
box->padding[LEFT] + box->width + box->padding[RIGHT],
|
|
|
|
box->padding[TOP] + box->height + box->padding[BOTTOM]);
|
|
|
|
}
|
|
|
|
|
2012-03-24 21:11:17 +04:00
|
|
|
static void html_destroy_frameset(struct content_html_frames *frameset)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (frameset->name) {
|
2012-10-03 23:48:53 +04:00
|
|
|
talloc_free(frameset->name);
|
2012-03-24 21:11:17 +04:00
|
|
|
frameset->name = NULL;
|
|
|
|
}
|
|
|
|
if (frameset->url) {
|
2012-10-03 23:48:53 +04:00
|
|
|
talloc_free(frameset->url);
|
2012-03-24 21:11:17 +04:00
|
|
|
frameset->url = NULL;
|
|
|
|
}
|
|
|
|
if (frameset->children) {
|
|
|
|
for (i = 0; i < (frameset->rows * frameset->cols); i++) {
|
|
|
|
if (frameset->children[i].name) {
|
2012-10-03 23:48:53 +04:00
|
|
|
talloc_free(frameset->children[i].name);
|
2012-03-24 21:11:17 +04:00
|
|
|
frameset->children[i].name = NULL;
|
|
|
|
}
|
|
|
|
if (frameset->children[i].url) {
|
|
|
|
nsurl_unref(frameset->children[i].url);
|
|
|
|
frameset->children[i].url = NULL;
|
|
|
|
}
|
|
|
|
if (frameset->children[i].children)
|
|
|
|
html_destroy_frameset(&frameset->children[i]);
|
|
|
|
}
|
2012-10-03 23:48:53 +04:00
|
|
|
talloc_free(frameset->children);
|
2012-03-24 21:11:17 +04:00
|
|
|
frameset->children = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void html_destroy_iframe(struct content_html_iframe *iframe)
|
|
|
|
{
|
|
|
|
struct content_html_iframe *next;
|
|
|
|
next = iframe;
|
|
|
|
while ((iframe = next) != NULL) {
|
|
|
|
next = iframe->next;
|
|
|
|
if (iframe->name)
|
2012-10-03 23:48:53 +04:00
|
|
|
talloc_free(iframe->name);
|
2012-03-24 21:11:17 +04:00
|
|
|
if (iframe->url) {
|
|
|
|
nsurl_unref(iframe->url);
|
|
|
|
iframe->url = NULL;
|
|
|
|
}
|
2012-10-03 23:48:53 +04:00
|
|
|
talloc_free(iframe);
|
2012-10-03 22:24:58 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void html_free_layout(html_content *htmlc)
|
|
|
|
{
|
|
|
|
if (htmlc->bctx != NULL) {
|
|
|
|
/* freeing talloc context should let the entire box
|
|
|
|
* set be destroyed
|
|
|
|
*/
|
|
|
|
talloc_free(htmlc->bctx);
|
2012-03-24 21:11:17 +04:00
|
|
|
}
|
|
|
|
}
|
2011-07-07 21:50:04 +04:00
|
|
|
|
2004-02-20 03:43:17 +03:00
|
|
|
/**
|
|
|
|
* Destroy a CONTENT_HTML and free all resources it owns.
|
|
|
|
*/
|
|
|
|
|
2012-03-24 21:11:17 +04:00
|
|
|
static void html_destroy(struct content *c)
|
2003-02-09 15:58:15 +03:00
|
|
|
{
|
2011-05-07 00:40:09 +04:00
|
|
|
html_content *html = (html_content *) c;
|
2009-02-20 14:39:25 +03:00
|
|
|
struct form *f, *g;
|
|
|
|
|
2003-02-09 15:58:15 +03:00
|
|
|
LOG(("content %p", c));
|
|
|
|
|
2009-02-20 14:39:25 +03:00
|
|
|
/* Destroy forms */
|
2010-04-11 21:20:07 +04:00
|
|
|
for (f = html->forms; f != NULL; f = g) {
|
2009-02-20 14:39:25 +03:00
|
|
|
g = f->prev;
|
|
|
|
|
|
|
|
form_free(f);
|
|
|
|
}
|
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
imagemap_destroy(html);
|
2004-03-27 01:16:31 +03:00
|
|
|
|
2011-10-03 19:56:47 +04:00
|
|
|
if (c->refresh)
|
|
|
|
nsurl_unref(c->refresh);
|
|
|
|
|
|
|
|
if (html->base_url)
|
|
|
|
nsurl_unref(html->base_url);
|
|
|
|
|
2012-07-14 03:33:15 +04:00
|
|
|
if (html->parser != NULL) {
|
|
|
|
dom_hubbub_parser_destroy(html->parser);
|
|
|
|
html->parser = NULL;
|
2012-07-07 03:28:45 +04:00
|
|
|
}
|
2004-02-20 03:43:17 +03:00
|
|
|
|
2012-07-14 03:33:15 +04:00
|
|
|
if (html->document != NULL) {
|
|
|
|
dom_node_unref(html->document);
|
2013-05-23 18:02:15 +04:00
|
|
|
html->document = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (html->title != NULL) {
|
|
|
|
dom_node_unref(html->title);
|
|
|
|
html->title = NULL;
|
2012-07-14 03:33:15 +04:00
|
|
|
}
|
2008-09-09 01:55:20 +04:00
|
|
|
|
2013-10-23 21:55:51 +04:00
|
|
|
/* Free encoding */
|
|
|
|
if (html->encoding != NULL) {
|
|
|
|
free(html->encoding);
|
|
|
|
html->encoding = NULL;
|
|
|
|
}
|
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
/* Free base target */
|
2010-04-11 21:20:07 +04:00
|
|
|
if (html->base_target != NULL) {
|
2012-04-17 13:04:04 +04:00
|
|
|
free(html->base_target);
|
2010-04-11 21:20:07 +04:00
|
|
|
html->base_target = NULL;
|
2006-09-02 19:52:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Free frameset */
|
2010-04-11 21:20:07 +04:00
|
|
|
if (html->frameset != NULL) {
|
|
|
|
html_destroy_frameset(html->frameset);
|
2012-10-03 23:48:53 +04:00
|
|
|
talloc_free(html->frameset);
|
2010-04-11 21:20:07 +04:00
|
|
|
html->frameset = NULL;
|
2006-09-02 19:52:41 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Free iframes */
|
2010-04-11 21:20:07 +04:00
|
|
|
if (html->iframe != NULL) {
|
|
|
|
html_destroy_iframe(html->iframe);
|
|
|
|
html->iframe = NULL;
|
2006-09-02 19:52:41 +04:00
|
|
|
}
|
|
|
|
|
2009-07-24 03:05:34 +04:00
|
|
|
/* Destroy selection context */
|
2010-04-11 21:20:07 +04:00
|
|
|
if (html->select_ctx != NULL) {
|
|
|
|
css_select_ctx_destroy(html->select_ctx);
|
|
|
|
html->select_ctx = NULL;
|
2009-07-24 03:05:34 +04:00
|
|
|
}
|
|
|
|
|
2011-10-08 04:21:59 +04:00
|
|
|
if (html->universal != NULL) {
|
|
|
|
lwc_string_unref(html->universal);
|
|
|
|
html->universal = NULL;
|
|
|
|
}
|
|
|
|
|
2004-02-20 03:43:17 +03:00
|
|
|
/* Free stylesheets */
|
2013-02-24 17:15:05 +04:00
|
|
|
html_css_free_stylesheets(html);
|
2005-01-17 00:32:10 +03:00
|
|
|
|
2012-06-19 13:35:51 +04:00
|
|
|
/* Free scripts */
|
2012-07-27 16:53:14 +04:00
|
|
|
html_free_scripts(html);
|
2012-06-19 13:35:51 +04:00
|
|
|
|
2004-02-20 03:43:17 +03:00
|
|
|
/* Free objects */
|
2013-02-25 22:24:04 +04:00
|
|
|
html_object_free_objects(html);
|
2012-10-03 22:24:58 +04:00
|
|
|
|
|
|
|
/* free layout */
|
|
|
|
html_free_layout(html);
|
2011-08-20 05:13:51 +04:00
|
|
|
}
|
|
|
|
|
2006-09-02 19:52:41 +04:00
|
|
|
|
2012-03-24 21:11:17 +04:00
|
|
|
static nserror html_clone(const struct content *old, struct content **newc)
|
2010-04-04 16:41:19 +04:00
|
|
|
{
|
|
|
|
/** \todo Clone HTML specifics */
|
2010-04-10 16:36:21 +04:00
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
/* In the meantime, we should never be called, as HTML contents
|
|
|
|
* cannot be shared and we're not intending to fix printing's
|
2010-04-10 16:36:21 +04:00
|
|
|
* cloning of documents. */
|
|
|
|
assert(0 && "html_clone should never be called");
|
|
|
|
|
2010-04-04 16:41:19 +04:00
|
|
|
return true;
|
|
|
|
}
|
2004-08-12 02:08:26 +04:00
|
|
|
|
2007-01-13 03:21:15 +03:00
|
|
|
/**
|
|
|
|
* Set the content status.
|
|
|
|
*/
|
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
void html_set_status(html_content *c, const char *extra)
|
2007-01-13 03:21:15 +03:00
|
|
|
{
|
2012-08-15 14:50:08 +04:00
|
|
|
content_set_status(&c->base, extra);
|
2007-01-13 03:21:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-08-12 02:08:26 +04:00
|
|
|
/**
|
|
|
|
* Handle a window containing a CONTENT_HTML being opened.
|
|
|
|
*/
|
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
static void
|
|
|
|
html_open(struct content *c,
|
2012-03-24 21:11:17 +04:00
|
|
|
struct browser_window *bw,
|
2012-07-06 23:00:32 +04:00
|
|
|
struct content *page,
|
2012-03-24 21:11:17 +04:00
|
|
|
struct object_params *params)
|
2004-08-12 02:08:26 +04:00
|
|
|
{
|
2011-05-07 00:40:09 +04:00
|
|
|
html_content *html = (html_content *) c;
|
2011-03-11 02:08:34 +03:00
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
html->bw = bw;
|
|
|
|
html->page = (html_content *) page;
|
2011-03-11 02:08:34 +03:00
|
|
|
|
2013-02-22 16:19:35 +04:00
|
|
|
html->drag_type = HTML_DRAG_NONE;
|
|
|
|
html->drag_owner.no_owner = true;
|
|
|
|
|
2011-07-13 17:20:26 +04:00
|
|
|
/* text selection */
|
|
|
|
selection_init(&html->sel, html->layout);
|
2013-02-22 16:19:35 +04:00
|
|
|
html->selection_type = HTML_SELECTION_NONE;
|
|
|
|
html->selection_owner.none = true;
|
2011-07-01 15:16:43 +04:00
|
|
|
|
2013-02-25 22:24:04 +04:00
|
|
|
html_object_open_objects(html, bw);
|
2004-08-12 02:08:26 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle a window containing a CONTENT_HTML being closed.
|
|
|
|
*/
|
|
|
|
|
2012-03-24 21:11:17 +04:00
|
|
|
static void html_close(struct content *c)
|
2004-08-12 02:08:26 +04:00
|
|
|
{
|
2011-05-07 00:40:09 +04:00
|
|
|
html_content *html = (html_content *) c;
|
2011-02-16 00:49:28 +03:00
|
|
|
|
2013-02-22 16:19:35 +04:00
|
|
|
selection_clear(&html->sel, false);
|
|
|
|
|
2011-08-24 16:29:30 +04:00
|
|
|
if (html->search != NULL)
|
|
|
|
search_destroy_context(html->search);
|
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
html->bw = NULL;
|
2011-02-16 00:49:28 +03:00
|
|
|
|
2013-02-25 22:24:04 +04:00
|
|
|
html_object_close_objects(html);
|
2004-08-12 02:08:26 +04:00
|
|
|
}
|
2007-01-25 02:16:02 +03:00
|
|
|
|
2011-07-13 17:20:26 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return an HTML content's selection context
|
|
|
|
*/
|
|
|
|
|
2013-02-22 16:19:35 +04:00
|
|
|
static void html_clear_selection(struct content *c)
|
|
|
|
{
|
|
|
|
html_content *html = (html_content *) c;
|
|
|
|
|
|
|
|
switch (html->selection_type) {
|
|
|
|
case HTML_SELECTION_NONE:
|
|
|
|
/* Nothing to do */
|
|
|
|
assert(html->selection_owner.none == true);
|
|
|
|
break;
|
|
|
|
case HTML_SELECTION_TEXTAREA:
|
|
|
|
textarea_clear_selection(html->selection_owner.textarea->
|
|
|
|
gadget->data.text.ta);
|
|
|
|
break;
|
|
|
|
case HTML_SELECTION_SELF:
|
|
|
|
assert(html->selection_owner.none == false);
|
|
|
|
selection_clear(&html->sel, true);
|
|
|
|
break;
|
|
|
|
case HTML_SELECTION_CONTENT:
|
|
|
|
content_clear_selection(html->selection_owner.content->object);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* There is no selection now. */
|
|
|
|
html->selection_type = HTML_SELECTION_NONE;
|
|
|
|
html->selection_owner.none = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return an HTML content's selection context
|
|
|
|
*/
|
|
|
|
|
|
|
|
static char *html_get_selection(struct content *c)
|
2011-07-13 17:20:26 +04:00
|
|
|
{
|
|
|
|
html_content *html = (html_content *) c;
|
|
|
|
|
2013-02-22 16:19:35 +04:00
|
|
|
switch (html->selection_type) {
|
|
|
|
case HTML_SELECTION_TEXTAREA:
|
|
|
|
return textarea_get_selection(html->selection_owner.textarea->
|
|
|
|
gadget->data.text.ta);
|
|
|
|
case HTML_SELECTION_SELF:
|
|
|
|
assert(html->selection_owner.none == false);
|
|
|
|
return selection_get_copy(&html->sel);
|
|
|
|
case HTML_SELECTION_CONTENT:
|
|
|
|
return content_get_selection(
|
|
|
|
html->selection_owner.content->object);
|
|
|
|
case HTML_SELECTION_NONE:
|
|
|
|
/* Nothing to do */
|
|
|
|
assert(html->selection_owner.none == true);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
2011-07-13 17:20:26 +04:00
|
|
|
}
|
|
|
|
|
2011-08-24 16:29:30 +04:00
|
|
|
|
2011-09-06 22:08:18 +04:00
|
|
|
/**
|
|
|
|
* Get access to any content, link URLs and objects (images) currently
|
|
|
|
* at the given (x, y) coordinates.
|
|
|
|
*
|
|
|
|
* \param c html content to look inside
|
|
|
|
* \param x x-coordinate of point of interest
|
|
|
|
* \param y y-coordinate of point of interest
|
|
|
|
* \param data pointer to contextual_content struct. Its fields are updated
|
|
|
|
* with pointers to any relevent content, or set to NULL if none.
|
|
|
|
*/
|
2012-07-06 23:00:32 +04:00
|
|
|
static void
|
2012-03-24 21:11:17 +04:00
|
|
|
html_get_contextual_content(struct content *c,
|
2012-07-06 23:00:32 +04:00
|
|
|
int x,
|
|
|
|
int y,
|
2012-03-24 21:11:17 +04:00
|
|
|
struct contextual_content *data)
|
2011-09-06 22:08:18 +04:00
|
|
|
{
|
|
|
|
html_content *html = (html_content *) c;
|
|
|
|
|
|
|
|
struct box *box = html->layout;
|
|
|
|
struct box *next;
|
|
|
|
int box_x = 0, box_y = 0;
|
|
|
|
|
2012-08-21 18:27:52 +04:00
|
|
|
while ((next = box_at_point(box, x, y, &box_x, &box_y)) != NULL) {
|
2011-09-06 22:08:18 +04:00
|
|
|
box = next;
|
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
if (box->style && css_computed_visibility(box->style) ==
|
2011-09-06 22:08:18 +04:00
|
|
|
CSS_VISIBILITY_HIDDEN)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (box->iframe)
|
|
|
|
browser_window_get_contextual_content(box->iframe,
|
|
|
|
x - box_x, y - box_y, data);
|
|
|
|
|
2012-08-21 18:27:52 +04:00
|
|
|
if (box->object)
|
|
|
|
content_get_contextual_content(box->object,
|
|
|
|
x - box_x, y - box_y, data);
|
|
|
|
|
2011-09-06 22:08:18 +04:00
|
|
|
if (box->object)
|
|
|
|
data->object = box->object;
|
|
|
|
|
|
|
|
if (box->href)
|
2011-10-04 00:28:29 +04:00
|
|
|
data->link_url = nsurl_access(box->href);
|
2011-09-06 22:08:18 +04:00
|
|
|
|
|
|
|
if (box->usemap) {
|
|
|
|
const char *target = NULL;
|
2012-11-22 21:40:20 +04:00
|
|
|
nsurl *url = imagemap_get(html, box->usemap, box_x,
|
|
|
|
box_y, x, y, &target);
|
|
|
|
/* Box might have imagemap, but no actual link area
|
|
|
|
* at point */
|
|
|
|
if (url != NULL)
|
|
|
|
data->link_url = nsurl_access(url);
|
2011-09-06 22:08:18 +04:00
|
|
|
}
|
2012-08-21 01:02:37 +04:00
|
|
|
if (box->gadget) {
|
|
|
|
switch (box->gadget->type) {
|
|
|
|
case GADGET_TEXTBOX:
|
|
|
|
case GADGET_TEXTAREA:
|
|
|
|
case GADGET_PASSWORD:
|
|
|
|
data->form_features = CTX_FORM_TEXT;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GADGET_FILE:
|
|
|
|
data->form_features = CTX_FORM_FILE;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
data->form_features = CTX_FORM_NONE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2011-09-06 22:08:18 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-29 21:47:29 +04:00
|
|
|
/**
|
|
|
|
* Scroll deepest thing within the content which can be scrolled at given point
|
|
|
|
*
|
|
|
|
* \param c html content to look inside
|
|
|
|
* \param x x-coordinate of point of interest
|
|
|
|
* \param y y-coordinate of point of interest
|
2013-02-08 19:10:39 +04:00
|
|
|
* \param scrx number of px try to scroll something in x direction
|
|
|
|
* \param scry number of px try to scroll something in y direction
|
2011-11-29 21:47:29 +04:00
|
|
|
* \return true iff scroll was consumed by something in the content
|
|
|
|
*/
|
2012-07-06 23:00:32 +04:00
|
|
|
static bool
|
2012-03-24 21:11:17 +04:00
|
|
|
html_scroll_at_point(struct content *c, int x, int y, int scrx, int scry)
|
2011-11-29 21:47:29 +04:00
|
|
|
{
|
|
|
|
html_content *html = (html_content *) c;
|
|
|
|
|
|
|
|
struct box *box = html->layout;
|
|
|
|
struct box *next;
|
|
|
|
int box_x = 0, box_y = 0;
|
|
|
|
bool handled_scroll = false;
|
|
|
|
|
|
|
|
/* TODO: invert order; visit deepest box first */
|
|
|
|
|
2012-08-21 18:27:52 +04:00
|
|
|
while ((next = box_at_point(box, x, y, &box_x, &box_y)) != NULL) {
|
2011-11-29 21:47:29 +04:00
|
|
|
box = next;
|
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
if (box->style && css_computed_visibility(box->style) ==
|
2011-11-29 21:47:29 +04:00
|
|
|
CSS_VISIBILITY_HIDDEN)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
/* Pass into iframe */
|
|
|
|
if (box->iframe && browser_window_scroll_at_point(box->iframe,
|
|
|
|
x - box_x, y - box_y, scrx, scry) == true)
|
2013-02-08 19:26:24 +04:00
|
|
|
return true;
|
|
|
|
|
|
|
|
/* Pass into textarea widget */
|
|
|
|
if (box->gadget && (box->gadget->type == GADGET_TEXTAREA ||
|
|
|
|
box->gadget->type == GADGET_PASSWORD ||
|
|
|
|
box->gadget->type == GADGET_TEXTBOX) &&
|
|
|
|
textarea_scroll(box->gadget->data.text.ta,
|
|
|
|
scrx, scry) == true)
|
2011-11-29 21:47:29 +04:00
|
|
|
return true;
|
|
|
|
|
2012-08-21 18:27:52 +04:00
|
|
|
/* Pass into object */
|
|
|
|
if (box->object != NULL && content_scroll_at_point(
|
|
|
|
box->object, x - box_x, y - box_y,
|
|
|
|
scrx, scry) == true)
|
|
|
|
return true;
|
|
|
|
|
2011-11-29 21:47:29 +04:00
|
|
|
/* Handle box scrollbars */
|
|
|
|
if (box->scroll_y && scrollbar_scroll(box->scroll_y, scry))
|
|
|
|
handled_scroll = true;
|
|
|
|
|
|
|
|
if (box->scroll_x && scrollbar_scroll(box->scroll_x, scrx))
|
|
|
|
handled_scroll = true;
|
|
|
|
|
|
|
|
if (handled_scroll == true)
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-01-04 20:30:52 +04:00
|
|
|
/** Helper for file gadgets to store their filename unencoded on the
|
|
|
|
* dom node associated with the gadget.
|
|
|
|
*
|
|
|
|
* \todo Get rid of this crap eventually
|
|
|
|
*/
|
|
|
|
static void html__dom_user_data_handler(dom_node_operation operation,
|
|
|
|
dom_string *key, void *_data, struct dom_node *src,
|
|
|
|
struct dom_node *dst)
|
|
|
|
{
|
|
|
|
char *oldfile;
|
|
|
|
char *data = (char *)_data;
|
|
|
|
|
2014-01-05 20:14:17 +04:00
|
|
|
if (!dom_string_isequal(corestring_dom___ns_key_file_name_node_data,
|
2014-01-04 20:30:52 +04:00
|
|
|
key) || data == NULL) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (operation) {
|
|
|
|
case DOM_NODE_CLONED:
|
|
|
|
if (dom_node_set_user_data(dst,
|
|
|
|
corestring_dom___ns_key_file_name_node_data,
|
|
|
|
strdup(data), html__dom_user_data_handler,
|
|
|
|
&oldfile) == DOM_NO_ERR) {
|
|
|
|
if (oldfile != NULL)
|
|
|
|
free(oldfile);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DOM_NODE_RENAMED:
|
|
|
|
case DOM_NODE_IMPORTED:
|
|
|
|
case DOM_NODE_ADOPTED:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case DOM_NODE_DELETED:
|
|
|
|
free(data);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
LOG(("User data operation not handled."));
|
|
|
|
assert(0);
|
|
|
|
}
|
|
|
|
}
|
2011-11-29 21:47:29 +04:00
|
|
|
|
2014-01-05 20:04:35 +04:00
|
|
|
static void html__set_file_gadget_filename(struct content *c,
|
|
|
|
struct form_control *gadget, const char *fn)
|
|
|
|
{
|
2014-01-29 01:40:13 +04:00
|
|
|
nserror ret;
|
2014-01-05 20:04:35 +04:00
|
|
|
char *utf8_fn, *oldfile = NULL;
|
|
|
|
html_content *html = (html_content *)c;
|
|
|
|
struct box *file_box = gadget->box;
|
2014-03-11 02:19:23 +04:00
|
|
|
|
|
|
|
ret = guit->utf8->local_to_utf8(fn, 0, &utf8_fn);
|
2014-01-29 01:40:13 +04:00
|
|
|
if (ret != NSERROR_OK) {
|
|
|
|
assert(ret != NSERROR_BAD_ENCODING);
|
2014-02-02 02:17:36 +04:00
|
|
|
LOG(("utf8 to local encoding conversion failed"));
|
2014-01-05 20:04:35 +04:00
|
|
|
/* Load was for us - just no memory */
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-02-08 21:11:55 +04:00
|
|
|
form_gadget_update_value(gadget, utf8_fn);
|
2014-01-05 20:04:35 +04:00
|
|
|
|
|
|
|
/* corestring_dom___ns_key_file_name_node_data */
|
|
|
|
if (dom_node_set_user_data((dom_node *)file_box->gadget->node,
|
|
|
|
corestring_dom___ns_key_file_name_node_data,
|
|
|
|
strdup(fn), html__dom_user_data_handler,
|
|
|
|
&oldfile) == DOM_NO_ERR) {
|
|
|
|
if (oldfile != NULL)
|
|
|
|
free(oldfile);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Redraw box. */
|
|
|
|
html__redraw_a_box(html, file_box);
|
|
|
|
}
|
|
|
|
|
|
|
|
void html_set_file_gadget_filename(struct hlcache_handle *hl,
|
|
|
|
struct form_control *gadget, const char *fn)
|
|
|
|
{
|
|
|
|
return html__set_file_gadget_filename(hlcache_handle_get_content(hl),
|
|
|
|
gadget, fn);
|
|
|
|
}
|
|
|
|
|
2011-12-02 01:49:57 +04:00
|
|
|
/**
|
2012-08-20 15:12:10 +04:00
|
|
|
* Drop a file onto a content at a particular point, or determine if a file
|
|
|
|
* may be dropped onto the content at given point.
|
2011-12-02 01:49:57 +04:00
|
|
|
*
|
|
|
|
* \param c html content to look inside
|
|
|
|
* \param x x-coordinate of point of interest
|
|
|
|
* \param y y-coordinate of point of interest
|
2012-08-20 15:12:10 +04:00
|
|
|
* \param file path to file to be dropped, or NULL to know if drop allowed
|
|
|
|
* \return true iff file drop has been handled, or if drop possible (NULL file)
|
2011-12-02 01:49:57 +04:00
|
|
|
*/
|
2012-03-24 21:11:17 +04:00
|
|
|
static bool html_drop_file_at_point(struct content *c, int x, int y, char *file)
|
2011-12-02 01:49:57 +04:00
|
|
|
{
|
|
|
|
html_content *html = (html_content *) c;
|
|
|
|
|
|
|
|
struct box *box = html->layout;
|
|
|
|
struct box *next;
|
|
|
|
struct box *file_box = NULL;
|
|
|
|
struct box *text_box = NULL;
|
|
|
|
int box_x = 0, box_y = 0;
|
|
|
|
|
|
|
|
/* Scan box tree for boxes that can handle drop */
|
2012-08-21 18:27:52 +04:00
|
|
|
while ((next = box_at_point(box, x, y, &box_x, &box_y)) != NULL) {
|
2011-12-02 01:49:57 +04:00
|
|
|
box = next;
|
|
|
|
|
|
|
|
if (box->style && css_computed_visibility(box->style) ==
|
|
|
|
CSS_VISIBILITY_HIDDEN)
|
|
|
|
continue;
|
|
|
|
|
2011-12-02 03:52:45 +04:00
|
|
|
if (box->iframe)
|
|
|
|
return browser_window_drop_file_at_point(box->iframe,
|
|
|
|
x - box_x, y - box_y, file);
|
|
|
|
|
2012-08-21 18:27:52 +04:00
|
|
|
if (box->object && content_drop_file_at_point(box->object,
|
|
|
|
x - box_x, y - box_y, file) == true)
|
|
|
|
return true;
|
|
|
|
|
2011-12-02 01:49:57 +04:00
|
|
|
if (box->gadget) {
|
|
|
|
switch (box->gadget->type) {
|
|
|
|
case GADGET_FILE:
|
|
|
|
file_box = box;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case GADGET_TEXTBOX:
|
|
|
|
case GADGET_TEXTAREA:
|
|
|
|
case GADGET_PASSWORD:
|
|
|
|
text_box = box;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default: /* appease compiler */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!file_box && !text_box)
|
|
|
|
/* No box capable of handling drop */
|
|
|
|
return false;
|
|
|
|
|
2012-08-20 15:12:10 +04:00
|
|
|
if (file == NULL)
|
|
|
|
/* There is a box capable of handling drop here */
|
|
|
|
return true;
|
|
|
|
|
2011-12-02 01:49:57 +04:00
|
|
|
/* Handle the drop */
|
|
|
|
if (file_box) {
|
|
|
|
/* File dropped on file input */
|
2014-03-11 02:25:36 +04:00
|
|
|
html__set_file_gadget_filename(c, file_box->gadget, file);
|
2011-12-02 01:49:57 +04:00
|
|
|
|
2013-02-08 20:05:44 +04:00
|
|
|
} else {
|
2011-12-02 01:49:57 +04:00
|
|
|
/* File dropped on text input */
|
|
|
|
|
|
|
|
size_t file_len;
|
|
|
|
FILE *fp = NULL;
|
|
|
|
char *buffer;
|
|
|
|
char *utf8_buff;
|
2014-01-29 01:40:13 +04:00
|
|
|
nserror ret;
|
2011-12-02 01:49:57 +04:00
|
|
|
unsigned int size;
|
2013-02-08 20:05:44 +04:00
|
|
|
int bx, by;
|
2011-12-02 01:49:57 +04:00
|
|
|
|
|
|
|
/* Open file */
|
|
|
|
fp = fopen(file, "rb");
|
|
|
|
if (fp == NULL) {
|
|
|
|
/* Couldn't open file, but drop was for us */
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get filesize */
|
|
|
|
fseek(fp, 0, SEEK_END);
|
|
|
|
file_len = ftell(fp);
|
|
|
|
fseek(fp, 0, SEEK_SET);
|
|
|
|
|
|
|
|
/* Allocate buffer for file data */
|
|
|
|
buffer = malloc(file_len + 1);
|
|
|
|
if (buffer == NULL) {
|
|
|
|
/* No memory, but drop was for us */
|
|
|
|
fclose(fp);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Stick file into buffer */
|
|
|
|
if (file_len != fread(buffer, 1, file_len, fp)) {
|
|
|
|
/* Failed, but drop was for us */
|
|
|
|
free(buffer);
|
|
|
|
fclose(fp);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Done with file */
|
|
|
|
fclose(fp);
|
|
|
|
|
|
|
|
/* Ensure buffer's string termination */
|
|
|
|
buffer[file_len] = '\0';
|
|
|
|
|
|
|
|
/* TODO: Sniff for text? */
|
|
|
|
|
|
|
|
/* Convert to UTF-8 */
|
2014-02-02 02:17:36 +04:00
|
|
|
ret = guit->utf8->local_to_utf8(buffer, file_len, &utf8_buff);
|
2014-01-29 01:40:13 +04:00
|
|
|
if (ret != NSERROR_OK) {
|
2011-12-02 01:49:57 +04:00
|
|
|
/* bad encoding shouldn't happen */
|
2014-01-29 01:40:13 +04:00
|
|
|
assert(ret != NSERROR_BAD_ENCODING);
|
2014-02-02 02:17:36 +04:00
|
|
|
LOG(("local to utf8 encoding failed"));
|
2011-12-02 01:49:57 +04:00
|
|
|
free(buffer);
|
|
|
|
warn_user("NoMemory", NULL);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Done with buffer */
|
|
|
|
free(buffer);
|
|
|
|
|
|
|
|
/* Get new length */
|
|
|
|
size = strlen(utf8_buff);
|
|
|
|
|
|
|
|
/* Simulate a click over the input box, to place caret */
|
2013-02-08 20:05:44 +04:00
|
|
|
box_coords(text_box, &bx, &by);
|
|
|
|
textarea_mouse_action(text_box->gadget->data.text.ta,
|
|
|
|
BROWSER_MOUSE_PRESS_1, x - bx, y - by);
|
2011-12-02 03:52:45 +04:00
|
|
|
|
2011-12-02 01:49:57 +04:00
|
|
|
/* Paste the file as text */
|
2013-02-08 20:05:44 +04:00
|
|
|
textarea_drop_text(text_box->gadget->data.text.ta,
|
|
|
|
utf8_buff, size);
|
2011-12-02 01:49:57 +04:00
|
|
|
|
|
|
|
free(utf8_buff);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-20 19:04:44 +04:00
|
|
|
/**
|
|
|
|
* Dump debug info concerning the html_content
|
|
|
|
*
|
2014-08-04 03:36:14 +04:00
|
|
|
* \param bw The browser window
|
|
|
|
* \param f The file to dump to
|
2012-08-20 19:04:44 +04:00
|
|
|
*/
|
2014-08-04 03:36:14 +04:00
|
|
|
static nserror
|
|
|
|
html_debug_dump(struct content *c, FILE *f, enum content_debug op)
|
2012-08-20 19:04:44 +04:00
|
|
|
{
|
2014-08-04 03:36:14 +04:00
|
|
|
html_content *htmlc = (html_content *)c;
|
|
|
|
dom_node *html;
|
|
|
|
dom_exception exc; /* returned by libdom functions */
|
|
|
|
nserror ret;
|
|
|
|
|
|
|
|
assert(htmlc != NULL);
|
2012-08-20 19:04:44 +04:00
|
|
|
|
2014-08-04 03:36:14 +04:00
|
|
|
if (op == CONTENT_DEBUG_RENDER) {
|
|
|
|
assert(htmlc->layout != NULL);
|
|
|
|
box_dump(f, htmlc->layout, 0, true);
|
|
|
|
ret = NSERROR_OK;
|
|
|
|
} else {
|
|
|
|
if (htmlc->document == NULL) {
|
|
|
|
LOG(("No document to dump"));
|
|
|
|
return NSERROR_DOM;
|
|
|
|
}
|
|
|
|
|
|
|
|
exc = dom_document_get_document_element(htmlc->document, (void *) &html);
|
|
|
|
if ((exc != DOM_NO_ERR) || (html == NULL)) {
|
|
|
|
LOG(("Unable to obtain root node"));
|
|
|
|
return NSERROR_DOM;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = libdom_dump_structure(html, f, 0);
|
|
|
|
|
|
|
|
LOG(("DOM structure dump returning %d", ret));
|
|
|
|
|
|
|
|
dom_node_unref(html);
|
|
|
|
}
|
2012-08-20 19:04:44 +04:00
|
|
|
|
2014-08-04 03:36:14 +04:00
|
|
|
return ret;
|
2012-08-20 19:04:44 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-10-10 14:56:34 +04:00
|
|
|
#if ALWAYS_DUMP_FRAMESET
|
2007-01-25 02:16:02 +03:00
|
|
|
/**
|
|
|
|
* Print a frameset tree to stderr.
|
|
|
|
*/
|
|
|
|
|
2012-07-06 23:00:32 +04:00
|
|
|
static void
|
2012-03-24 21:11:17 +04:00
|
|
|
html_dump_frameset(struct content_html_frames *frame, unsigned int depth)
|
2007-01-25 02:16:02 +03:00
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
int row, col, index;
|
|
|
|
const char *unit[] = {"px", "%", "*"};
|
|
|
|
const char *scrolling[] = {"auto", "yes", "no"};
|
|
|
|
|
|
|
|
assert(frame);
|
|
|
|
|
|
|
|
fprintf(stderr, "%p ", frame);
|
|
|
|
|
|
|
|
fprintf(stderr, "(%i %i) ", frame->rows, frame->cols);
|
|
|
|
|
|
|
|
fprintf(stderr, "w%g%s ", frame->width.value, unit[frame->width.unit]);
|
|
|
|
fprintf(stderr, "h%g%s ", frame->height.value,unit[frame->height.unit]);
|
|
|
|
fprintf(stderr, "(margin w%i h%i) ",
|
|
|
|
frame->margin_width, frame->margin_height);
|
|
|
|
|
|
|
|
if (frame->name)
|
|
|
|
fprintf(stderr, "'%s' ", frame->name);
|
|
|
|
if (frame->url)
|
|
|
|
fprintf(stderr, "<%s> ", frame->url);
|
|
|
|
|
|
|
|
if (frame->no_resize)
|
|
|
|
fprintf(stderr, "noresize ");
|
|
|
|
fprintf(stderr, "(scrolling %s) ", scrolling[frame->scrolling]);
|
|
|
|
if (frame->border)
|
|
|
|
fprintf(stderr, "border %x ",
|
|
|
|
(unsigned int) frame->border_colour);
|
|
|
|
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
|
|
|
|
if (frame->children) {
|
|
|
|
for (row = 0; row != frame->rows; row++) {
|
|
|
|
for (col = 0; col != frame->cols; col++) {
|
|
|
|
for (i = 0; i != depth; i++)
|
|
|
|
fprintf(stderr, " ");
|
|
|
|
fprintf(stderr, "(%i %i): ", row, col);
|
|
|
|
index = (row * frame->cols) + col;
|
|
|
|
html_dump_frameset(&frame->children[index],
|
|
|
|
depth + 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-10-10 14:56:34 +04:00
|
|
|
|
|
|
|
#endif
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve HTML document tree
|
|
|
|
*
|
|
|
|
* \param h HTML content to retrieve document tree from
|
|
|
|
* \return Pointer to document tree
|
|
|
|
*/
|
2012-03-24 03:18:04 +04:00
|
|
|
dom_document *html_get_document(hlcache_handle *h)
|
2010-03-28 16:56:39 +04:00
|
|
|
{
|
2011-05-07 00:40:09 +04:00
|
|
|
html_content *c = (html_content *) hlcache_handle_get_content(h);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
assert(c != NULL);
|
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
return c->document;
|
2010-03-28 16:56:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve box tree
|
|
|
|
*
|
|
|
|
* \param h HTML content to retrieve tree from
|
|
|
|
* \return Pointer to box tree
|
|
|
|
*
|
|
|
|
* \todo This API must die, as must all use of the box tree outside render/
|
|
|
|
*/
|
|
|
|
struct box *html_get_box_tree(hlcache_handle *h)
|
|
|
|
{
|
2011-05-07 00:40:09 +04:00
|
|
|
html_content *c = (html_content *) hlcache_handle_get_content(h);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
assert(c != NULL);
|
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
return c->layout;
|
2010-03-28 16:56:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve the charset of an HTML document
|
|
|
|
*
|
|
|
|
* \param h Content to retrieve charset from
|
|
|
|
* \return Pointer to charset, or NULL
|
|
|
|
*/
|
|
|
|
const char *html_get_encoding(hlcache_handle *h)
|
|
|
|
{
|
2011-05-07 00:40:09 +04:00
|
|
|
html_content *c = (html_content *) hlcache_handle_get_content(h);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
assert(c != NULL);
|
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
return c->encoding;
|
2010-03-28 16:56:39 +04:00
|
|
|
}
|
|
|
|
|
2010-04-07 17:12:27 +04:00
|
|
|
/**
|
|
|
|
* Retrieve the charset of an HTML document
|
|
|
|
*
|
|
|
|
* \param h Content to retrieve charset from
|
|
|
|
* \return Pointer to charset, or NULL
|
|
|
|
*/
|
2012-07-14 03:33:15 +04:00
|
|
|
dom_hubbub_encoding_source html_get_encoding_source(hlcache_handle *h)
|
2010-04-07 17:12:27 +04:00
|
|
|
{
|
2011-05-07 00:40:09 +04:00
|
|
|
html_content *c = (html_content *) hlcache_handle_get_content(h);
|
2010-04-07 17:12:27 +04:00
|
|
|
|
|
|
|
assert(c != NULL);
|
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
return c->encoding_source;
|
2010-04-07 17:12:27 +04:00
|
|
|
}
|
|
|
|
|
2010-03-28 16:56:39 +04:00
|
|
|
/**
|
|
|
|
* Retrieve framesets used in an HTML document
|
|
|
|
*
|
|
|
|
* \param h Content to inspect
|
|
|
|
* \return Pointer to framesets, or NULL if none
|
|
|
|
*/
|
|
|
|
struct content_html_frames *html_get_frameset(hlcache_handle *h)
|
|
|
|
{
|
2011-05-07 00:40:09 +04:00
|
|
|
html_content *c = (html_content *) hlcache_handle_get_content(h);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
assert(c != NULL);
|
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
return c->frameset;
|
2010-03-28 16:56:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve iframes used in an HTML document
|
|
|
|
*
|
|
|
|
* \param h Content to inspect
|
|
|
|
* \return Pointer to iframes, or NULL if none
|
|
|
|
*/
|
|
|
|
struct content_html_iframe *html_get_iframe(hlcache_handle *h)
|
|
|
|
{
|
2011-05-07 00:40:09 +04:00
|
|
|
html_content *c = (html_content *) hlcache_handle_get_content(h);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
assert(c != NULL);
|
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
return c->iframe;
|
2010-03-28 16:56:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve an HTML content's base URL
|
|
|
|
*
|
|
|
|
* \param h Content to retrieve base target from
|
|
|
|
* \return Pointer to URL
|
|
|
|
*/
|
2011-10-03 19:56:47 +04:00
|
|
|
nsurl *html_get_base_url(hlcache_handle *h)
|
2010-03-28 16:56:39 +04:00
|
|
|
{
|
2011-05-07 00:40:09 +04:00
|
|
|
html_content *c = (html_content *) hlcache_handle_get_content(h);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
assert(c != NULL);
|
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
return c->base_url;
|
2010-03-28 16:56:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Retrieve an HTML content's base target
|
|
|
|
*
|
|
|
|
* \param h Content to retrieve base target from
|
|
|
|
* \return Pointer to target, or NULL if none
|
|
|
|
*/
|
|
|
|
const char *html_get_base_target(hlcache_handle *h)
|
|
|
|
{
|
2011-05-07 00:40:09 +04:00
|
|
|
html_content *c = (html_content *) hlcache_handle_get_content(h);
|
2010-03-28 16:56:39 +04:00
|
|
|
|
|
|
|
assert(c != NULL);
|
|
|
|
|
2011-05-07 00:40:09 +04:00
|
|
|
return c->base_target;
|
2010-03-28 16:56:39 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-04 13:35:08 +04:00
|
|
|
/**
|
|
|
|
* Retrieve layout coordinates of box with given id
|
|
|
|
*
|
|
|
|
* \param h HTML document to search
|
|
|
|
* \param frag_id String containing an element id
|
|
|
|
* \param x Updated to global x coord iff id found
|
|
|
|
* \param y Updated to global y coord iff id found
|
|
|
|
* \return true iff id found
|
|
|
|
*/
|
2011-10-29 15:37:05 +04:00
|
|
|
bool html_get_id_offset(hlcache_handle *h, lwc_string *frag_id, int *x, int *y)
|
2010-06-04 13:35:08 +04:00
|
|
|
{
|
|
|
|
struct box *pos;
|
2010-10-11 10:54:37 +04:00
|
|
|
struct box *layout;
|
2010-06-04 13:35:08 +04:00
|
|
|
|
|
|
|
if (content_get_type(h) != CONTENT_HTML)
|
|
|
|
return false;
|
|
|
|
|
2010-10-11 10:54:37 +04:00
|
|
|
layout = html_get_box_tree(h);
|
|
|
|
|
2010-06-04 13:35:08 +04:00
|
|
|
if ((pos = box_find_by_id(layout, frag_id)) != 0) {
|
|
|
|
box_coords(pos, x, y);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2011-05-07 00:40:09 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Compute the type of a content
|
|
|
|
*
|
|
|
|
* \return CONTENT_HTML
|
|
|
|
*/
|
2012-03-24 21:11:17 +04:00
|
|
|
static content_type html_content_type(void)
|
2011-05-07 00:40:09 +04:00
|
|
|
{
|
|
|
|
return CONTENT_HTML;
|
|
|
|
}
|
|
|
|
|
2012-03-24 21:11:17 +04:00
|
|
|
|
|
|
|
static void html_fini(void)
|
|
|
|
{
|
2013-02-24 17:15:05 +04:00
|
|
|
html_css_fini();
|
2012-03-24 21:11:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static const content_handler html_content_handler = {
|
|
|
|
.fini = html_fini,
|
|
|
|
.create = html_create,
|
|
|
|
.process_data = html_process_data,
|
|
|
|
.data_complete = html_convert,
|
|
|
|
.reformat = html_reformat,
|
|
|
|
.destroy = html_destroy,
|
|
|
|
.stop = html_stop,
|
|
|
|
.mouse_track = html_mouse_track,
|
|
|
|
.mouse_action = html_mouse_action,
|
2013-02-22 16:19:35 +04:00
|
|
|
.keypress = html_keypress,
|
2012-03-24 21:11:17 +04:00
|
|
|
.redraw = html_redraw,
|
|
|
|
.open = html_open,
|
|
|
|
.close = html_close,
|
|
|
|
.get_selection = html_get_selection,
|
2013-02-22 16:19:35 +04:00
|
|
|
.clear_selection = html_clear_selection,
|
2012-03-24 21:11:17 +04:00
|
|
|
.get_contextual_content = html_get_contextual_content,
|
|
|
|
.scroll_at_point = html_scroll_at_point,
|
|
|
|
.drop_file_at_point = html_drop_file_at_point,
|
2013-05-07 17:41:40 +04:00
|
|
|
.search = html_search,
|
|
|
|
.search_clear = html_search_clear,
|
2012-08-20 19:04:44 +04:00
|
|
|
.debug_dump = html_debug_dump,
|
2012-03-24 21:11:17 +04:00
|
|
|
.clone = html_clone,
|
|
|
|
.type = html_content_type,
|
|
|
|
.no_share = true,
|
|
|
|
};
|
|
|
|
|
|
|
|
nserror html_init(void)
|
|
|
|
{
|
|
|
|
uint32_t i;
|
|
|
|
nserror error;
|
|
|
|
|
2013-02-24 17:15:05 +04:00
|
|
|
error = html_css_init();
|
2012-03-24 21:11:17 +04:00
|
|
|
if (error != NSERROR_OK)
|
|
|
|
goto error;
|
|
|
|
|
|
|
|
for (i = 0; i < NOF_ELEMENTS(html_types); i++) {
|
|
|
|
error = content_factory_register_handler(html_types[i],
|
|
|
|
&html_content_handler);
|
|
|
|
if (error != NSERROR_OK)
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NSERROR_OK;
|
|
|
|
|
|
|
|
error:
|
|
|
|
html_fini();
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2011-07-26 17:53:42 +04:00
|
|
|
/**
|
|
|
|
* Get the browser window containing an HTML content
|
|
|
|
*
|
|
|
|
* \param c HTML content
|
|
|
|
* \return the browser window
|
|
|
|
*/
|
|
|
|
struct browser_window *html_get_browser_window(struct content *c)
|
|
|
|
{
|
|
|
|
html_content *html = (html_content *) c;
|
|
|
|
|
|
|
|
assert(c != NULL);
|
|
|
|
assert(c->handler == &html_content_handler);
|
|
|
|
|
|
|
|
return html->bw;
|
|
|
|
}
|