mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-05 09:36:20 +00:00
bbf6d9b026
Bugfix for feeds - removed categories related and up - load new books now working - category random now working login page is free of non accessible elements boolean custom column is vivible in UI books with only with certain languages can be shown book shelfs can be deleted from UI Anonymous user view is more resticted Added browse of series in sidebar Dependencys in vendor folder are updated to newer versions (licencs files are now present) Bugfix editing Authors names Made upload on windows working
84 lines
3.2 KiB
XML
84 lines
3.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
<id>urn:uuid:2853dacf-ed79-42f5-8e8a-a7bb3d1ae6a2</id>
|
|
<link rel="self"
|
|
href="{{url_for('feed_index')}}"
|
|
type="application/atom+xml;profile=opds-catalog;kind=navigation"/>
|
|
<link rel="start"
|
|
href="{{url_for('feed_index')}}"
|
|
type="application/atom+xml;profile=opds-catalog;kind=navigation"/>
|
|
<link rel="up"
|
|
href="{{url_for('feed_index')}}"
|
|
type="application/atom+xml;profile=opds-catalog;kind=navigation"/>
|
|
<link rel="next"
|
|
title="{{_('Next')}}"
|
|
href="{{ next_url }}"
|
|
type="application/atom+xml;profile=opds-catalog;kind=navigation"/>
|
|
<link rel="search"
|
|
href="{{url_for('feed_osd')}}"
|
|
type="application/opensearchdescription+xml"/>
|
|
<title>Calibre Web</title>
|
|
<author>
|
|
<name>Calibre Web</name>
|
|
<uri>https://github.com/janeczku/calibre-web</uri>
|
|
</author>
|
|
|
|
{% for entry in entries %}
|
|
<entry>
|
|
<title>{{entry.title}}</title>
|
|
<id>{{entry.uuid}}</id>
|
|
<updated>{{entry.timestamp}}</updated>
|
|
<author>
|
|
<name>{{entry.authors[0].name}}</name>
|
|
<uri>{{entry.authors[0].name}}</uri>
|
|
</author>
|
|
<language>{{entry.language}}</language>
|
|
{% for tag in entry.tags %}
|
|
<category scheme="http://www.bisg.org/standards/bisac_subject/index.html"
|
|
term="{{tag.name}}"
|
|
label="{{tag.name}}"/>
|
|
{% endfor %}
|
|
<summary>{% if entry.comments[0] %}{{entry.comments[0].text|striptags}}{% endif %}</summary>
|
|
{% if entry.has_cover %}
|
|
<link rel="http://opds-spec.org/image"
|
|
href="{{ url_for('feed_get_cover', cover_path=entry.path) }}"
|
|
type="image/jpg"/>
|
|
<link rel="http://opds-spec.org/image/thumbnail"
|
|
href="{{ url_for('feed_get_cover', cover_path=entry.path) }}"
|
|
type="image/jpg"/>
|
|
{% endif %}
|
|
|
|
{% for format in entry.data %}
|
|
<link rel="http://opds-spec.org/acquisition"
|
|
href="{{ url_for('get_opds_download_link', book_id=entry.id, format=format.format|lower)}}"{% if format.format|lower == "epub" %}
|
|
type="application/epub+zip"/>
|
|
{% else %}
|
|
type="application/x-mobipocket-ebook"/>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</entry>
|
|
{% endfor %}
|
|
{% for author in authors %}
|
|
<entry>
|
|
<title>{{author.name}}</title>
|
|
<!--content type="text">{{author.name}}</content-->
|
|
<id>{{ url_for('feed_author', name=author.name) }}</id>
|
|
<link href="{{ url_for('feed_author', name=author.name)}}" type="application/atom+xml;profile=opds-catalog;kind=navigation" rel="subsection"/>
|
|
</entry>
|
|
{% endfor %}
|
|
{% for entry in categorys %}
|
|
<entry>
|
|
<title>{{entry.name}}</title>
|
|
<id>{{ url_for('feed_category', name=entry.name) }}</id>
|
|
<link href="{{ url_for('feed_category', name=entry.name)}}" type="application/atom+xml;profile=opds-catalog;kind=navigation" rel="subsection"/>
|
|
</entry>
|
|
{% endfor %}
|
|
{% for entry in series %}
|
|
<entry>
|
|
<title>{{entry.name}}</title>
|
|
<id>{{ url_for('feed_series', name=entry.name) }}</id>
|
|
<link href="{{ url_for('feed_series', name=entry.name)}}" type="application/atom+xml;profile=opds-catalog;kind=navigation" rel="subsection"/>
|
|
</entry>
|
|
{% endfor %}
|
|
</feed>
|