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