blob: 9a70f9437f19d89d42e750a5fba293f56656539f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?php header("Content-Type: text/html; charset=UTF-8"); ?>
<?php require_once("authenticate.php"); ?>
<?php if(!@eregi("MSIE", $_SERVER['HTTP_USER_AGENT']) && !@eregi("Internet Explorer", $_SERVER['HTTP_USER_AGENT'])) { ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<?php } ?>
<html>
<head>
<title><?php echo SITE_NAME; ?></title>
<link href="style.css" rel="stylesheet" type="text/css">
<script language="JavaScript" src="swfobject.js"></script>
<?php if(@eregi("MSIE", $_SERVER['HTTP_USER_AGENT']) || @eregi("Internet Explorer", $_SERVER['HTTP_USER_AGENT'])) { ?>
<script language="JavaScript" src="ieadditions.js"></script>
<?php } ?>
<script language="JavaScript" src="musicajax.js"></script>
<?php if($_GET["playfirst"] == "true") { ?>
<script language="JavaScript">playFirst = true;</script>
<?php } ?>
</head>
<body>
<div id="mainBox">
<div id="header">
<?php echo SITE_NAME.'<font id="subheader">'.SITE_BETA.'</font>'; ?>
</div>
<div id="filterBar">Filter: <input onFocus="filterResultsTimer()" onSelect="filterResultsTimer()" onChange="filterResultsTimer()" onKeyPress="filterResultsTimer()" id="filter" value="<?php if(isset($_GET["query"])) { echo htmlentities($_GET["query"]); } else { echo SITE_DEFAULT_SEARCH; } ?>"> <select onChange="filterResults()" id="filtertype"><?php
$filtertypes = array("all"=>"All", "artist"=>"Artist", "album"=>"Album", "title"=>"Title", "sha1"=>"Hash");
foreach($filtertypes as $key=>$value)
{
echo "<option value=\"$key\"";
if($_GET["querytype"] == $key)
{
echo " selected";
}
echo ">$value</option>";
}
?></select> <img height="16" width="16" src="loading.gif" id="loading"></div>
<div id="counter"></div>
<div id="listings"></div>
<table id="instructions" cellspacing="0" cellpadding="0" border="0" width="100%"><tr>
<td align="left"><img src="download.gif" width="10" height="10">=Add to Download Basket<br><img src="remove.gif" width="10" height="10">=Remove from Download Basket</td>
<td align="center"><span id="flashplayer"></span><iframe id="iframe" frameborder="0" scrolling="no" width="0" height="0"></iframe></td>
<td align="right"><a href="javascript:addEntireList();">Add Entire List to Download Basket <img border="0" src="download.gif" width="10" height="10"></a></td>
</tr></table>
<div id="downloads"></div>
<span id="copyright">ZX2C4 Music is © Copyright 2004-2012 Jason A. Donenfeld. All Rights Reserved.</span>
</div>
<div id="underDevelopment">This web application is under active development. <a href="mailto:ZX2C4MusicSuggestions@zx2c4.com">Comments? Suggestions? Bugs?</a></div>
<p>
<a href="http://git.zx2c4.com/ZX2C4Music/tree/">Source Code</a><br>
<a href="statistics.php">Statistics</a><br>
<a href="updatedatabase.php">Update Database</a><br>
<a href="updateapplication.php">Upgrade Application</a><br>
<a href="http://www.zx2c4.com">ZX2C4.COM</a>
</p>
</body>
</html>
|