mirror of
https://github.com/mirror/wget.git
synced 2025-01-21 09:41:06 +08:00
[svn] Download URLs from <object data="...">.
This commit is contained in:
parent
591adcf316
commit
eb88464568
@ -1,3 +1,7 @@
|
||||
2003-11-09 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* html-url.c: Get URLs from <object data="...">.
|
||||
|
||||
2003-11-09 Hrvoje Niksic <hniksic@xemacs.org>
|
||||
|
||||
* main.c (option_data): Specify the command to use for --mirror.
|
||||
|
@ -81,6 +81,7 @@ enum {
|
||||
TAG_LAYER,
|
||||
TAG_LINK,
|
||||
TAG_META,
|
||||
TAG_OBJECT,
|
||||
TAG_OVERLAY,
|
||||
TAG_SCRIPT,
|
||||
TAG_TABLE,
|
||||
@ -111,6 +112,7 @@ static struct known_tag {
|
||||
{ TAG_LAYER, "layer", tag_find_urls },
|
||||
{ TAG_LINK, "link", tag_handle_link },
|
||||
{ TAG_META, "meta", tag_handle_meta },
|
||||
{ TAG_OBJECT, "object", tag_find_urls },
|
||||
{ TAG_OVERLAY, "overlay", tag_find_urls },
|
||||
{ TAG_SCRIPT, "script", tag_find_urls },
|
||||
{ TAG_TABLE, "table", tag_find_urls },
|
||||
@ -157,6 +159,7 @@ static struct {
|
||||
{ TAG_IMG, "src", ATTR_INLINE },
|
||||
{ TAG_INPUT, "src", ATTR_INLINE },
|
||||
{ TAG_LAYER, "src", ATTR_INLINE | ATTR_HTML },
|
||||
{ TAG_OBJECT, "data", ATTR_INLINE },
|
||||
{ TAG_OVERLAY, "src", ATTR_INLINE | ATTR_HTML },
|
||||
{ TAG_SCRIPT, "src", ATTR_INLINE },
|
||||
{ TAG_TABLE, "background", ATTR_INLINE },
|
||||
|
Loading…
Reference in New Issue
Block a user