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
73 lines
2.7 KiB
XML
73 lines
2.7 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"
|
|
title="{{_('Start')}}"
|
|
href="{{url_for('feed_index')}}"
|
|
type="application/atom+xml;profile=opds-catalog;kind=navigation"/>
|
|
<link rel="search"
|
|
title="{{_('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>
|
|
|
|
|
|
<entry>
|
|
<title>{{_('Hot Books')}}</title>
|
|
<link rel="http://opds-spec.org/sort/popular"
|
|
href="{{url_for('feed_hot')}}"
|
|
type="application/atom+xml;profile=opds-catalog;kind=acquisition"/>
|
|
<id>{{url_for('feed_hot')}}</id>
|
|
<content type="text">{{_('Popular publications from this catalog based on Rating.')}}</content>
|
|
</entry>
|
|
|
|
<entry>
|
|
<title>{{_('New Books')}}</title>
|
|
<link rel="http://opds-spec.org/sort/new"
|
|
href="{{url_for('feed_new')}}"
|
|
type="application/atom+xml;profile=opds-catalog;kind=acquisition"/>
|
|
<id>{{url_for('feed_new')}}</id>
|
|
<content type="text">{{_('The latest Books')}}</content>
|
|
</entry>
|
|
|
|
<entry>
|
|
<title>{{_('Random Books')}}</title>
|
|
<link rel="http://opds-spec.org/featured"
|
|
href="{{url_for('feed_discover')}}"
|
|
type="application/atom+xml;profile=opds-catalog;kind=acquisition"/>
|
|
<id>{{url_for('feed_discover')}}</id>
|
|
<content type="text">{{_('Show Random Books')}}</content>
|
|
</entry>
|
|
<entry>
|
|
<title>{{_('Authors')}}</title>
|
|
<link rel="subsection"
|
|
href="{{url_for('feed_authorindex')}}"
|
|
type="application/atom+xml;profile=opds-catalog;kind=navigation"/>
|
|
<id>{{url_for('feed_authorindex')}}</id>
|
|
<content type="text">{{_('Books ordered by Author')}}</content>
|
|
</entry>
|
|
<entry>
|
|
<title>{{_('Category list')}}</title>
|
|
<link rel="subsection"
|
|
href="{{url_for('feed_categoryindex')}}"
|
|
type="application/atom+xml;profile=opds-catalog;kind=navigation"/>
|
|
<id>{{url_for('feed_categoryindex')}}</id>
|
|
<content type="text">{{_('Books ordered by category')}}</content>
|
|
</entry>
|
|
<entry>
|
|
<title>{{_('Series list')}}</title>
|
|
<link rel="subsection"
|
|
href="{{url_for('feed_seriesindex')}}"
|
|
type="application/atom+xml;profile=opds-catalog;kind=navigation"/>
|
|
<id>{{url_for('feed_seriesindex')}}</id>
|
|
<content type="text">{{_('Books ordered by series')}}</content>
|
|
</entry>
|
|
</feed>
|