~ubuntu-branches/ubuntu/karmic/calibre/karmic-updates

« back to all changes in this revision

Viewing changes to src/calibre/www/apps/blog/CHANGELOG.yml

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-04-05 18:42:16 UTC
  • mfrom: (1.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20090405184216-cyb0x4edrwjcaw33
Tags: 0.5.9+dfsg-1
* New upstream release. (Closes: #525339)
* manpages-installation.patch: Encode generated manpages as UTF-8, to avoid
  UnicodeDecodeErrors when writing them out to files.
* debian/control: Demote calibre dependency of calibre-bin to Recommends:,
  which is sufficient and avoids a circular dependency. (Closes: #522059)
* debian/control: Drop build dependency help2man, current version does not
  need it any more.
* debian/control: Drop versioned build dependency on python-mechanize,
  current sid version is enough.
* debian/rules: Copy "setup.py install" command from cdbs'
  python-distutils.mk, since the current version broke this. This is a
  hackish workaround until #525436 gets fixed.
* debian/rules: Drop using $(wildcard ), use `ls`; the former does not work
  any more.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
changes:
 
2
    date: 2008-09-17
 
3
        change: Enabled the ability to override the default template names.
 
4
 
 
5
    date: 2008-08-26
 
6
        change: Upgraded post_detail.html to now use new Django refactored comments. Sidenote: basic.remarks have been removed.
 
7
        
 
8
    date: 2008-07-14
 
9
        change: Removed get_query_set from Blog manager to fix a problem where saving a post marked as Draft would not save.
 
10
        change: Added a get_previous_post and get_next_post method for front end template. These will not return Draft posts.
 
11
        
 
12
    date: 2008-06-17
 
13
        change: BlogPostFeed is now BlogPostsFeed and there is a new BlogPostsByCategory.
 
14
        
 
15
    date: 2008-05-18
 
16
        change: Converted everything to 4 space tabs and made a few other changes to comply with Python Style Guide.
 
17
 
 
18
    date: 2008-04-23
 
19
        change: Added an inline admin interface helper for choosing inlines to go into posts.
 
20
        change: The inline app is now a dependancy of the blog. 
 
21
 
 
22
    date: 2008-04-22
 
23
        change: Removed the 'render_inlines' filter from the Blog template tags. The tag is now in an app called inlines which can be used with any django app.
 
24
 
 
25
    date: 2008-02-27
 
26
        change: Added 'allow_comments' field to the Post model.
 
27
        change: Removed 'Closed' choice from status field of Post model
 
28
 
 
29
    date: 2008-02-18
 
30
        fix: Fixed feed pointing to hardcoded url.
 
31
 
 
32
    date: 2008-02-15
 
33
        change: Internationalized models
 
34
 
 
35
    date: 2008-02-04
 
36
        change: Added 'get_links' template filter.
 
37
        change: Templates: added a {% block content_title %}
 
38
 
 
39
    date: 2008-02-02
 
40
        change: Added a sitemap
 
41
 
 
42
    date: 2008-01-30
 
43
        change: Renamed 'do_inlines' filter to 'render_inlines'
 
44
 
 
45
    date: 2008-01-29
 
46
        change: BeautifulSoup is no longer a dependancy unless you want to use the do_inlines filter.
 
47
 
 
48
    date: 2008-01-27
 
49
        fix: removed 'tagging.register(Post)' from model. It was causing too many unnecessary SQL JOINS.
 
50
        change: Changed the inlines tag to a filter. (Example: {{ object.text|do_inlines }})
 
51
 
 
52
    date: 2008-01-22
 
53
        change: Registered the Post model with the tagging app
 
54
 
 
55
    date: 2008-01-19
 
56
        change: Renamed the 'list' class to 'link_list'
 
57
 
 
58
    date: 2008-01-09
 
59
        change: Changed urls.py so you can have /posts/page/2/ or /posts/?page=2
 
60
 
 
61
    date: 2008-01-07
 
62
        change: Removed PublicPostManager in favor of ManagerWithPublished. 
 
63
        change: Made wrappers for generic views.
 
64
 
 
65
    date: 2008-01-06
 
66
        fix: In blog.py changed 'beautifulsoup' to 'BeautifulSoup'
 
67
 
 
68
    date: 2007-12-31
 
69
        change: Changed some syntax in managers.py to hopefully fix a bug.
 
70
        change: Removed an inline template that didn't belong.
 
71
 
 
72
    date: 2007-12-21
 
73
        change: Added markup tag that formats inlines.
 
74
 
 
75
    date: 2007-12-12
 
76
        change: Cleaned up unit tests.
 
77
 
 
78
    date: 2007-12-11
 
79
        change: Add documentation to templatetags and views.
 
80
        change: Smartened up the previous/next blog part of the post_detail.html template.
 
81
 
 
82
    date: 2007-12-09
 
83
        change: Added feed templates and wrapped up feeds.py.
 
84
        change: Changed Post.live manager to Post.public
 
85
        change: Added a search view along with templates