2015-08-02 18:59:11 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
2023-10-28 07:05:24 +00:00
|
|
|
<icon>{{ url_for('static', filename='favicon.ico') }}</icon>
|
2015-08-02 18:59:11 +00:00
|
|
|
<id>urn:uuid:2853dacf-ed79-42f5-8e8a-a7bb3d1ae6a2</id>
|
2018-08-18 15:35:23 +00:00
|
|
|
<updated>{{ current_time }}</updated>
|
2019-07-13 18:45:48 +00:00
|
|
|
<link rel="self" href="{{url_for('opds.feed_index')}}" type="application/atom+xml;profile=opds-catalog;kind=navigation"/>
|
|
|
|
<link rel="start" title="{{_('Start')}}" href="{{url_for('opds.feed_index')}}"
|
2015-08-02 18:59:11 +00:00
|
|
|
type="application/atom+xml;profile=opds-catalog;kind=navigation"/>
|
2018-10-30 21:33:19 +00:00
|
|
|
<link rel="search"
|
2019-07-13 18:45:48 +00:00
|
|
|
href="{{url_for('opds.feed_osd')}}"
|
2018-10-30 21:33:19 +00:00
|
|
|
type="application/opensearchdescription+xml"/>
|
2023-05-27 14:25:06 +00:00
|
|
|
<link type="application/atom+xml" rel="search" title="{{_('Search')}}" href="{{url_for('opds.feed_normal_search')}}/{searchTerms}" />
|
2017-01-29 20:06:08 +00:00
|
|
|
<title>{{instance}}</title>
|
2015-08-02 18:59:11 +00:00
|
|
|
<author>
|
2017-01-29 20:06:08 +00:00
|
|
|
<name>{{instance}}</name>
|
2016-04-15 16:23:00 +00:00
|
|
|
<uri>https://github.com/janeczku/calibre-web</uri>
|
2015-08-02 18:59:11 +00:00
|
|
|
</author>
|
2021-03-21 19:14:17 +00:00
|
|
|
<entry>
|
|
|
|
<title>{{_('Alphabetical Books')}}</title>
|
2021-03-22 16:46:15 +00:00
|
|
|
<link href="{{url_for('opds.feed_booksindex')}}" type="application/atom+xml;profile=opds-catalog"/>
|
|
|
|
<id>{{url_for('opds.feed_booksindex')}}</id>
|
2021-03-21 19:14:17 +00:00
|
|
|
<updated>{{ current_time }}</updated>
|
|
|
|
<content type="text">{{_('Books sorted alphabetically')}}</content>
|
|
|
|
</entry>
|
2024-05-11 12:26:43 +00:00
|
|
|
{% if current_user.check_visibility(g.constants.SIDEBAR_HOT) %}
|
2015-08-02 18:59:11 +00:00
|
|
|
<entry>
|
2016-11-09 18:24:33 +00:00
|
|
|
<title>{{_('Hot Books')}}</title>
|
2019-11-07 20:04:03 +00:00
|
|
|
<link href="{{url_for('opds.feed_hot')}}" type="application/atom+xml;profile=opds-catalog"/>
|
2019-07-13 18:45:48 +00:00
|
|
|
<id>{{url_for('opds.feed_hot')}}</id>
|
2018-08-18 15:35:23 +00:00
|
|
|
<updated>{{ current_time }}</updated>
|
2017-02-04 13:28:18 +00:00
|
|
|
<content type="text">{{_('Popular publications from this catalog based on Downloads.')}}</content>
|
|
|
|
</entry>
|
2024-05-07 06:27:55 +00:00
|
|
|
{%endif %}
|
|
|
|
{% if current_user.check_visibility(g.constants.SIDEBAR_BEST_RATED) %}
|
2017-02-04 13:28:18 +00:00
|
|
|
<entry>
|
2020-02-23 19:07:21 +00:00
|
|
|
<title>{{_('Top Rated Books')}}</title>
|
2019-11-07 20:04:03 +00:00
|
|
|
<link href="{{url_for('opds.feed_best_rated')}}" type="application/atom+xml;profile=opds-catalog"/>
|
2019-07-13 18:45:48 +00:00
|
|
|
<id>{{url_for('opds.feed_best_rated')}}</id>
|
2018-08-18 15:35:23 +00:00
|
|
|
<updated>{{ current_time }}</updated>
|
2016-11-09 18:24:33 +00:00
|
|
|
<content type="text">{{_('Popular publications from this catalog based on Rating.')}}</content>
|
2015-08-02 18:59:11 +00:00
|
|
|
</entry>
|
2024-05-07 06:27:55 +00:00
|
|
|
{%endif %}
|
|
|
|
{% if current_user.check_visibility(g.constants.SIDEBAR_RECENT) %}
|
2015-08-02 18:59:11 +00:00
|
|
|
<entry>
|
2019-12-15 12:32:34 +00:00
|
|
|
<title>{{_('Recently added Books')}}</title>
|
2019-11-07 20:04:03 +00:00
|
|
|
<link href="{{url_for('opds.feed_new')}}" type="application/atom+xml;profile=opds-catalog"/>
|
2019-07-13 18:45:48 +00:00
|
|
|
<id>{{url_for('opds.feed_new')}}</id>
|
2018-08-18 15:35:23 +00:00
|
|
|
<updated>{{ current_time }}</updated>
|
2016-11-09 18:24:33 +00:00
|
|
|
<content type="text">{{_('The latest Books')}}</content>
|
2015-08-02 18:59:11 +00:00
|
|
|
</entry>
|
2024-05-07 06:27:55 +00:00
|
|
|
{%endif %}
|
|
|
|
{% if current_user.check_visibility(g.constants.SIDEBAR_RANDOM) %}
|
2015-08-02 18:59:11 +00:00
|
|
|
<entry>
|
2016-11-09 18:24:33 +00:00
|
|
|
<title>{{_('Random Books')}}</title>
|
2019-11-07 20:04:03 +00:00
|
|
|
<link href="{{url_for('opds.feed_discover')}}" type="application/atom+xml;profile=opds-catalog"/>
|
2019-07-13 18:45:48 +00:00
|
|
|
<id>{{url_for('opds.feed_discover')}}</id>
|
2018-08-18 15:35:23 +00:00
|
|
|
<updated>{{ current_time }}</updated>
|
2016-11-09 18:24:33 +00:00
|
|
|
<content type="text">{{_('Show Random Books')}}</content>
|
2015-08-02 18:59:11 +00:00
|
|
|
</entry>
|
2024-05-07 06:27:55 +00:00
|
|
|
{%endif %}
|
|
|
|
{% if current_user.check_visibility(g.constants.SIDEBAR_READ_AND_UNREAD) and not current_user.is_anonymous %}
|
2017-03-19 18:22:45 +00:00
|
|
|
<entry>
|
|
|
|
<title>{{_('Read Books')}}</title>
|
2019-11-07 20:04:03 +00:00
|
|
|
<link href="{{url_for('opds.feed_read_books')}}" type="application/atom+xml;profile=opds-catalog"/>
|
2019-07-13 18:45:48 +00:00
|
|
|
<id>{{url_for('opds.feed_read_books')}}</id>
|
2018-08-18 15:35:23 +00:00
|
|
|
<updated>{{ current_time }}</updated>
|
2017-03-19 18:22:45 +00:00
|
|
|
<content type="text">{{_('Read Books')}}</content>
|
|
|
|
</entry>
|
|
|
|
<entry>
|
|
|
|
<title>{{_('Unread Books')}}</title>
|
2019-11-07 20:04:03 +00:00
|
|
|
<link href="{{url_for('opds.feed_unread_books')}}" type="application/atom+xml;profile=opds-catalog"/>
|
2019-07-13 18:45:48 +00:00
|
|
|
<id>{{url_for('opds.feed_unread_books')}}</id>
|
2018-08-18 15:35:23 +00:00
|
|
|
<updated>{{ current_time }}</updated>
|
2017-03-19 18:22:45 +00:00
|
|
|
<content type="text">{{_('Unread Books')}}</content>
|
|
|
|
</entry>
|
2019-07-13 18:45:48 +00:00
|
|
|
{% endif %}
|
2024-05-07 06:27:55 +00:00
|
|
|
{% if current_user.check_visibility(g.constants.SIDEBAR_AUTHOR) %}
|
2016-11-09 18:24:33 +00:00
|
|
|
<entry>
|
|
|
|
<title>{{_('Authors')}}</title>
|
2019-11-07 20:04:03 +00:00
|
|
|
<link href="{{url_for('opds.feed_authorindex')}}" type="application/atom+xml;profile=opds-catalog"/>
|
2019-07-13 18:45:48 +00:00
|
|
|
<id>{{url_for('opds.feed_authorindex')}}</id>
|
2018-08-18 15:35:23 +00:00
|
|
|
<updated>{{ current_time }}</updated>
|
2016-11-09 18:24:33 +00:00
|
|
|
<content type="text">{{_('Books ordered by Author')}}</content>
|
2018-09-30 16:48:36 +00:00
|
|
|
</entry>
|
2024-05-07 06:27:55 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if current_user.check_visibility(g.constants.SIDEBAR_PUBLISHER) %}
|
|
|
|
<entry>
|
2018-09-30 16:48:36 +00:00
|
|
|
<title>{{_('Publishers')}}</title>
|
2019-11-07 20:04:03 +00:00
|
|
|
<link href="{{url_for('opds.feed_publisherindex')}}" type="application/atom+xml;profile=opds-catalog"/>
|
2019-07-13 18:45:48 +00:00
|
|
|
<id>{{url_for('opds.feed_publisherindex')}}</id>
|
2018-09-30 16:48:36 +00:00
|
|
|
<updated>{{ current_time }}</updated>
|
|
|
|
<content type="text">{{_('Books ordered by publisher')}}</content>
|
|
|
|
</entry>
|
2024-05-07 06:27:55 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if current_user.check_visibility(g.constants.SIDEBAR_CATEGORY) %}
|
2018-09-30 16:42:48 +00:00
|
|
|
<entry>
|
2019-12-15 12:32:34 +00:00
|
|
|
<title>{{_('Categories')}}</title>
|
2019-11-07 20:04:03 +00:00
|
|
|
<link href="{{url_for('opds.feed_categoryindex')}}" type="application/atom+xml;profile=opds-catalog"/>
|
2019-07-13 18:45:48 +00:00
|
|
|
<id>{{url_for('opds.feed_categoryindex')}}</id>
|
2018-08-18 15:35:23 +00:00
|
|
|
<updated>{{ current_time }}</updated>
|
2016-11-09 18:24:33 +00:00
|
|
|
<content type="text">{{_('Books ordered by category')}}</content>
|
2018-09-30 16:42:48 +00:00
|
|
|
</entry>
|
2024-05-07 06:27:55 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if current_user.check_visibility(g.constants.SIDEBAR_SERIES) %}
|
2018-09-30 16:42:48 +00:00
|
|
|
<entry>
|
2019-12-15 12:32:34 +00:00
|
|
|
<title>{{_('Series')}}</title>
|
2019-11-07 20:04:03 +00:00
|
|
|
<link href="{{url_for('opds.feed_seriesindex')}}" type="application/atom+xml;profile=opds-catalog"/>
|
2019-07-13 18:45:48 +00:00
|
|
|
<id>{{url_for('opds.feed_seriesindex')}}</id>
|
2018-08-18 15:35:23 +00:00
|
|
|
<updated>{{ current_time }}</updated>
|
2016-11-09 18:24:33 +00:00
|
|
|
<content type="text">{{_('Books ordered by series')}}</content>
|
2018-09-30 16:42:48 +00:00
|
|
|
</entry>
|
2024-05-07 06:27:55 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if current_user.check_visibility(g.constants.SIDEBAR_LANGUAGE) %}
|
2019-12-15 12:32:34 +00:00
|
|
|
<entry>
|
|
|
|
<title>{{_('Languages')}}</title>
|
|
|
|
<link href="{{url_for('opds.feed_languagesindex')}}" type="application/atom+xml;profile=opds-catalog"/>
|
|
|
|
<id>{{url_for('opds.feed_languagesindex')}}</id>
|
|
|
|
<updated>{{ current_time }}</updated>
|
|
|
|
<content type="text">{{_('Books ordered by Languages')}}</content>
|
|
|
|
</entry>
|
2024-05-07 06:27:55 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if current_user.check_visibility(g.constants.SIDEBAR_RATING) %}
|
2020-03-07 10:07:35 +00:00
|
|
|
<entry>
|
|
|
|
<title>{{_('Ratings')}}</title>
|
|
|
|
<link href="{{url_for('opds.feed_ratingindex')}}" type="application/atom+xml;profile=opds-catalog"/>
|
|
|
|
<id>{{url_for('opds.feed_ratingindex')}}</id>
|
|
|
|
<updated>{{ current_time }}</updated>
|
|
|
|
<content type="text">{{_('Books ordered by Rating')}}</content>
|
|
|
|
</entry>
|
2024-05-07 06:27:55 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if current_user.check_visibility(g.constants.SIDEBAR_FORMAT) %}
|
2019-12-15 12:32:34 +00:00
|
|
|
<entry>
|
|
|
|
<title>{{_('File formats')}}</title>
|
|
|
|
<link href="{{url_for('opds.feed_formatindex')}}" type="application/atom+xml;profile=opds-catalog"/>
|
|
|
|
<id>{{url_for('opds.feed_formatindex')}}</id>
|
|
|
|
<updated>{{ current_time }}</updated>
|
|
|
|
<content type="text">{{_('Books ordered by file formats')}}</content>
|
|
|
|
</entry>
|
2024-05-07 06:27:55 +00:00
|
|
|
{% endif %}
|
|
|
|
{% if current_user.is_authenticated or g.allow_anonymous %}
|
2018-09-30 16:42:48 +00:00
|
|
|
<entry>
|
2020-04-02 16:23:24 +00:00
|
|
|
<title>{{_('Shelves')}}</title>
|
|
|
|
<link href="{{url_for('opds.feed_shelfindex')}}" type="application/atom+xml;profile=opds-catalog"/>
|
2019-07-13 18:45:48 +00:00
|
|
|
<id>{{url_for('opds.feed_shelfindex')}}</id>
|
2018-08-18 15:35:23 +00:00
|
|
|
<updated>{{ current_time }}</updated>
|
2020-04-02 16:23:24 +00:00
|
|
|
<content type="text">{{_('Books organized in shelves')}}</content>
|
2018-09-30 16:42:48 +00:00
|
|
|
</entry>
|
2024-05-07 06:27:55 +00:00
|
|
|
{% endif %}
|
2015-08-02 18:59:11 +00:00
|
|
|
</feed>
|