mirror of
https://github.com/evilhero/mylar
synced 2025-03-09 21:33:42 +00:00
OPDS Publisher Indexing
This commit is contained in:
parent
fd30eadfe6
commit
723abecbe1
1 changed files with 2 additions and 2 deletions
|
@ -226,10 +226,10 @@ class OPDS(object):
|
|||
if comic['ComicPublisher'] == kwargs['pubid'] and comic['haveissues'] > 0:
|
||||
entries.append(
|
||||
{
|
||||
'title': '%s (%s) (%)' % (comic['ComicName'], comic['ComicYear'], comic['haveissues']),
|
||||
'title': '%s (%s) (%s)' % (comic['ComicName'], comic['ComicYear'], comic['haveissues']),
|
||||
'id': 'comic:%s (%s)' % (comic['ComicName'], comic['ComicYear']),
|
||||
'updated': mylar.helpers.now(),
|
||||
'content': '%s (%s) (%)' % (comic['ComicName'], comic['ComicYear'], comic['haveissues']),
|
||||
'content': '%s (%s) (%s)' % (comic['ComicName'], comic['ComicYear'], comic['haveissues']),
|
||||
'href': '/opds?cmd=Comic&comicid=%s' % quote_plus(comic['ComicID']),
|
||||
'kind': 'navigation',
|
||||
'rel': 'subsection',
|
||||
|
|
Loading…
Add table
Reference in a new issue