По умолчанию программы выводит список заголовков найденных книг. При
использовании опции `-d` также выводится список авторов и жанров, а
также серия, к которой принадлежит книга (если принадлежит) и порядковый
-номер книги в этой серии.
+номер книги в этой серии. С двумя опциями `-d` (`-d -d` или просто
+`-dd`) программа выводит дату файла, язык и расширение имени файла.
Поиск расширений
^^^^^^^^^^^^^^^^
By default the program prints only titles of the found book. With one
option `-d` it also prints the list of authors and genres, and also
series the book belongs to (if any) and the serial number of the book in
-the series.
+the series. With two options `-d` (`-d -d` or simply `-dd`) it also
+prints the file date, language and file extension.
Extension search
^^^^^^^^^^^^^^^^
for book in search_books(search_type, case_sensitive, values,
orderBy='title'):
print book.title.encode(default_encoding)
- if args.details > 0:
+ if args.details >= 1:
print " ", _("Author(s)"), ":",
for author in book.authors:
names = filter(None,
print " ", _("Series"), ":",
print book.series.encode(default_encoding), \
"(%d)" % book.ser_no
+ if args.details >= 2:
+ print " ", _("Date"), ":", book.date
+ print " ", _("Language"), ":", book.language.name
+ print " ", _("Extension"), ":", book.extension.name
def _search_extensions(case_sensitive, search_type, args):