mirror of
https://github.com/rkd77/elinks.git
synced 2024-12-04 14:46:47 -05:00
[dump] print footer after finished dump, not after starting dump. Refs #314
This commit is contained in:
parent
8d778449a6
commit
0f2f6beb05
@ -104,6 +104,8 @@ static const unsigned char frame_simplify[FRAME_CHARS_END - FRAME_CHARS_BEGIN]
|
|||||||
0xC5, '+' , '+' , '#' , 0xDB, 0xDB, 0xDB, 0xDB /* 0xD8...0xDF */
|
0xC5, '+' , '+' , '#' , 0xDB, 0xDB, 0xDB, 0xDB /* 0xD8...0xDF */
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void dump_print(const char *option, struct string *url);
|
||||||
|
|
||||||
/** Initialize dump_output::frame for the specified codepage.
|
/** Initialize dump_output::frame for the specified codepage.
|
||||||
*
|
*
|
||||||
* If the codepage does not support all the box-drawing characters
|
* If the codepage does not support all the box-drawing characters
|
||||||
@ -507,6 +509,7 @@ dump_formatted(int fd, struct download *download, struct cache_entry *cached)
|
|||||||
|
|
||||||
init_vs(&vs, cached->uri, -1);
|
init_vs(&vs, cached->uri, -1);
|
||||||
|
|
||||||
|
|
||||||
render_document(&vs, &formatted, &o);
|
render_document(&vs, &formatted, &o);
|
||||||
|
|
||||||
out = dump_output_alloc(fd, NULL, o.cp);
|
out = dump_output_alloc(fd, NULL, o.cp);
|
||||||
@ -545,8 +548,24 @@ dump_formatted(int fd, struct download *download, struct cache_entry *cached)
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!error)
|
if (!error) {
|
||||||
dump_references(formatted.document, fd, out->buf);
|
dump_references(formatted.document, fd, out->buf);
|
||||||
|
}
|
||||||
|
|
||||||
|
char *url = get_uri_string(cached->uri, URI_PUBLIC);
|
||||||
|
|
||||||
|
if (url) {
|
||||||
|
struct string urlstring;
|
||||||
|
|
||||||
|
if (init_string(&urlstring)) {
|
||||||
|
/* XXX: I think it ought to print footer at the end of
|
||||||
|
* the whole dump (not only this file). Testing required.
|
||||||
|
* --pasky */
|
||||||
|
add_to_string(&urlstring, url);
|
||||||
|
dump_print("document.dump.footer", &urlstring);
|
||||||
|
done_string(&urlstring);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
mem_free(out);
|
mem_free(out);
|
||||||
} /* if out */
|
} /* if out */
|
||||||
@ -774,10 +793,6 @@ dump_next(LIST_OF(struct string_list_item) *url_list)
|
|||||||
|
|
||||||
dump_print("document.dump.header", &item->string);
|
dump_print("document.dump.header", &item->string);
|
||||||
dump_start(item->string.source);
|
dump_start(item->string.source);
|
||||||
/* XXX: I think it ought to print footer at the end of
|
|
||||||
* the whole dump (not only this file). Testing required.
|
|
||||||
* --pasky */
|
|
||||||
dump_print("document.dump.footer", &item->string);
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
free_string_list(&done_list);
|
free_string_list(&done_list);
|
||||||
|
Loading…
Reference in New Issue
Block a user