]> gitweb.fluxo.info Git - lorea/elgg.git/commitdiff
Not giss.tv support for general release.
authorSem <sembrestels@riseup.net>
Thu, 10 Nov 2011 22:40:03 +0000 (23:40 +0100)
committerSem <sembrestels@riseup.net>
Thu, 10 Nov 2011 22:40:03 +0000 (23:40 +0100)
lib/gisstv.php [deleted file]
lib/videolist.php
views/default/videolist/watch/gisstv.php [deleted file]

diff --git a/lib/gisstv.php b/lib/gisstv.php
deleted file mode 100644 (file)
index 24e1134..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-
-function videolist_parseurl_gisstv($url) {
-       $parsed = parse_url($url);
-       $path = explode('/', $parsed['path']);
-
-       if ($parsed['host'] != 'giss.tv' || $path[1] != 'dmmdb') {
-               return false;
-       }
-       
-       if($path[2] == 'contents' && isset($path[3])) {
-               $video_id = $path[3];
-       } elseif($path[3] == 'contents' && isset($path[4])) {
-               $video_id = $path[4];
-       } else {
-               return false;
-       }
-       
-       return array(
-               'videotype' => 'gisstv',
-               'video_id' => $video_id,
-       );
-}
-
-function videolist_get_data_gisstv($parsed){
-       $video_id = $parsed['video_id'];
-       
-       $buffer = file_get_contents('http://giss.tv/dmmdb//rss.php');
-       $xml = new SimpleXMLElement($buffer);
-       
-       $data = array();
-       foreach($xml->xpath('/rss/channel/item') as $item){
-               if(sanitize_string($item->link) == 'http://giss.tv/dmmdb//contents/'.$video_id) {
-                       $data['title'] = sanitize_string($item->title);
-                       $data['description'] = strip_tags($item->description);
-                       $data['thumbnail'] = sanitize_string($item->thumbnail);
-                       break;
-               }
-       }
-       return $data;
-}
index 2dfc7d8fc4bba0f0866a6d823539ed28c2905634..4e12c5361bada844c534126e198a34e856da079e 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 
-define('VIDEOLIST_SUPPORTED_PLATFORMS', 'youtube, vimeo, metacafe, bliptv, gisstv');
+define('VIDEOLIST_SUPPORTED_PLATFORMS', 'youtube, vimeo, metacafe, bliptv');
 
 foreach(explode(', ', VIDEOLIST_SUPPORTED_PLATFORMS) as $videotype){
        include(elgg_get_plugins_path()."videolist/lib/$videotype.php");
diff --git a/views/default/videolist/watch/gisstv.php b/views/default/videolist/watch/gisstv.php
deleted file mode 100644 (file)
index 15a903a..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-<?php
-
-$video_id = $vars['entity']->video_id;
-$width = $vars['width'];
-$height = $vars['height'];
-
-echo "<video width=\"$width\" height=\"$height\" controls=\"\" tabindex=\"0\">
-       <source type=\"video/ogg\" src=\"http://giss.tv/dmmdb//contents/$video_id\"></source>
-</video>";