regluit/api/templates/opds.xml

48 lines
2.2 KiB
XML
Raw Normal View History

2016-07-24 18:00:25 +00:00
<feed xmlns:dcterms="http://purl.org/dc/terms/" xmlns:opds="http://opds-spec.org/"
2014-07-11 22:13:09 +00:00
xmlns="http://www.w3.org/2005/Atom"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://www.kbcafe.com/rss/atom.xsd.xml">
<title>Unglue.it Catalog</title>
2015-04-28 03:24:02 +00:00
<id>https://unglue.it{% url 'opds' %}</id>
2014-07-11 22:13:09 +00:00
<updated>2014-06-13T21:48:34Z</updated>
<author>
<name>unglue.it</name>
2014-07-17 04:34:35 +00:00
<uri>https://unglue.it/</uri>
2014-07-11 22:13:09 +00:00
</author>
2015-04-28 03:24:02 +00:00
<link rel="start" href="https://unglue.it{% url 'opds' %}" type="application/atom+xml;profile=opds-catalog;kind=navigation" />
2015-01-14 23:04:17 +00:00
<link href="{{ feed.feed_path }}/?order_by=popular"
rel="http://opds-spec.org/featured"
type="application/atom+xml;profile=opds-catalog;kind=acquisition" />
<link href="{{ feed.feed_path }}/?order_by=popular"
rel="http://opds-spec.org/featured"
type="application/atom+xml;profile=opds-catalog;kind=acquisition" />
2014-12-06 20:00:23 +00:00
<entry>
<title>{{ feed.title }} - Popular</title>
<id>https://unglue.it{% url 'opds_acqusition' feed.feed_path %}/?order_by=popular</id>
2014-12-06 20:00:23 +00:00
<updated>{{ feed.updated }}</updated>
<link href="{{ feed.feed_path }}/?order_by=popular"
rel="http://opds-spec.org/sort/popular"
type="application/atom+xml;profile=opds-catalog;kind=acquisition" />
<content type="text">{{ feed.description }} - ordered by popularity</content>
</entry>
<entry>
<title>{{ feed.title }} - New</title>
<id>https://unglue.it{% url 'opds_acqusition' feed.feed_path %}/?order_by=newest</id>
2014-12-06 20:00:23 +00:00
<updated>{{ feed.updated }}</updated>
<link href="{{ feed.feed_path }}/?order_by=newest"
2014-12-06 20:00:23 +00:00
rel="http://opds-spec.org/sort/new"
type="application/atom+xml;profile=opds-catalog;kind=acquisition" />
<content type="text">{{ feed.description }} - ordered by newest</content>
</entry>
2014-07-17 04:00:16 +00:00
{% for feed in feeds %}
2014-07-11 22:13:09 +00:00
<entry>
2014-07-17 04:00:16 +00:00
<title>{{ feed.title }}</title>
2015-04-28 03:24:02 +00:00
<id>https://unglue.it{% url 'opds_acqusition' feed.feed_path %}</id>
2014-07-17 04:34:27 +00:00
<updated>{{ feed.updated }}</updated>
2015-04-28 03:24:02 +00:00
<link href="{% url 'opds_acqusition' feed.feed_path %}"
rel="subsection"
2014-12-06 20:00:23 +00:00
type="application/atom+xml;profile=opds-catalog;kind=acquisition" />
2014-12-06 01:37:51 +00:00
<content type="text">{{ feed.description }}</content>
2014-07-11 22:13:09 +00:00
</entry>
2014-07-17 04:00:16 +00:00
{% endfor %}
2014-07-11 22:13:09 +00:00
</feed>