IGN:Tag release

This commit is contained in:
Kovid Goyal 2011-09-30 12:08:35 -06:00
parent 4963a10a5e
commit 5fe0f07de3
3 changed files with 375 additions and 337 deletions

View File

@ -23,6 +23,8 @@
date: 2011-09-30
new features:
- title: "A Tips and Tricks blog at http://blog.calibre-ebook.com to introduce less well known calibre features in a simple way"
- title: "News download: Add list of articles in the downloaded issue to the comments metadata of the generated ebook. Makes it possible to search for a particular article in the calibre library."
ticket: [851717]

File diff suppressed because it is too large Load Diff

View File

@ -971,7 +971,7 @@ class BuiltinListEquals(BuiltinFormatterFunction):
category = 'List Manipulation'
__doc__ = doc = _('list_equals(list1, sep1, list2, sep2, yes_val, no_val) -- '
'return yes_val if list1 and list2 contain the same items, '
'otherwise return `no_val. The items are determined by splitting '
'otherwise return no_val. The items are determined by splitting '
'each list using the appropriate separator character (sep1 or '
'sep2). The order of items in the lists is not relevant. '
'The compare is case insensitive.')