X-Git-Url: http://p2p-next.cs.pub.ro/gitweb/?a=blobdiff_plain;f=application%2Fviews%2Fvideo%2Fwatch_view.php;h=a775419df921288bfe614054f4a02d3f759f2bd1;hb=6db375a0706b5328fbd53be4dd2e517c96560ea6;hp=b5f7eea52b865db1c86b66b94ed013b5de512287;hpb=edac3c0e2d7251d0223cd8809f12fbfcb1eac8d1;p=living-lab-site.git diff --git a/application/views/video/watch_view.php b/application/views/video/watch_view.php index b5f7eea..a775419 100644 --- a/application/views/video/watch_view.php +++ b/application/views/video/watch_view.php @@ -3,39 +3,46 @@ siteUrl = ''; -
- - -

Invalid URL .

-

Did you mean - ?

- -

Invalid ID in URL.

- - - - -

- -
- - -
-
+
+ + +

Invalid URL .

+

Did you mean + ?

+ +

Invalid ID in URL.

+ + + + +

+ +
+ - -
+
+
+ +
+
+ lang->line('ui_uploaded_by') ?> + "> + lang->line('ui_on_date') ?> + +
+ +
lang->line('ui_views') ); ?>
-
- lang->line('ui_like') : - $this->lang->line('ui_likes') ); - ?> -
-
- lang->line('ui_dislike') : - $this->lang->line('ui_dislikes') ); - ?> -
-
-
- lang->line('ui_category')) - . ': '. $video['category_title'] ?> -
-
- lang->line('ui_tags')). ': ' ?> - $score): ?> - - - - -
- lang->line('ui_license')) - . ': '. $video['license'] ?> -
+
+ lang->line('video_like') ?> + lang->line('video_dislike') ?> + lang->line('ui_likes') ?>, + lang->line('ui_dislikes'); ?> +
+
+ +
+ +
+
lang->line('ui_category')) + . ': ' ?>
+
+
+ +
+
lang->line('ui_tags')). ': ' ?>
+
$score): ?> + + + +
+
+ +
+
lang->line('ui_license')).': ' ?>
+
+
+
+ - +
@@ -91,15 +102,8 @@ }); // Switch video plugin facilities - $('#video-widget-tabs').tabs(); /*{ - ajaxOptions: { - type: "POST", - data: { url: "" }, - error: function(xhr, status, index, anchor) { - $(anchor.hash).html('Could not load the video plugin.'); - } - } - });*/ + $('#video-widget-tabs') + .tabs(); $('#switch-to-ns-html5') .click(function() { $('#video-widget') @@ -110,23 +114,104 @@ $('#video-widget') .nsvideo('type', 'ns-vlc'); }); - + // Video widget - $('#video-widget').nsvideo({ - type: "", - definition: - "", - src: { - - } - }); + $('#video-widget') + .nsvideo({ + type: "", + src: , + + showState: false, + + minWidth: 640, + maxWidth: 1024, + initialDuration: "", + + resize: function() { + $('#video-widget-tabs') + .css('width', $('#video-widget').css('width')); + } + }); + + $('.link-vote') + .click(function() { + var user_id = ""; + var action, idOutput; + if ($(this).data('action') == 'like') + { + var action = 'like'; + var idOutput = '#video-likes'; + } + else + { + var action = 'dislike'; + var idOutput = '#video-dislikes'; + } + //alert(action + " " + user_id); + + if (user_id.length != 0) + { + $.ajax({ + type: "GET", + url: "/" + + action + + "", + data: {t: ""+Math.random()}, + dataType: "text", + success: function(text) { + if (text) + $(idOutput).html(text); + else + alert('lang->line('ui_msg_repeated_action_restriction') ?>'); + } + }); + } + else + alert('lang->line('ui_msg_login_restriction') ?>'); + }) + .button(); + + $('#link-like') + .click(function() { + user_id = ""; + + if (user_id) + { + $.ajax({ + type: "GET", + url: "", + dataType: "text", + success: function(text) { + if (text) + $('#video-likes').html(text); + else + alert('lang->line('ui_msg_repeated_action_restriction') ?>'); + } + }); + } + else + alert('lang->line('ui_msg_login_restriction') ?>'); + }) + .button(); + $('#link-dislike') + .click(function() { + user_id = ""; + + if (user_id) + { + $.ajax({ + type: "GET", + url: "", + data: {t: ""+Math.random()}, + dataType: "text", + success: function(text) { + $('#video-dislikes').html(text); + } + }); + } + else + alert('lang->line('ui_msg_login_restriction') ?>'); + }) + .button(); }); \ No newline at end of file