2015-08-02 11:59:11 -07:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-05-18 11:07:02 -07:00
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/terms/" xmlns:dcterms="http://purl.org/dc/terms/">
|
2015-08-02 11:59:11 -07:00
|
|
|
<id>urn:uuid:2853dacf-ed79-42f5-8e8a-a7bb3d1ae6a2</id>
|
2018-08-18 08:35:23 -07:00
|
|
|
<updated>{{ current_time }}</updated>
|
2015-08-02 11:59:11 -07:00
|
|
|
<link rel="self"
|
2017-01-09 10:10:39 -08:00
|
|
|
href="{{request.script_root + request.full_path}}"
|
2017-01-07 09:08:12 -08:00
|
|
|
type="application/atom+xml;profile=opds-catalog;type=feed;kind=navigation"/>
|
2015-08-02 11:59:11 -07:00
|
|
|
<link rel="start"
|
2019-07-13 11:45:48 -07:00
|
|
|
href="{{url_for('opds.feed_index')}}"
|
2017-01-07 09:08:12 -08:00
|
|
|
type="application/atom+xml;profile=opds-catalog;type=feed;kind=navigation"/>
|
2015-08-02 11:59:11 -07:00
|
|
|
<link rel="up"
|
2019-07-13 11:45:48 -07:00
|
|
|
href="{{url_for('opds.feed_index')}}"
|
2017-01-07 09:08:12 -08:00
|
|
|
type="application/atom+xml;profile=opds-catalog;type=feed;kind=navigation"/>
|
2021-03-21 03:54:39 -07:00
|
|
|
{% if pagination and pagination.has_prev %}
|
2017-01-09 10:10:39 -08:00
|
|
|
<link rel="first"
|
|
|
|
href="{{request.script_root + request.path}}"
|
|
|
|
type="application/atom+xml;profile=opds-catalog;type=feed;kind=navigation"/>
|
2017-01-12 11:43:36 -08:00
|
|
|
{% endif %}
|
2021-03-21 03:54:39 -07:00
|
|
|
{% if pagination and pagination.has_next %}
|
2016-11-09 10:24:33 -08:00
|
|
|
<link rel="next"
|
|
|
|
title="{{_('Next')}}"
|
2017-01-09 10:10:39 -08:00
|
|
|
href="{{ request.script_root + request.path }}?offset={{ pagination.next_offset }}"
|
|
|
|
type="application/atom+xml;profile=opds-catalog;type=feed;kind=navigation"/>
|
|
|
|
{% endif %}
|
2021-03-21 03:54:39 -07:00
|
|
|
{% if pagination and pagination.has_prev %}
|
2017-01-09 10:10:39 -08:00
|
|
|
<link rel="previous"
|
|
|
|
href="{{request.script_root + request.path}}?offset={{ pagination.previous_offset }}"
|
2017-01-07 09:08:12 -08:00
|
|
|
type="application/atom+xml;profile=opds-catalog;type=feed;kind=navigation"/>
|
|
|
|
{% endif %}
|
2018-10-30 14:33:19 -07:00
|
|
|
<link rel="search"
|
2019-07-13 11:45:48 -07:00
|
|
|
href="{{url_for('opds.feed_osd')}}"
|
2018-10-30 14:33:19 -07:00
|
|
|
type="application/opensearchdescription+xml"/>
|
2021-03-21 03:54:39 -07:00
|
|
|
<link type="application/atom+xml" rel="search" title="{{_('Search')}}" href="{{url_for('opds.feed_cc_search')}}/{searchTerms}" />
|
2017-01-29 12:06:08 -08:00
|
|
|
<title>{{instance}}</title>
|
2015-08-02 11:59:11 -07:00
|
|
|
<author>
|
2017-01-29 12:06:08 -08:00
|
|
|
<name>{{instance}}</name>
|
2016-04-15 09:23:00 -07:00
|
|
|
<uri>https://github.com/janeczku/calibre-web</uri>
|
2015-08-02 11:59:11 -07:00
|
|
|
</author>
|
|
|
|
|
2017-03-19 09:32:49 -07:00
|
|
|
{% if entries and entries[0] %}
|
2015-08-02 11:59:11 -07:00
|
|
|
{% for entry in entries %}
|
|
|
|
<entry>
|
|
|
|
<title>{{entry.title}}</title>
|
2019-11-07 12:04:03 -08:00
|
|
|
<id>urn:uuid:{{entry.uuid}}</id>
|
2018-05-26 08:21:20 -07:00
|
|
|
<updated>{{entry.atom_timestamp}}</updated>
|
2018-11-01 05:44:00 -07:00
|
|
|
{% if entry.authors.__len__() > 0 %}
|
|
|
|
<author>
|
|
|
|
<name>{{entry.authors[0].name}}</name>
|
|
|
|
</author>
|
|
|
|
{% endif %}
|
|
|
|
{% if entry.publishers.__len__() > 0 %}
|
2018-10-30 14:33:19 -07:00
|
|
|
<publisher>
|
|
|
|
<name>{{entry.publishers[0].name}}</name>
|
|
|
|
</publisher>
|
|
|
|
{% endif %}
|
2019-12-15 04:32:34 -08:00
|
|
|
{% for lang in entry.languages %}
|
|
|
|
<dcterms:language>{{lang.lang_code}}</dcterms:language>
|
|
|
|
{% endfor %}
|
2015-08-02 11:59:11 -07:00
|
|
|
{% for tag in entry.tags %}
|
|
|
|
<category scheme="http://www.bisg.org/standards/bisac_subject/index.html"
|
|
|
|
term="{{tag.name}}"
|
|
|
|
label="{{tag.name}}"/>
|
|
|
|
{% endfor %}
|
2017-01-07 09:08:12 -08:00
|
|
|
{% if entry.comments[0] %}<summary>{{entry.comments[0].text|striptags}}</summary>{% endif %}
|
2015-08-02 11:59:11 -07:00
|
|
|
{% if entry.has_cover %}
|
2019-07-13 11:45:48 -07:00
|
|
|
<link type="image/jpeg" href="{{url_for('opds.feed_get_cover', book_id=entry.id)}}" rel="http://opds-spec.org/image"/>
|
|
|
|
<link type="image/jpeg" href="{{url_for('opds.feed_get_cover', book_id=entry.id)}}" rel="http://opds-spec.org/image/thumbnail"/>
|
2015-08-02 11:59:11 -07:00
|
|
|
{% endif %}
|
|
|
|
{% for format in entry.data %}
|
2019-07-24 09:15:38 -07:00
|
|
|
<link rel="http://opds-spec.org/acquisition" href="{{ url_for('opds.opds_download_link', book_id=entry.id, book_format=format.format|lower)}}"
|
2018-05-26 08:21:20 -07:00
|
|
|
length="{{format.uncompressed_size}}" mtime="{{entry.atom_timestamp}}" type="{{format.format|lower|mimetype}}"/>
|
2015-08-02 11:59:11 -07:00
|
|
|
{% endfor %}
|
|
|
|
</entry>
|
|
|
|
{% endfor %}
|
2017-03-07 10:10:17 -08:00
|
|
|
{% endif %}
|
2017-02-03 04:20:35 -08:00
|
|
|
{% for entry in listelements %}
|
2016-11-09 10:24:33 -08:00
|
|
|
<entry>
|
2020-04-02 09:23:24 -07:00
|
|
|
{% if entry.__class__.__name__ == 'Shelf' and entry.is_public == 1 %}
|
|
|
|
<title>{{entry.name}} {{_('(Public)')}}</title>
|
|
|
|
{% else %}
|
2016-11-09 10:24:33 -08:00
|
|
|
<title>{{entry.name}}</title>
|
2020-04-02 09:23:24 -07:00
|
|
|
{% endif %}
|
2017-04-02 01:05:07 -07:00
|
|
|
<id>{{ url_for(folder, book_id=entry.id) }}</id>
|
2017-10-01 08:16:57 -07:00
|
|
|
<link rel="subsection" type="application/atom+xml;profile=opds-catalog" href="{{url_for(folder, book_id=entry.id)}}"/>
|
2016-12-28 06:51:58 -08:00
|
|
|
</entry>
|
2016-11-09 10:24:33 -08:00
|
|
|
{% endfor %}
|
2021-03-22 09:46:15 -07:00
|
|
|
{% for entry in letterelements %}
|
|
|
|
<entry>
|
|
|
|
<title>{{entry['name']}}</title>
|
|
|
|
<id>{{ url_for(folder, book_id=entry['id']) }}</id>
|
|
|
|
<link rel="subsection" type="application/atom+xml;profile=opds-catalog" href="{{url_for(folder, book_id=entry['id'])}}"/>
|
|
|
|
</entry>
|
|
|
|
{% endfor %}
|
2015-08-02 11:59:11 -07:00
|
|
|
</feed>
|