anitv-schedule/api.html
2023-02-23 23:35:29 +09:00

93 lines
3.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<title>AniTV Schedule - API</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- CSS -->
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/bootstrap.css" />
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/bootstrap-app.css" />
<!-- JS -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/clock.js"></script>
</head>
<body>
<div class="topbar">
<div class="fill">
<div class="container">
<a class="brand" href="#">AniTV Schedule</a>
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li class="active"><a href="api.html" data-view="api">API</a></li>
<li><a href="manage.html" data-view="manage">Manage</a></li>
<li><a href="history.html" data-view="history">History</a></li>
</ul>
<p class="pull-right" id="clock"></p>
</div>
</div>
</div>
<div class="container">
<div class="content" id="view">
<div class="page-header">
<h1>API <small>create and innovate ideas</small></h1>
</div>
<div class="row">
<div class="text">
<h3>Documentation</h3>
<div class="text">
<h4>List N Shows via JSON</h4>
<dl>
<dt>Syntax</dt>
<dd>
GET <a href="json.php?controller=schedule">/json.php?controller=schedule</a><br/>
GET <a href="json.php?controller=schedule&total=500">/json.php?controller=schedule&amp;total=&lt;number&gt;</a><br/>
GET <a href="json.php?controller=schedule&total=500&nowplaying=false">/json.php?controller=schedule&amp;total=&lt;number&gt;&amp;nowplaying=&lt;boolean&gt;</a>
</dd>
<dt>Description</dt>
<dd>
This call will output the same schedule displayed on the index. The variable &lt;number&gt; in the second call is the total amount of items returned.<br/>
The variable &lt;boolean&gt; when used must be either TRUE or FALSE. This determines whether or not to display programs that are currently on the air.
</dd>
</dl>
<h4>Query/Search via JSON</h4>
<dl>
<dt>Syntax</dt>
<dd>
GET <a href="json.php?controller=search&query=bakuman">/json.php?controller=search&amp;query=&lt;string&gt;</a>
</dd>
<dt>Description</dt>
<dd>
The variable &lt;string&gt; must be replaced with the string that will be queried for results. All characters are allowed and the wildcard character is an asterik (*).
</dd>
</dl>
</div>
<h3>Libraries</h3>
<div class="text">
<dl>
<dt>mIRC</dt>
<dd><a href="scripts/anitv.mrc">AniTV mIRC Script</a> by prinny</dd>
<dt>TCL</dt>
<dd><a href="scripts/anitv.tcl">AniTV Eggdrop/TCL Script</a> by prinny</dd>
</dl>
</div>
</div>
</div>
</div>
<footer>
<p>AniTV Schedule 0.2.0 &COPY; TEAM SEPTiCORE 2011</p>
</footer>
</div>
</body>
</html>