~ubuntu-branches/ubuntu/precise/wget/precise-proposed

« back to all changes in this revision

Viewing changes to src/convert.h

  • Committer: Bazaar Package Importer
  • Author(s): Noèl Köthe
  • Date: 2005-06-26 16:46:25 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050626164625-jjcde8hyztx7xq7o
Tags: 1.10-2
* wget-fix_error--save-headers patch from upstream
  (closes: Bug#314728)
* don't pattern-match server redirects patch from upstream
  (closes: Bug#163243)
* correct de.po typos
  (closes: Bug#313883)
* wget-E_html_behind_file_counting fix problem with adding the
  numbers after the html extension
* updated Standards-Version: to 3.6.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#ifndef CONVERT_H
31
31
#define CONVERT_H
32
32
 
 
33
struct hash_table;              /* forward decl */
 
34
extern struct hash_table *downloaded_html_set;
 
35
 
33
36
enum convert_options {
34
37
  CO_NOCONVERT = 0,             /* don't convert this URL */
35
38
  CO_CONVERT_TO_RELATIVE,       /* convert to relative, e.g. to
96
99
void register_html PARAMS ((const char *, const char *));
97
100
void register_delete_file PARAMS ((const char *));
98
101
void convert_all_links PARAMS ((void));
 
102
void convert_cleanup PARAMS ((void));
 
103
 
 
104
char *html_quote_string PARAMS ((const char *));
99
105
 
100
106
#endif /* CONVERT_H */