summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/docs/11891
-rw-r--r--data/docs/881
-rw-r--r--data/docs/94
-rw-r--r--data/docs/9.cs4
-rw-r--r--data/docs/9.ru4
-rw-r--r--data/docs/index1
-rw-r--r--data/docs/index.cs1
-rw-r--r--data/docs/index.ru3
-rw-r--r--data/global.pl19
-rw-r--r--data/lang.txt140
-rw-r--r--data/style.css14
11 files changed, 1033 insertions, 129 deletions
diff --git a/data/docs/11 b/data/docs/11
new file mode 100644
index 00000000..e1e49881
--- /dev/null
+++ b/data/docs/11
@@ -0,0 +1,891 @@
+:TITLE:Public Database API
+:INC:index
+
+:SUB:Introduction
+<p>
+ This document describes the public API of VNDB and is intended to be read by
+ programmers. This API allows programs and websites to access (parts of) the
+ VNDB database without actually visiting the website.
+ <br /><br />
+</p>
+
+<b>Design goals</b>
+<ul>
+ <li>
+ Simple in implementation of both client and server. "Simple" here means that
+ it shouldn't take much code to write a secure and full implementation and that
+ client applications shouldn't require huge dependency trees just to use this API.
+ </li>
+ <li>Powerful: Not as powerful as raw SQL, but not as rigid as commonly used REST or RPC protocols.</li>
+ <li>High-level: common applications need to perform only few actions to get what they want.</li>
+ <li>Fast: minimal bandwidth overhead and simple and customizable queries.</li>
+</ul>
+<br />
+
+<b>Design overview</b>
+<ul>
+ <li>TCP-based, all communication between the client and the server is done
+ using one TCP connection. This connection stays alive until it is explicitely
+ closed by either the client or the server.</li>
+ <li>Request/response, client sends a request and server replies with a response.</li>
+ <li>Session-based: clients are required to login before issuing commands to
+ the server. A session is created by issuing the 'login' command, this session
+ stays valid for the lifetime of the TCP connection.</li>
+ <li><b>Everything</b> sent between the client and the server is encoded in UTF-8.</li>
+</ul>
+<br />
+
+<b>Limits</b>
+<p>The following limits are enforced by the server, in order to limit the
+server resources and prevent abuse of this service.</p>
+<ul>
+ <li>5 connections per IP. All connections that are opened after reaching this limit will be immediately closed.</li>
+ <li>3 sessions per user. The login command will reply with a 'sesslimit' error when this limit is reached.</li>
+ <li>100 commands per 10 minutes per user. Server will reply with a 'throttled' error (type="cmd") when reaching this limit.</li>
+ <li>
+ 1 second of SQL time per minute per user. SQL time is the total time taken to
+ run the database queries for each command. This depends on both the command
+ (filters and get flags) and server load, and is thus not very predictable.
+ Server will reply with a 'throttled' error with type="sql" upon reaching
+ this limit.
+ </li>
+ <li>Each command returns at most 10 results.</li>
+</ul>
+
+<br />
+<b>Connection info:</b>
+<dl>
+ <dt>Host</dt><dd>api.vndb.org (primary), beta.vndb.org (available for testing)</dd>
+ <dt>Port (tcp)</dt><dd>19534 ('VN')</dd>
+</dl>
+
+<br />
+<b>Disclaimer</b>
+<p>These notes should be obvious, but I'll point it out anyway.</p>
+<ul>
+ <li>
+ This service is still experimental and is provided for free. No guarantees
+ are given about the stability and uptime of this service. It may disappear
+ at any time, and access to it can be restricted without prior notice.
+ </li>
+ <li>
+ Changes to this API can be made without prior notice. Backwards compatibility
+ is provided when feasable, but non-compatible changes will be made at some
+ point. It is the responsibility of the application developers to keep their
+ applications up-to-date.
+ </li>
+ <li>
+ This service does not grant anyone the right to copy or republish the
+ information fetched using the API. VNDB does not have a clear copyright
+ statement, and in general we're not very strict about other people copying
+ our information, but this API is not intended to be used for fetching and
+ publishing more than half of our database. When in doubt, ask.
+ </li>
+ <li>
+ Lastly, this API is not complete. If you have any specific features you'd
+ like to see, don't hesitate to ask.
+ </li>
+</ul>
+
+<br />
+<b>Implementation tips</b>
+<p>Like the disclaimer, these notes should be obvious, but it can't hurt to state them anyway.</p>
+<ul>
+ <li>
+ <b>Cache</b> everything you receive, the data on VNDB doesn't change very
+ often. Even if you only refresh the cached information once every month, you
+ can be sure that most of the data hasn't changed within that time.
+ </li>
+ <li>
+ Program defensively. Even when the documentation says that a string will be
+ returned, it may very well happen that this is later changed into an array.
+ Make sure your application doesn't completely crash in such an event. Also keep
+ in mind that for every command you send, the server can reply with an error, or
+ can immediately close the connection (but this should be rare).
+ </li>
+ <li>
+ Regularly check this page to see if anything has changed to the API, and
+ update your client when necessary. I'll probably add a changelog to the bottom
+ of this page in the future.
+ </li>
+ <li>
+ Use a JSON library for both encoding and decoding JSON data. While the format
+ is relatively easy to use, you're much more likely to introduce bugs when you're
+ writing your own parser.
+ </li>
+</ul>
+
+
+
+:SUB:Request/response syntax
+<p>
+ The VNDB API uses the JSON format for data in various places, this document assumes
+ you are familiar with it. See <a href="http://json.org/">JSON.org</a> for a quick
+ overview and <a href="http://www.ietf.org/rfc/rfc4627.txt?number=4627">RFC 4627</a>
+ for the glory details.
+ <br /><br />
+ The words <i>object</i>, <i>array</i>, <i>value</i>, <i>string</i>,
+ <i>number</i> and <i>integer</i> refer to the JSON data types. In addition the following
+ definitions are used in this document:
+</p>
+<dl>
+ <dt><i>request</i> or <i>command</i></dt><dd>
+ Message sent from the client to the server.
+ </dd><dt><i>response</i></dt><dd>
+ Message sent from the server to the client.
+ </dd><dt><i>whitespace</i></dt><dd>
+ Any sequence of the following characters: space, tab, line feed and carriage
+ return. (hexadecimal: 20, 09, 10, 0D, respectively). This is in line with the
+ definition of whitespace in the JSON specification.
+ </dd><dt><i>date</i></dt><dd>
+ A <i>string</i> signifying a date (in particular: release date). The
+ following formats are used: "yyyy" (when day and month are unknown), "yyyy-mm"
+ (when day is unknown) "yyyy-mm-dd", and "tba" (To Be Announced). If the year is
+ not known and the date is not "tba", the special value <b>null</b> is used.
+ </dd>
+</dl>
+<br />
+
+<b>Message format</b>
+<p>
+ A message is formatted as a command or response name, followed by any number of
+ arguments, followed by the End Of Transmission character (04 in hexadecimal).
+ Arguments are separated by one or more whitespace characters, and any sequence
+ of whitespace characters is allowed before and after the message.<br />
+ The command or response name is an unescaped string containing only lowercase
+ alphabetical ASCII characters, and indicates what kind of command or response
+ this message contains.<br />
+ An argument can either be an unescaped string (not containing whitespace), any
+ JSON value, or a filter string. The following two examples demonstrate a
+ 'login' command, with an object as argument. Both messages are equivalent, as
+ the whitespace is ignored. '0x04' is used to indicate the End Of Transmission
+ character.
+</p>
+<pre>
+ login {"protocol":1,"username":"ayo"}<b class="standout">0x04</b>
+</pre><pre>
+ login {
+ "protocol" : 1,
+ "username" : "ayo"
+ }
+ <b class="standout">0x04</b>
+</pre>
+The 0x04 byte will be ommitted in the other examples in this document. It is
+however still required.<br />
+
+<br />
+<b>Filter string syntax</b>
+<p>
+ Some commands accept a filter string as argument. This argument is formatted
+ similar to boolean expressions in most programming languages. A filter consists
+ of one or more <i>expressions</i>, separated by the boolean operators "and" or
+ "or" (lowercase). Each filter expression can be surrounded by parentheses to
+ indicate precedence, the filter argument itself must be surrounded by parentheses.
+ <br />
+ An <i>expression</i> consists of a <i>field name</i>, followed by an
+ <i>operator</i> and a <i>value</i>. The field name must consist entirely of
+ lowercase alphanumeric characters and can also contain an underscore. The
+ operator must be one of the following characters: =, !=, &lt;, &lt;=, &gt;,
+ &gt;= or ~. The <i>value</i> can be any valid JSON value. Whitespace
+ characters are allowed, but not required, between all expressions, field names,
+ operators and values.<br />
+ The following two filters are equivalent:
+</p>
+<pre>
+ (title~"osananajimi"or(id=2))
+</pre><pre>
+ (
+ id = 2
+ or
+ title ~ "osananajimi"
+ )
+</pre>
+<p>More complex filters are also possible:</p>
+<pre>
+ ((platforms = ["win", "ps2"] or languages = "ja") and released > "2009-01-10")
+</pre>
+<p>See the individual commands for more details.</p>
+
+
+:SUB:The 'login' command
+<pre>
+ login {"protocol":1,"client":"test","clientver":0.1,"username":"ayo","password":"hi-mi-tsu!"}
+</pre>
+<p>
+ Every client is required to login before issuing other commands. The login
+ command accepts a JSON object as argument. This object must have the following members:
+</p>
+<dl>
+ <dt>protocol</dt><dd>An integer that indicates which protocol version the client implements. Must be 1.</dd>
+ <dt>client</dt><dd>
+ A string identifying the client application. Between the 3 and 50 characters,
+ must contain only alphanumeric ASCII characters, space, underscore and hyphens.
+ When writing a client, think of a funny (unique) name and hardcode it into
+ your application.
+ </dd><dt>clientver</dt><dd>A positive number indicating the software version of the client.</dd>
+ <dt>username</dt><dd>String containing the username of the person using the client.</dd>
+ <dt>password</dt><dd>String, password of that user in plain text.</dd>
+</dl>
+<p>
+ The server replies with either 'ok' (no arguments), or 'error' (see below).
+</p>
+
+
+:SUB:The 'get' command
+<p>
+ This command is used to fetch data from the database. It accepts 4 arguments:
+ the type of data to fetch (e.g. visual novels or producers), what part of that
+ data to fetch (e.g. only the VN titles, or the descriptions and relations as
+ well), a filter expression, and lastly some options.
+</p>
+<pre>
+ get <b class="standout">type flags filters options</b>
+</pre>
+<p>
+ <i>type</i> and <i>flags</i> are unescaped strings. The accepted values for <i>type</i> are
+ documented below. <i>flags</i> is a comma-separated list of flags indicating what
+ info to fetch. The filters, available flags and their meaning are documented
+ separately for each type. The last <i>options</i> argument is optional, and
+ influences the behaviour of the returned results. When present, <i>options</i>
+ should be a JSON object with the following members (all are optional):
+</p>
+<dl>
+ <dt>page</dt><dd>
+ integer, used for pagination. Page 1 (the default) returns the first 10
+ results (1-10), page 2 returns the following 10 (11-20), etc.
+ </dd><dt>sort</dt><dd>
+ string, the field to order the results by. The accepted field names differ
+ per type, the default sort field is the ID of the database entry.
+ </dd>
+ <dt>reverse</dt><dd>boolean, default false. Set to true to reverse the order of the results.</dd>
+</dl>
+<p>
+ The following example will fetch basic information and information about the
+ related anime of the visual novel with id = 17:
+</p>
+<pre>
+ get vn basic,anime (id = 17)
+</pre>
+<p>
+ The server will reply with a 'results' message, this message is followed by a
+ JSON object describing the results. This object has three members: 'num', which
+ is an integer indicating the number of results returned, 'more', which is true
+ when there are more results available (i.e. increasing the <i>page</i> option
+ described above will give new results) and 'items', which contains the results
+ as an array of objects. For example, the server could reply to the previous
+ command with the following message:
+</p>
+<pre>
+ results {"num":1, "more":false, "items":[{
+ "id": 17, "title": "Ever17 -the out of infinity-", "original": null,
+ "released": "2002-08-29", "languages": ["en","ja","ru","zh"],
+ "platforms": ["drc","ps2","psp","win"],"anime": []
+ }]}
+</pre>
+<p>
+ Note that the actual result from the server can (and likely will) be formatted
+ differently and that the order of the members may not be the same. What each
+ member means and what possible values they can have differs per type and is
+ documented below.
+</p>
+
+:SUBSUB:get vn
+<p>The following members are returned from a 'get vn' command:</p>
+<table style="margin: 5px 2%; width: 95%">
+ <thead><tr>
+ <td style="width: 80px">Member</td>
+ <td style="width: 50px">Flag</td>
+ <td style="width: 90px">Type</td>
+ <td style="width: 40px">null</td>
+ <td>Description</td>
+ </tr></thead>
+ <tr class="odd">
+ <td>id</td>
+ <td>-</td>
+ <td>integer</td>
+ <td>no</td>
+ <td>Visual novel ID</td>
+ </tr>
+ <tr>
+ <td>title</td>
+ <td>basic</td>
+ <td>string</td>
+ <td>no</td>
+ <td>Main title</td>
+ </tr>
+ <tr class="odd">
+ <td>original</td>
+ <td>basic</td>
+ <td>string</td>
+ <td>yes</td>
+ <td>Original/official title.</td>
+ </tr>
+ <tr>
+ <td>released</td>
+ <td>basic</td>
+ <td>date (string)</td>
+ <td>yes</td>
+ <td>Date of the first release.</td>
+ </tr>
+ <tr class="odd">
+ <td>languages</td>
+ <td>basic</td>
+ <td>array of strings</td>
+ <td>no</td>
+ <td>Can be an empty array when nothing has been released yet.</td>
+ </tr>
+ <tr>
+ <td>platforms</td>
+ <td>basic</td>
+ <td>array of strings</td>
+ <td>no</td>
+ <td>Can be an empty array when unknown or nothing has been released yet.</td>
+ </tr>
+ <tr class="odd">
+ <td>aliases</td>
+ <td>details</td>
+ <td>string</td>
+ <td>yes</td>
+ <td>Comma-separated list of aliases.</td>
+ </tr>
+ <tr>
+ <td>length</td>
+ <td>details</td>
+ <td>integer</td>
+ <td>yes</td>
+ <td>Length of the game, 1-5</td>
+ </tr>
+ <tr class="odd">
+ <td>description</td>
+ <td>details</td>
+ <td>string</td>
+ <td>yes</td>
+ <td>Description of the VN. Can include formatting codes as described in <a href="/d9.3">d9.3</a>.</td>
+ </tr>
+ <tr>
+ <td>links</td>
+ <td>details</td>
+ <td>object</td>
+ <td>no</td>
+ <td>
+ Contains the following members:<br />
+ "wikipedia", string, name of the related article on the English Wikipedia.<br />
+ "encubed", string, the URL-encoded tag used on <a href="http://novelnews.net/">encubed</a>.<br />
+ "renai", string, the name part of the url on <a href="http://renai.us/">renai.us</a>.<br />
+ All members can be <b>null</b> when no links are available or known to us.
+ </td>
+ </tr>
+ <tr class="odd">
+ <td>anime</td>
+ <td>anime</td>
+ <td>array of objects</td>
+ <td>no</td>
+ <td>
+ (Possibly empty) list of anime related to the VN, each object has the following members:<br />
+ "id", integer, <a href="http://anidb.net/">AniDB</a> ID<br />
+ "ann_id", integer, <a href="http://animenewsnetwork.com/">AnimeNewsNetwork</a> ID<br />
+ "nfo_id", string, <a href="http://animenfo.com/">AnimeNfo</a> ID<br />
+ "title_romaji", string<br />
+ "title_kanji", string<br />
+ "year", integer, year in which the anime was aired<br />
+ "type", string<br />
+ All members except the "id" can be <b>null</b>. Note that this data is courtesy of AniDB,
+ and may not reflect the latest state of their information due to caching.
+ </td>
+ </tr>
+ <tr>
+ <td>relations</td>
+ <td>relations</td>
+ <td>array of objects</td>
+ <td>no</td>
+ <td>
+ (Possibly empty) list of related visual novels, each object has the following members:<br />
+ "id", integer<br />
+ "relation", string, relation to the VN<br />
+ "title", string, (romaji) title<br />
+ "original", string, original/official title, can be <b>null</b>.
+ </td>
+ </tr>
+</table>
+<p>Sorting is possible on the 'id', 'title' and 'released' fields.</p><br />
+
+<p>'get vn' accepts the following filter expressions:</p>
+<table style="margin: 5px 2%; width: 95%">
+ <thead><tr>
+ <td style="width: 80px">Field</td>
+ <td style="width: 90px">Value</td>
+ <td style="width: 90px">Operators</td>
+ <td>&nbsp;</td>
+ </tr></thead>
+ <tr class="odd">
+ <td>id</td>
+ <td>integer<br />array of integers</td>
+ <td>= != &gt; &gt;= &lt; &lt;=<br />= !=</td>
+ <td>
+ When you need to fetch info about multiple VNs, it is recommended to do so
+ in one command using an array of integers as value. e.g. (id = [7,11,17]).
+ </td>
+ </tr>
+ <tr>
+ <td>title</td>
+ <td>string</td>
+ <td>= != ~</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr class="odd">
+ <td>original</td>
+ <td>null<br />string</td>
+ <td>= !=<br />= != ~</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr>
+ <td>released</td>
+ <td>null<br />date (string)</td>
+ <td>= !=<br />= != &gt; &gt;= &lt; &lt;=</td>
+ <td>
+ Note that matching on partial dates (released = "2009") doesn't do what
+ you want, use ranges instead, e.g. (released &gt; "2008" and released &lt;= "2009").
+ </td>
+ </tr>
+ <tr class="odd">
+ <td>platforms</td>
+ <td>null<br />string<br />array of strings</td>
+ <td><br />= !=</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr>
+ <td>languages</td>
+ <td>null<br />string<br />array of strings</td>
+ <td><br />= !=</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr class="odd">
+ <td>search</td>
+ <td>string</td>
+ <td>~</td>
+ <td>
+ This is not an actual field, but performs a search on the titles of the visual
+ novel and its releases. Note that the algorithm of this search may change and
+ that it can use a different algorithm than the search function on the website.
+ </td>
+ </tr>
+</table>
+
+:SUBSUB:get release
+<p>Returned members:</p>
+<table style="margin: 5px 2%; width: 95%">
+ <thead><tr>
+ <td style="width: 80px">Member</td>
+ <td style="width: 50px">Flag</td>
+ <td style="width: 90px">Type</td>
+ <td style="width: 40px">null</td>
+ <td>Description</td>
+ </tr></thead>
+ <tr class="odd">
+ <td>id</td>
+ <td>-</td>
+ <td>integer</td>
+ <td>no</td>
+ <td>Release ID</td>
+ </tr>
+ <tr>
+ <td>title</td>
+ <td>basic</td>
+ <td>string</td>
+ <td>no</td>
+ <td>Release title (romaji)</td>
+ </tr>
+ <tr class="odd">
+ <td>original</td>
+ <td>basic</td>
+ <td>string</td>
+ <td>yes</td>
+ <td>Original/official title of the release.</td>
+ </tr>
+ <tr>
+ <td>released</td>
+ <td>basic</td>
+ <td>date (string)</td>
+ <td>yes</td>
+ <td>Release date</td>
+ </tr>
+ <tr class="odd">
+ <td>type</td>
+ <td>basic</td>
+ <td>string</td>
+ <td>no</td>
+ <td>"complete", "partial" or "trial"</td>
+ </tr>
+ <tr>
+ <td>patch</td>
+ <td>basic</td>
+ <td>boolean</td>
+ <td>no</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr class="odd">
+ <td>freeware</td>
+ <td>basic</td>
+ <td>boolean</td>
+ <td>no</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr>
+ <td>doujin</td>
+ <td>basic</td>
+ <td>boolean</td>
+ <td>no</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr class="odd">
+ <td>languages</td>
+ <td>basic</td>
+ <td>array of strings</td>
+ <td>no</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr>
+ <td>website</td>
+ <td>details</td>
+ <td>string</td>
+ <td>yes</td>
+ <td>Official website URL</td>
+ </tr>
+ <tr class="odd">
+ <td>notes</td>
+ <td>details</td>
+ <td>string</td>
+ <td>yes</td>
+ <td>Random notes, can contain formatting codes as described in <a href="/d9.3">d9.3</a></td>
+ </tr>
+ <tr>
+ <td>minage</td>
+ <td>details</td>
+ <td>integer</td>
+ <td>yes</td>
+ <td>Age rating, 0 = all ages.</td>
+ </tr>
+ <tr class="odd">
+ <td>gtin</td>
+ <td>details</td>
+ <td>string</td>
+ <td>yes</td>
+ <td>JAN/UPC/EAN code. This is actually an integer, but formatted as a string to avoid an overflow on 32bit platforms.</td>
+ </tr>
+ <tr>
+ <td>catalog</td>
+ <td>details</td>
+ <td>string</td>
+ <td>yes</td>
+ <td>Catalog number.</td>
+ </tr>
+ <tr class="odd">
+ <td>platforms</td>
+ <td>details</td>
+ <td>array of strings</td>
+ <td>no</td>
+ <td>Empty array when platform is unknown.</td>
+ </tr>
+ <tr>
+ <td>media</td>
+ <td>details</td>
+ <td>array of objects</td>
+ <td>no</td>
+ <td>
+ Objects have the following two members:<br />
+ "medium", string<br />
+ "qty", integer, the quantity. <b>null</b> when it is not applicable for the medium.<br />
+ An empty array is returned when the media are unknown.
+ </td>
+ </tr>
+ <tr class="odd">
+ <td>vn</td>
+ <td>vn</td>
+ <td>array of objects</td>
+ <td>no</td>
+ <td>
+ Array of visual novels linked to this release. Objects have the following members:
+ id, title and original. These are the same as the members of the "get vn" command.
+ </td>
+ </tr>
+ <tr>
+ <td>producers</td>
+ <td>producers</td>
+ <td>array of objects</td>
+ <td>no</td>
+ <td>
+ (Possibly empty) list of producers involved in this release. Objects have the following members:<br />
+ "id", integer<br />
+ "developer", boolean,<br />
+ "publisher", boolean,<br />
+ "name", string, romaji name<br />
+ "original", string, official/original name, can be <b>null</b><br />
+ "type", string, producer type
+ </td>
+ </tr>
+</table>
+<p>Sorting is possible on the 'id', 'title' and 'released' fields.</p><br />
+
+<p>Accepted filters:</p>
+<table style="margin: 5px 2%; width: 95%">
+ <thead><tr>
+ <td style="width: 80px">Field</td>
+ <td style="width: 90px">Value</td>
+ <td style="width: 90px">Operators</td>
+ <td>&nbsp;</td>
+ </tr></thead>
+ <tr class="odd">
+ <td>id</td>
+ <td>integer<br />array of integers</td>
+ <td>= != &gt; &gt;= &lt; &lt;=<br />= !=</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr>
+ <td>vn</td>
+ <td>integer</td>
+ <td>=</td>
+ <td>Find releases linked to the given visual novel ID.</td>
+ </tr>
+ <tr class="odd">
+ <td>producer</td>
+ <td>integer</td>
+ <td>=</td>
+ <td>Find releases linked to the given producer ID.</td>
+ </tr>
+ <tr>
+ <td>title</td>
+ <td>string</td>
+ <td>= != ~</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr class="odd">
+ <td>original</td>
+ <td>null<br />string</td>
+ <td>= !=<br />= != ~</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr>
+ <td>released</td>
+ <td>null<br />date (string)</td>
+ <td>= !=<br />= != &gt; &gt;= &lt; &lt;=</td>
+ <td>Note about released filter for the vn type also applies here.</td>
+ </tr>
+ <tr class="odd">
+ <td>patch</td>
+ <td>boolean</td>
+ <td>=</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr>
+ <td>freeware</td>
+ <td>boolean</td>
+ <td>=</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr class="odd">
+ <td>doujin</td>
+ <td>boolean</td>
+ <td>=</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr>
+ <td>type</td>
+ <td>string</td>
+ <td>= !=</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr class="odd">
+ <td>gtin</td>
+ <td>int</td>
+ <td>= !=</td>
+ <td>Value can also be escaped as a string (if you risk an integer overflow otherwise)</td>
+ </tr>
+ <tr>
+ <td>catalog</td>
+ <td>string</td>
+ <td>= !=</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr class="odd">
+ <td>languages</td>
+ <td>string<br />array of strings</td>
+ <td>= !=</td>
+ <td>&nbsp;</td>
+ </tr>
+</table>
+
+:SUBSUB:get producer
+<p>Returned members:</p>
+<table style="margin: 5px 2%; width: 95%">
+ <thead><tr>
+ <td style="width: 80px">Member</td>
+ <td style="width: 50px">Flag</td>
+ <td style="width: 90px">Type</td>
+ <td style="width: 40px">null</td>
+ <td>Description</td>
+ </tr></thead>
+ <tr class="odd">
+ <td>id</td>
+ <td>-</td>
+ <td>integer</td>
+ <td>no</td>
+ <td>Producer ID</td>
+ </tr>
+ <tr>
+ <td>name</td>
+ <td>basic</td>
+ <td>string</td>
+ <td>no</td>
+ <td>(romaji) producer name</td>
+ </tr>
+ <tr class="odd">
+ <td>original</td>
+ <td>basic</td>
+ <td>string</td>
+ <td>yes</td>
+ <td>Original/official name</td>
+ </tr>
+ <tr>
+ <td>type</td>
+ <td>basic</td>
+ <td>string</td>
+ <td>no</td>
+ <td>Producer type</td>
+ </tr>
+ <tr class="odd">
+ <td>language</td>
+ <td>basic</td>
+ <td>string</td>
+ <td>no</td>
+ <td>Primary language</td>
+ </tr>
+ <tr>
+ <td>links</td>
+ <td>details</td>
+ <td>object</td>
+ <td>no</td>
+ <td>
+ External links, object has the following members:<br />
+ "homepage", official homepage,<br />
+ "wikipedia", title of the related article on the English wikipedia.<br />
+ Both values can be <b>null</b>.
+ </td>
+ </tr>
+ <tr class="odd">
+ <td>aliases</td>
+ <td>details</td>
+ <td>string</td>
+ <td>yes</td>
+ <td>Comma separated list of alternative names</td>
+ </tr>
+ <tr>
+ <td>description</td>
+ <td>details</td>
+ <td>string</td>
+ <td>yes</td>
+ <td>Description/notes of the producer, can contain formatting codes as described in <a href="/d9.3">d9.3</a></td>
+ </tr>
+ <tr class="odd">
+ <td>relations</td>
+ <td>relations</td>
+ <td>array of objects</td>
+ <td>no</td>
+ <td>
+ (possibly empty) list of related producers, each object has the following members:<br />
+ "id", integer, producer ID,<br />
+ "relation", string, relation to the current producer,<br />
+ "name", string,<br />
+ "original", string, can be <b>null</b>
+ </td>
+ </tr>
+</table>
+<p>Sorting is possible on the 'id' and 'name' fields.</p><br />
+
+<p>The following filters are recognised:</p>
+<table style="margin: 5px 2%; width: 95%">
+ <thead><tr>
+ <td style="width: 80px">Field</td>
+ <td style="width: 90px">Value</td>
+ <td style="width: 90px">Operators</td>
+ <td>&nbsp;</td>
+ </tr></thead>
+ <tr class="odd">
+ <td>id</td>
+ <td>integer<br />array of integers</td>
+ <td>= != &gt; &gt;= &lt; &lt;=<br />= !=</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr>
+ <td>name</td>
+ <td>string</td>
+ <td>= != ~</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr class="odd">
+ <td>original</td>
+ <td>null<br />string</td>
+ <td>= !=<br />= != ~</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr>
+ <td>type</td>
+ <td>string</td>
+ <td>= !=</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr class="odd">
+ <td>language</td>
+ <td>string<br />array of strings</td>
+ <td>= !=</td>
+ <td>&nbsp;</td>
+ </tr>
+ <tr>
+ <td>search</td>
+ <td>string</td>
+ <td>~</td>
+ <td>Not an actual field. Performs a search on the title, original and aliases fields.</td>
+ </tr>
+</table>
+
+
+
+:SUB:The 'error' response
+<p>
+ Every command to the server can receive an 'error' response, this response has one
+ argument: a JSON object containing at least a member named "id", which identifies
+ the error, and a "msg", which contains a human readable message explaining what
+ went wrong. Other members are also possible, depending on the value of "id".
+ Example error message:
+</p>
+<pre>
+ error {"id":"parse", "msg":"Invalid command or argument"}
+</pre>
+<p>
+ Note that the value of "msg" is not directly linked to the error identifier:
+ the message explains what went wrong in more detail, there are several
+ different messages for the same id. The following error identifiers are currently
+ defined:
+</p>
+<dl>
+ <dt>parse</dt><dd>Syntax error or unknown command.</dd>
+ <dt>missing</dt><dd>A JSON object argument is missing a required member. The name of which is given in the additional "field" member.</dd>
+ <dt>badarg</dt><dd>A JSON value is of the wrong type or in the wrong format. The name of the incorrect field is given in a "field" member.</dd>
+ <dt>needlogin</dt><dd>Need to be logged in to issue this command.</dd>
+ <dt>throttled</dt><dd>
+ You have used too many server resources within a short time, and need to wait
+ a bit before sending the next command. The type of throttle is given in the
+ "type" member, and the "minwait" and "fullwait" members tell you how long you
+ need to wait before sending the next command and when you can start bursting
+ again (this is the recommended waiting time), respectively. Both values are in
+ seconds, with one decimal after the point.
+ </dd>
+ <dt>auth</dt><dd>(login) Incorrect username/password combination.</dd>
+ <dt>loggedin</dt><dd>(login) Already logged in. Only one successful login command can be issues on one connection.</dd>
+ <dt>sesslimit</dt><dd>(login) Too many open sessions for the current user.</dd>
+ <dt>gettype</dt><dd>(get) Unknown type argument to the 'get' command.</dd>
+ <dt>getinfo</dt><dd>(get) Unknown info flag to the 'get' command. The name of the unrecognised flag is given in an additional "flag" member.</dd>
+ <dt>filter</dt><dd>(get) Unknown filter field or invalid combination of field/operator/argument type. Includes three additional members: "field", "op" and "value" of the incorrect expression.</dd>
+</dl>
+
+
+
diff --git a/data/docs/8 b/data/docs/8
deleted file mode 100644
index 701f5f70..00000000
--- a/data/docs/8
+++ /dev/null
@@ -1,81 +0,0 @@
-:TITLE:Development roadmap
-:INC:index
-
-
-:SUB:Some notes
-This TODO list is just a place for Yorhel to write down his plans and ideas
-for the upcoming versions of VNDB. Keep in mind that probably not everything
-written down here will actually see the light of day.<br />
-<br />
-The full source code of the site is available on a
-<a href="http://git.blicky.net/vndb.git/">git repository</a>, you can use it
-to track changes to the code or even to run your own version of VNDB.<br />
-<br />
-There is a <a href="http://beta.vndb.org/">beta version</a> of VNDB available
-for testing. New features will be implemented there and tested before getting
-uploaded to the actual website. Everyone is free to play around and use that
-beta version as a sandbox. Keep in mind, however, that all changes you make
-on the beta are not permanent, and will be reverted whenever the beta is
-synchronised with a more recent version of the database.<br /><br />
-Feel free to comment about the TODO list and to suggest new features on the
-<a href="/t/db">discussion board</a> or on <a href="irc://irc.synirc.net/vndb">
-IRC</a>.
-<br /><br />
-<b>Last update: 2009-02-12</b><br /><br />
-
-
-:SUB:Next version (2.3)
-<ol>
- <li>Catalog numbers for releases (done)</li>
- <li>Changing release statusses from VN page using AJAX (done)</li>
- <li>Random VN quotes on footer of every page (done)</li>
- <li>Platform icons on homepage (done)</li>
- <li>Tagging system (...will take a while)</li>
-</ol>
-
-
-:SUB:(Hopefully) soon
-<ol>
- <li>Advanced notification system</li>
- <li>More VNList filters &amp; stats</li>
- <li>Release calendar</li>
-</ol>
-
-
-:SUB:Later
-<ol>
- <li>Filters on /v/* to exclude blacklisted and/or VNs on a users list from the results</li>
- <li>Producer relations</li>
- <li><b style="font-weight: normal; text-decoration: line-through">VN Staff and Character database</b><br />
- <i>Probably not going to make it into VNDB, unless someone wants to be in charge of this</i></li>
- <li>Soundtrack listing<br />
- <i>Work together with <a href="http://vgmdb.net/">VGMdb</a>.</i></li>
- <li>Manga relations<br />
- <i>Looking for a good and comprehensive manga database fetch info from</i></li>
- <li>Reviews</li>
- <li>Walkthroughs/guides?<br />
- <i>Let each user maintain his own walkthrough, or just one collaboratively edited walkthough per VN?</i></li>
- <li>Image quality/resolution field to releases</li>
- <li>Some kind of minimal API for the hardcore VNDB fans (most likely using the JSON-RPC 1.0 Specification)</li>
- <li>Automatic uploading of cover images from a URL</li>
- <li>Scans of the packaging for releases</li>
- <li>Store which fields have been changed for revisions using one-character-code indicators</li>
- <li>Improved platform for fan translations (separated from releases)</li>
- <li>'currently down/offline' flag for official website links</li>
-</ol>
-
-
-:SUB:Technical things that need improvements
-<p>
- (I'm not expecting anyone to understand this, just random notes for myself)
-</p>
-<ol>
- <li>Set PostgreSQL charset to UTF-8</li>
- <li>Make use of PostgreSQL's fulltext search functionality to power the VN search</li>
- <li>Proper implementation of the 'hidden' flag for v/r/p entries</li>
- <li>Let VNDB and Multi communicate via SQL (and use schemas to separate the tables)</li>
- <li>More secure login system</li>
- <li>Use PostgreSQL stored procedures to insert revisions (using composite types, arrays, etc as arguments)</li>
- <li>Update the users.c_changes column on hiding/unhiding an item</li>
-</ol>
-
diff --git a/data/docs/9 b/data/docs/9
index f5ee46ab..fedbd2b0 100644
--- a/data/docs/9
+++ b/data/docs/9
@@ -62,6 +62,10 @@
</dd><dt>[raw]</dt><dd>
Show off your formatting code skills by putting anything you don't want to have formatted in a [raw]
tag. Any of the formatting codes mentioned above are ignored within a [raw] .. [/raw] block.
+ </dd><dt>[code]</dt><dd>
+ Similar to [raw], except that the text within the [code] .. [/code] block is
+ formatted in a fixed width font and surrounded by a nice box to keep it
+ separate from the rest of your post.
</dd>
</dl>
<p>
diff --git a/data/docs/9.cs b/data/docs/9.cs
index f5ceef38..068341ca 100644
--- a/data/docs/9.cs
+++ b/data/docs/9.cs
@@ -63,6 +63,10 @@
</dd><dt>[raw]</dt><dd>
Předveďte své dovednosti ve formátovacím kódu umístěním čehokoliv, co nechcete aby bylo naformátováno do [raw]
tagu. Jakýkoliv formátovací kód do teď zmíněný bude v [raw] .. [/raw] bloku ignorován.
+ </dd><dt>[code]</dt><dd>
+ Podobá se tagu [raw], až na to, že text v [code] .. [/code] bloku je formátován
+ do fontu s pevnou šířkou a ohraničen pěkným rámečkem pro oddělení od zbytku
+ vašeho příspěvku.
</dd>
</dl>
<p>
diff --git a/data/docs/9.ru b/data/docs/9.ru
index fde47f1f..34aad612 100644
--- a/data/docs/9.ru
+++ b/data/docs/9.ru
@@ -72,6 +72,10 @@
Покажите ваши уникальные способности по форматированию кода, располагая
всё, что не должно быть отформатировано, внутри блока [raw] .. [/raw]. Любые
вышеперечисленные коды будут проигнорированы.
+ </dd><dt>[code]</dt><dd>
+ Действие этого тега похоже на [raw], с той лишь разницей, что для текста
+ в блоке [code]...[/code] будет использован моноширинный шрифт и код
+ будет помещен в красивую рамочку, чтобы отделить его от остального текста.
</dd>
</dl>
<p>
diff --git a/data/docs/index b/data/docs/index
index 0c94b71f..02c8f769 100644
--- a/data/docs/index
+++ b/data/docs/index
@@ -9,5 +9,6 @@
<li><a href="/d9">Discussion board</a></li>
<li><a href="/d6">FAQ</a></li>
<li><a href="/d7">About us</a></li>
+ <li><a href="/d11">Database API</a></li>
<li><a href="/d8">Development</a></li>
</ul>
diff --git a/data/docs/index.cs b/data/docs/index.cs
index 08c8b500..650e2aa6 100644
--- a/data/docs/index.cs
+++ b/data/docs/index.cs
@@ -9,6 +9,7 @@
<li><a href="/d9">Diskusní boardy</a></li>
<li><a href="/d6">FAQ</a></li>
<li><a href="/d7">O nás</a></li>
+ <li><a href="/d11">Databáze API</a></li>
<li><a href="/d8">Vývoj</a></li>
</ul>
diff --git a/data/docs/index.ru b/data/docs/index.ru
index 28e8620a..c2668c40 100644
--- a/data/docs/index.ru
+++ b/data/docs/index.ru
@@ -9,5 +9,6 @@
<li><a href="/d9">Форум</a></li>
<li><a href="/d6">ЧаВо</a></li>
<li><a href="/d7">О нас</a></li>
+ <li><a href="/d11">API базы данных</a></li>
<li><a href="/d8">Разработка</a></li>
-</ul> \ No newline at end of file
+</ul>
diff --git a/data/global.pl b/data/global.pl
index 6dae908f..b67ae2f7 100644
--- a/data/global.pl
+++ b/data/global.pl
@@ -59,23 +59,7 @@ our %S = (%S,
'spa' => [ 6, 'ori' ],
'ori' => [ 7, 'spa' ],
},
- age_ratings => {
- -1 => [ 'Unknown' ],
- 0 => [ 'All ages' ,'CERO A' ],
- 6 => [ '6+' ],
- 7 => [ '7+' ],
- 8 => [ '8+' ],
- 9 => [ '9+' ],
- 10 => [ '10+' ],
- 11 => [ '11+' ],
- 12 => [ '12+', 'CERO B' ],
- 13 => [ '13+' ],
- 14 => [ '14+' ],
- 15 => [ '15+', 'CERO C' ],
- 16 => [ '16+' ],
- 17 => [ '17+', 'CERO D' ],
- 18 => [ '18+', 'CERO Z' ],
- },
+ age_ratings => [undef, 0, 6..18],
release_types => [qw|complete partial trial|],
platforms => [qw|win dos lin mac dvd gba msx nds nes p98 psp ps1 ps2 ps3 drc sat sfc wii xb3 oth|],
media => {
@@ -117,6 +101,7 @@ our %S = (%S,
our %M = (
log_dir => $ROOT.'/data/log',
modules => {
+ #API => {}, # disabled by default, not really needed
RG => {},
Image => {},
Sitemap => {},
diff --git a/data/lang.txt b/data/lang.txt
index 1310d8fd..43c8d6f2 100644
--- a/data/lang.txt
+++ b/data/lang.txt
@@ -517,7 +517,7 @@ hu : Folytatás
en : Prequel
ru : Предыстория
cs : Prequel
-hu : Előzmény
+hu : Előd
:_vnrel_set
en : Same setting
@@ -547,7 +547,7 @@ hu : Mellék történet
en : Parent story
ru : Исходный сюжет
cs : Mateřský příběh
-hu : Szüllő történet
+hu : Fő történet
:_vnrel_ser
en : Same series
@@ -613,7 +613,7 @@ hu : Alválalat
en : Parent producer
ru : Исходная компания
cs : Mateřský producent
-hu : Szüllő készítő
+hu : Fő készítő
:_prodrel_imp
en : Imprint
@@ -712,7 +712,7 @@ hu : Videoklip
en : Announcements
ru : Объявления
cs : Oznámení
-hu : Hirdetések
+hu : Hírek
:_dboard_db
en : VNDB Discussions
@@ -997,6 +997,36 @@ cs : Vyřazeno
hu : Lemondva
+# Age ratings
+
+:_minage_null
+en : Unknown
+ru : Неизвестно
+cs : Není známo
+hu : Ismeretlen
+
+:_minage_all
+en : All ages
+ru : Все возраста
+cs : Pro všechny věky
+hu : Nincs korhatár
+
+# "Ages [_1] and up", but shorter
+:_minage_age
+en : [_1]+
+ru : [_1]+
+cs : [_1]+
+hu : [_1]+
+
+# [_1] is an example of an age rating, like 'CERO A', 'CERO D', etc.
+# this string is appended to the other _minage_* strings
+:_minage_example
+en : (e.g. [_1])
+ru : (т.е. [_1])
+cs : (např. [_1])
+hu : (p.l. [_1])
+
+
# Form messages
:_formerr_e_login_failed
@@ -2146,6 +2176,18 @@ ru : a.k.a. [_1]
cs : a.k.a. [_1]
hu :
+:_prodpage_homepage
+en : Homepage
+ru : Домашняя страничка
+cs : Domovská stránka
+hu : Weboldal
+
+:_prodpage_wikipedia
+en : Wikipedia
+ru : Википедия
+cs : Wikipedie
+hu :
+
:_prodpage_vnrel
en : Visual Novel Relations
ru : Связи новелл
@@ -2168,7 +2210,7 @@ hu : fejlesztő
en : publisher
ru : издатель
cs : vydavatel
-hu : kiadó
+hu : forgalmazó
# producer diff fields
@@ -2209,6 +2251,12 @@ ru : Веб-сайт
cs : Internetová stránka
hu : Weboldal
+:_revfield_p_l_wp
+en : Wikipedia link
+ru : Ссылка на Википедию
+cs : Odkaz na Wikipedii
+hu :
+
:_revfield_p_desc
en : Description
ru : Описание
@@ -2234,7 +2282,7 @@ hu : semmi
en : Relation graph for [_1]
ru : Схема отношений для [_1]
cs : Graf vztahů pro producenta [_1]
-hu : [_1] összefüggés gráfja
+hu : [_1] összefüggés grafikonja
# Add/Edit producer
@@ -2305,6 +2353,12 @@ ru : Веб-сайт
cs : Internetová stránka
hu : Weboldal
+:_pedit_form_wikipedia
+en : Wikipedia link
+ru : Ссылка на Википедию
+cs : Odkaz na Wikipedii
+hu :
+
:_pedit_form_desc
en : Description
ru : Описание
@@ -2539,7 +2593,7 @@ hu : fejlesztő
en : publisher
ru : издатель
cs : vydavatel
-hu : kiadó
+hu : forgalmazó
# Information table (on every release page)
@@ -2662,7 +2716,7 @@ hu : [quant,_1,Fejlesztő,Fejlesztők]
en : [quant,_1,Publisher,Publishers]
ru : [quant,_1,Издатель,Издатели,Издатели]
cs : [quant,_1,Vydavatel,Vydavatelé,Vydavatelů]
-hu : [quant,_1,Kiadó,Kiadók]
+hu : [quant,_1,Forgalmazó,Forgalmazók]
:_relinfo_catalog
en : Catalog no.
@@ -2674,7 +2728,7 @@ hu : Katalógus szám
en : Links
ru : Ссылки
cs : Odkazy
-hu : Linkek
+hu : Hivatkozások
:_relinfo_website
en : Official website
@@ -2945,7 +2999,7 @@ hu : Fejlesztő
en : Publisher
ru : Издатель
cs : Vydavatel
-hu : Kiadó
+hu : Forgalmazó
:_redit_form_prod_both
en : Both
@@ -4573,6 +4627,12 @@ ru : Популярность
cs : Popularita
hu : Népszerűség
+:_vnbrowse_col_rating
+en : Rating
+ru : Рейтинг
+cs : Hodnocení
+hu : Értékelés
+
:_vnbrowse_tagign_title
en : The following tags were ignored:
ru : Следующие теги были пропущены:
@@ -4754,13 +4814,13 @@ hu : Hossz
en : External links
ru : Внешние ссылки
cs : Externí odkazy
-hu : Külső linkek
+hu : Külső hivatkozások
:_vnedit_anime
en : Anime
ru : Аниме
cs : Anime
-hu :
+hu : Kapcsolódó anime
:_vnedit_anime_msg
en : Whitespace separated list of [url,http://anidb.net/,AniDB] anime IDs.
@@ -4858,13 +4918,13 @@ hu : Összefüggés hozzáadása
en : is a
ru : это
cs : je
-hu*: -
+hu : -
:_vnedit_rel_of
en : of
ru : для
cs : titulu
-hu*: -
+hu : -
:_vnedit_rel_addbut
en : add
@@ -5091,7 +5151,7 @@ hu : Figyelem: ha ez tovább tart mint 30 másodperc, akkor a mivelünk van a go
en : Relation graph for [_1]
ru : Схема связей для [_1]
cs : Graf vztahů pro vizuální novelu [_1]
-hu : Összefüggés gráf [_1]-hoz
+hu : Összefüggés grafikon [_1]-hoz
# VN Diff viewer (/v+.+)
@@ -5130,7 +5190,7 @@ hu : Hossz
en : ~[no link~]
ru : ~[нет ссылки~]
cs : ~[žádný odkaz~]
-hu : ~[nincs link~]
+hu : ~[nincs hivatkozás~]
:_vndiff_none
en : ~[none~]
@@ -5291,6 +5351,24 @@ ru : Ссылки
cs : Odkazy
hu : Linkek
+:_vnpage_l_wp
+en : Wikipedia
+ru : Википедия
+cs : Wikipedie
+hu :
+
+:_vnpage_l_encubed
+en : Encubed
+ru : Encubed
+cs : Encubed
+hu :
+
+:_vnpage_l_renai
+en : Renai.us
+ru : Renai.us
+cs : Renai.us
+hu :
+
:_vnpage_description
en : Description
ru : Описание
@@ -5337,7 +5415,7 @@ hu : Fejlesztő
en : Publishers
ru : Издатели
cs : Vydavatel
-hu : Kiadó
+hu : Forgalmazók
:_vnpage_relations
en : Relations
@@ -5545,17 +5623,23 @@ ru : Недавно проголосовали
cs : Poslední hlasy
hu : Legútóbbi szavazatok
-:_votestats_pop_title
-en : Popularity
-ru : Популярность
-cs : Popularita
-hu : Népszerűsség
+:_votestats_rank_title
+en : Ranking
+ru : Место
+cs : Hodnocení
+hu : Ranglista
+
+:_votestats_rank_pop
+en : Popularity: ranked #[_1] with a score of [_2]
+ru : Популярность: #[_1] место с количеством баллов, равным [_2]
+cs : Popularita: [_1]. místo se skóre [_2]
+hu : Népszerűség: [_1]. hely [_2] pontszámmal
-:_votestats_pop_sum
-en : Ranked #[_1] out of [_2] with a score of [_3].
-ru : Рейтинг - #[_1] из [_2], средний балл - [_3].
-cs : Hodnoceno na [_1]. místě z celkem [_2] se skóre [_3].
-hu : [_1]. helyezet a [_2] bejegyzésből [_3] pontszámmal.
+:_votestats_rank_rat
+en : Bayesian rating: ranked #[_1] with a rating of [_2]
+ru : Рейтинг методом Байезия: #[_1] место с рейтингом [_2]
+cs : Bayesovo hodnocení: [_1]. místo se skóre [_2]
+hu : Bayes-i ranglista: [_1]. hely [_2]-s értékeléssel
@@ -5749,5 +5833,5 @@ hu : Nem támogatott
en : Your browser sucks, it doesn't have the functionality to render our nice relation graphs.
ru : Ваш браузер настолько отстоен, что даже не может отрендерить наши красивые графики.
cs : Váš prohlížeč je na nic, nepodporuje vykreslování našich krásných vztahových grafů.
-hu : A böngésződ szar, nem képes megjeleníteni a szép összefüggés gráfunkat.
+hu : A böngésződ szar, nem képes megjeleníteni a szép összefüggés grafikonunkat.
diff --git a/data/style.css b/data/style.css
index ff0844ad..d6542477 100644
--- a/data/style.css
+++ b/data/style.css
@@ -120,6 +120,14 @@ b.spoiler_shown { font-weight: normal }
text-align: left;
}
.linethrough { text-decoration: line-through }
+ pre {
+ padding:1px 5px;
+ margin: 5px 15px;
+ border: 1px dotted $border$;
+ border-right: none;
+ border-left: 1px solid $border$;
+ background: url($_boxbg$) repeat;
+}
@@ -778,7 +786,8 @@ div.scr_uploader { visibility: hidden; overflow: hidden; width: 1px; height: 1px
.vnbrowse .tc_s { width: 65px }
.vnbrowse .tc2 { text-align: right; padding: 0; }
.vnbrowse .tc3 { padding: 0; }
-.vnbrowse .tc5 { text-align: right; padding-right: 10px; }
+.vnbrowse .tc5 { text-align: right; padding-right: 10px }
+.vnbrowse .tc6 { width: 80px }
#advselect {
text-align: center;
display: block;
@@ -897,7 +906,8 @@ div.scr_uploader { visibility: hidden; overflow: hidden; width: 1px; height: 1px
/***** Documentation pages *****/
.docs { padding: 0 15% 20px 15%; }
-.docs h3 { margin-top: 25px; }
+.docs h3 { margin-top: 30px; font-size: 14px }
+.docs h4 { margin-top: 15px; font-size: 12px }
.docs dd { padding-bottom: 5px; margin-left: 120px; }
.docs dt { float: left }
.docs ul.index { display: block; float: right; width: 150px; padding: 2px; margin: 0 0 10px 5px; background: url($_boxbg$) repeat; border: 1px solid $border$; }