summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2009-07-06 18:48:56 +0000
committerJason A. Donenfeld <Jason@zx2c4.com>2009-07-06 18:48:56 +0000
commitec2b943099c8f8643f1271d95c238b661957dd09 (patch)
tree61153ccc0a83a4b1c85a5cbcd49802420edae3f6
parentRemoved non boxee assets (diff)
downloadAnyClip4Boxee-ec2b943099c8f8643f1271d95c238b661957dd09.tar.xz
AnyClip4Boxee-ec2b943099c8f8643f1271d95c238b661957dd09.zip
Removed non boxee assets
git-svn-id: https://anyclip.svn.beanstalkapp.com/anyclip/branches/iterations/BoxeeApp/0.1@502 4cc9b9cd-7cf8-4f8c-937d-e7c95023a307
-rw-r--r--backend/.htpasswd1
-rw-r--r--backend/apitest.php12
-rw-r--r--backend/exploitpoc.php31
3 files changed, 0 insertions, 44 deletions
diff --git a/backend/.htpasswd b/backend/.htpasswd
deleted file mode 100644
index 8322981..0000000
--- a/backend/.htpasswd
+++ /dev/null
@@ -1 +0,0 @@
-exploit:RNbjEj5B4H0Zc
diff --git a/backend/apitest.php b/backend/apitest.php
deleted file mode 100644
index 95efc38..0000000
--- a/backend/apitest.php
+++ /dev/null
@@ -1,12 +0,0 @@
-<?php
-require_once("api.php");
-$api = new AnyClip("47ff842f-2eed-4715-9520-741e43342c8b");
-for ($current = 0, $titles = $api->titles($current, 20); $current < $titles->TotalItemCount; $current += 20, $titles = $api->titles($current, 20)) {
- foreach ($titles->Items as $title) {
- if (count($api->clipsForTitle($title->Code)->Items) > 0) {
- echo $title->Name;
- echo "\n";
- }
- }
-}
-?> \ No newline at end of file
diff --git a/backend/exploitpoc.php b/backend/exploitpoc.php
deleted file mode 100644
index 30ab96e..0000000
--- a/backend/exploitpoc.php
+++ /dev/null
@@ -1,31 +0,0 @@
-<html>
-<head>
-<title>AnyClip Full Movies</title>
-<script type="text/javascript" src="http://www.jeroenwijering.com/embed/swfobject.js"></script>
-</head>
-<body>
-<script type="text/javascript">
-function setmovie(select) {
- var so = new SWFObject('http://www.longtailvideo.com/jw/embed/player.swf','mpl','704','480','9');
- so.addParam('allowscriptaccess','always');
- so.addParam('allowfullscreen','true');
- so.addParam('flashvars','&file=' + select.options[select.selectedIndex].value + '_400.flv&autostart=true&streamer=rtmp://ne.fms.edgecastcdn.net/000E09/movies/&controlbar=over');
- so.write('player');
-}
-</script>
-
-<select onchange="setmovie(this)">
-<option disabled selected>Select a Movie:</option>
-<?php
-require_once("api.php");
-$api = new AnyClip("47ff842f-2eed-4715-9520-741e43342c8b");
-for($current = 0, $titles = $api->titles($current, 20); $current < $titles->TotalItemCount; $current += 20, $titles = $api->titles($current, 20)) {
- foreach ($titles->Items as $title) {
- echo "<option value=\"".$title->Code."\">".$title->Name."</option>";
- }
-}
-?>
-</select>
-<div id="player"></div>
-</body>
-</html> \ No newline at end of file