This repository has been archived by the owner on Sep 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
CHANGES
77 lines (65 loc) · 3.18 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
CHANGES:
Feedjack 0.9.16
* Added compatibility with Django 1.0 beta 1: newforms admin and pagination
Feedjack 0.9.15
* Fixing feedjack_update for posts without a modified date (yay rss 0.92!)
Feedjack 0.9.15
* Fixing feedjack_update for posts without a modified date (yay rss 0.92!)
Feedjack 0.9.14
* Lots of fixes/improvements in feedjack_update.py:
- better unicode handling on logging, this will prevent feeds not updating
when using the --verbose flag
- Multithreaded feed fetching, needs the threadpool module, available in
http://www.chrisarndt.de/projects/threadpool/
By default 10 threads will be used, can be modified with the -w option
If the threadpool module is not available, the old (SLOW) single
threaded method will be used.
- Improved logging. Since multiple feeds can be processed in parallel now,
all log entries go in a single line, with the feed id as a prefix.
- Stats in the logging, how many new posts, updated posts, unmodified posts
and errors were found per feed and globally, and feed status (ok,
unchanged, can't parse feed, http error, some exception)
- Reporting slow feeds, if a feed takes longer than 10 seconds to process, it
will appear in the logs with the tag "(SLOW FEED!)"
Feedjack 0.9.12
* Feedjack is now django-unicode compliant
* Using max_length instead of maxlength in models.py to prevent warnings in
syncdb
* Patched fjlib to use the new django refactored database backends
* Disabling autoscaping for post contents in the included templates
* Handling of feedparser returning an empty etag
* Fixing encoding related problems in tag urls
* Non-integer page parameters should be handled correctly
Feedjack 0.9.10
* Fixing CSS tags for styles 4 and 5
* feedjack_update now strip()s tags before storing them
* feedjack_update shows the feed number being processed
* We no longer cache the tags in feedjack_update, it had encoding problems and
makes the script safe to run more than one instance at the same time
Feedjack 0.9.9
* Fixed i18n related bugs in the templates
* Fixed a bug related to the --settings option in feedjack_update.py
* The feeds per user, tag and user/tag are working again
* You can choose between rss2 and atom in the feeds for user, tag and user/tag
* The default /feed/ url now redirects to /feed/atom/ instead of /feed/rss/
Feedjack 0.9.8
* Internationalization (petar)
* Fixed and infinite loop in feedjack_update.py (do'h!) (petar)
* Added Serbian (Latin) translation (petar)
* Updated the feedparser calls in feedjack_update.py (petar)
* Added Spanish translation (predius)
Feedjack 0.9.7
* The request handler uses PATH_INFO when REQUEST_URI is not available (like
in Django's development server)
* Etags keep their quotation marks when stored.
* The update_feeds.py got a lot of love:
- Every option has a help string (try with --help)
- A --verbose option. Default behavior is non-verbose and shows only the
current feed being analyzed and errors.
- A --timeout option to set the wait timeout in seconds when connecting to
feeds.
Feedjack 0.9.6
* Fixed a bug in the feedjack_update.py script that wasn't handling the
same blog with multiple feeds correctly.
Feedjack 0.9.5
* First public release