]> git.phdru.name Git - bookmarks_db.git/blob - doc/ChangeLog
Feat: Report redirects and set URLs
[bookmarks_db.git] / doc / ChangeLog
1 Version 5.0.0 (2023-??-??)
2
3    Python 3.
4
5    Report redirects and set URLs.
6
7    Remove BeautifulSoup.py (use globally installed).
8
9 Version 4.6.0 (2014-07-06)
10
11    Split simple robot: separate network operations and
12    URL handling/HTML parsing.
13
14    Change parse_html to parse strings, not files.
15
16    Split parse_html/__init__.py into __main__.py.
17
18    Adapt JSON storage to recent Mozilla export format.
19
20    Add ChangeLog.
21
22    Allow parameters in BKMK_* environment variables; for example,
23    BKMK_ROBOT=forking:subproc=urllib or
24    BKMK_STORAGE=json:filename=bookmarks_db.json.
25
26    Pass subproc parameter to the subprocess to allow different robots.
27
28    Add a new robot based on urllib2.
29
30 Version 4.5.6 (2014-01-14)
31
32    Remove absolute directory ~/lib to make it portable.
33
34 Version 4.5.5 (2013-12-05)
35
36    Parse <meta charset="...">.
37
38 Version 4.5.4 (2013-11-23)
39
40    Published through git/gitweb.
41
42 Version 4.5.3 (2013-07-26)
43
44    Minor tweak in Makefile.
45
46    Switched to git.
47
48 Version 4.5.2 (2012-09-24)
49
50    Removed svn:keywords.
51
52    Handle redirects with codes 303 and 307.
53
54    Fixed a bug in handling place: URIs (do not append '//').
55
56 Version 4.5.1 (2011-12-28).
57
58    Read/write mozilla-specific date/time format in json storage.
59
60 Version 4.5.0 (2011-12-18).
61
62    Encode international domain names with IDNA encoding.
63
64    Adapted to different Mozilla 'place' URIs.
65
66 Version 4.4.0 (2011-01-07).
67
68    Moved BeautifulSoup.py and subproc.py from Robots/ to the top-level
69    directory.
70
71    Moved parse_html.py and its submodules to a separate parse_html package.
72
73    Added statistics code to parse_html, got a statistics on parser
74    success/failrure rate, reordered parsers.
75
76    Removed old cruft.
77
78 Version 4.3.1 (2011-01-03).
79
80    Get favicon before HTML redirect (refresh).
81
82 Version 4.3.0 (2011-01-01).
83
84    Robots no longer have one global temporary file - there are at least two
85    (html and favicon), and in the future there will be more for asynchronous
86    robot(s) that would test many URLs in parallel.
87
88 Version 4.2.2.
89
90     Added HTML Parser based on lxml.
91
92 Version 4.2.1 (2010-08-12).
93
94    Added HTML Parser based on html5 library.
95
96 Version 4.2.0 (2010-08-11).
97
98    New storage: json; it allows to load and store Mozilla (Firefox) backup
99    files.
100
101 Version 4.1.2
102
103    Process http error 307 as a temporary redirect.
104
105 Version 4.1.1 (2008-03-10)
106
107    Catch and report all errors.
108
109    Consider application/xhtml+xml as HTML.
110
111    Better handling of exceptions while looking up the icon.
112
113    Recode HTML entities.
114
115    Always use utf-8 as the default encoding.
116
117 Version 4.1.0 (2008-01-14)
118
119    Parser for HTML based on BeautifulSoup.
120
121    Changed User-agent header: I saw a number of sites that forbid
122    "Mozilla compatible" browsers. Added a number of fake headers to pretend
123    this is a real web-browser - there are still stupid sites
124    that are trying to protect themselves from robots by analyzing headers.
125
126    Handle redirects while looking for the icon.
127
128    Handle float timeouts in HTML redirects.
129
130    Minimal required version of Python is 2.5 now.
131
132 Version 4.0.0 (2007-10-20)
133
134    Extended support for Mozilla: charset and icon in bookmarks.
135    Use the charset to add Accept-Charset header.
136    Retrieve favicon.ico (or whatever <link> points to) and store it.
137
138    The project celebrates 10th anniversary!
139
140 Version 3.4.1 (2005-01-29)
141
142    Updated to Python 2.4. Switched from CVS to Subversion.
143
144 Version 3.4.0 (2004-09-23)
145
146    Extended support for Mozilla: keywords in bookmarks.
147    Updated to m_lib version 1.2.
148
149 Version 3.3.2
150
151    parse_html.py can now recode unicode entities in titles.
152
153 Version 3.3.0
154
155    Required Python 2.2.
156
157    HTML parser. If the protocol is HTTP, and there is Content-Type header, and
158    content type is text/html, the object is parsed to extract its title; if
159    the Content-Type header has charset, or if the HTML has <META> with
160    charset, the title is converted from the given charset to the default
161    charset. The <HEADER> is also parsed to extract <META> tag with redirect,
162    if any.
163
164 Version 3.0
165
166    Complete rewrite from scratch. Created mechanism for pluggable storage
167    managers, writers (DB dumpers/exporters) and robots.