mirror of
https://github.com/ProjectSynthoria/SynthoriaArchive.git
synced 2025-03-12 15:26:56 +02:00
41 lines
2 KiB
HTML
41 lines
2 KiB
HTML
{% extends "layout.html" %}
|
|
{% block title %}XML Namespace :: {{ config.SITE_NAME }}{% endblock %}
|
|
{% block body %}
|
|
<div class="content">
|
|
<h1>Nyaa XML Namespace</h1>
|
|
<p>You found this page because our RSS feeds contain an URL that links here. Said URL is not an actual page but rather a unique identifier used to prevent name collisions with other XML namespaces.</p>
|
|
<p>The namespace contains the following additional, informational <b>tags</b>:</p>
|
|
<ul>
|
|
<li>
|
|
<p><code><nyaa:seeders></code> holds the current amount of seeders on the respective torrent.</p>
|
|
</li>
|
|
<li>
|
|
<p><code><nyaa:leechers></code> holds the current amount of leechers on the respective torrent.</p>
|
|
</li>
|
|
<li>
|
|
<p><code><nyaa:downloads></code> counts the downloads the torrent got up to the point the feed was refreshed.</p>
|
|
</li>
|
|
<li>
|
|
<p><code><nyaa:infoHash></code> is the torrent's infohash, a unique identifier, in hexadecimal.</p>
|
|
</li>
|
|
<li>
|
|
<p><code><nyaa:categoryId></code> contains the ID of the category containing the upload in the form <code>category_subcategory</code>.</p>
|
|
</li>
|
|
<li>
|
|
<p><code><nyaa:category></code> contains the written name of the torrent's category in the form <code>Category - Subcategory</code>.</p>
|
|
</li>
|
|
<li>
|
|
<p><code><nyaa:size></code> indicates the torrent's download size to one decimal place, using a magnitude prefix according to ISO/IEC 80000-13.</p>
|
|
</li>
|
|
<li>
|
|
<p><code><nyaa:trusted></code> indicates whether the torrent came from a trusted uploader (YES or NO).</p>
|
|
</li>
|
|
<li>
|
|
<p><code><nyaa:remake></code> indicates whether the torrent was a remake (YES or NO).</p>
|
|
</li>
|
|
<li>
|
|
<p><code><nyaa:comments></code> holds the current amount of comments made on the respective torrent.</p>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
{% endblock %}
|