]> git.phdru.name Git - m_librarian.git/commitdiff
Output serial number of the book in the series
authorOleg Broytman <phd@phdru.name>
Sat, 21 May 2016 14:04:35 +0000 (17:04 +0300)
committerOleg Broytman <phd@phdru.name>
Sat, 21 May 2016 14:04:35 +0000 (17:04 +0300)
docs-ru/command_line.rst
docs/command_line.rst
scripts/ml-search.py

index 67cb5f617796c7831ba44a042821e8257048f46a..6f3c94b5b5f5c97e6734d2dd308e10e918dd9a0b 100644 (file)
@@ -115,7 +115,8 @@ ml-search.py
 
 По умолчанию программы выводит список заголовков найденных книг. При
 использовании опции `-d` также выводится список авторов и жанров, а
-также серия, к которой принадлежит книга (если принадлежит).
+также серия, к которой принадлежит книга (если принадлежит) и порядковый
+номер книги в этой серии.
 
 Поиск расширений
 ^^^^^^^^^^^^^^^^
index 0dd5365abf1a79fd998923eabdc4e7d16abed0eb..fdc5f97373126555cfdb9773fe3a03ab20b9e5a8 100644 (file)
@@ -113,7 +113,8 @@ Options::
 
 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).
+series the book belongs to (if any) and the serial number of the book in
+the series.
 
 Extension search
 ^^^^^^^^^^^^^^^^
index 39d3dabfc9484bbff19e51e915a4658c22cb64f3..bdb1d9dd6d63817cc05a7ec4a323a61181800888 100755 (executable)
@@ -76,7 +76,8 @@ def _search_books(case_sensitive, search_type, args):
             print
             if book.series:
                 print " ", _("Series"), ":",
-                print book.series.encode(default_encoding)
+                print book.series.encode(default_encoding), \
+                    "(%d)" % book.ser_no
 
 
 def _search_extensions(case_sensitive, search_type, args):