0 Votes

Mudanças do documento JW Player

Última modificação por JOSE RONALDO DOS ARAUJO em 15/04/2024

Da versão 2.1
editado por JOSE RONALDO DOS ARAUJO
em 15/04/2024
Comentário da mudança: Install extension [org.xwiki.contrib:macro-jwplayer/2.1.1]
Para versão 3.1
editado por JOSE RONALDO DOS ARAUJO
em 15/04/2024
Comentário da mudança: Install extension [org.xwiki.contrib:macro-jwplayer-ui/2.2.0]

Resumo

Detalhes

jwplayer.flash.swf
Author
... ... @@ -1,1 +1,0 @@
1 -XWiki.ronaldo
Tamanho
... ... @@ -1,1 +1,0 @@
1 -139.3 KB
Conteúdo
jwplayer.html5.js
Author
... ... @@ -1,1 +1,0 @@
1 -XWiki.ronaldo
Tamanho
... ... @@ -1,1 +1,0 @@
1 -139.3 KB
Conteúdo
jwplayer.js
Tamanho
... ... @@ -1,1 +1,1 @@
1 -40.6 KB
1 +236.0 KB
Conteúdo
XWiki.JavaScriptExtension[0]
Código
... ... @@ -9,21 +9,25 @@
9 9   }
10 10  });
11 11  require(['jQueryNoConflict', 'jwplayer'], function($, jwplayer) {
12 - $('.jwplayer').each(function(index) {
13 - var options = {
14 - file: this.alt
15 - };
16 - if($(this).hasClass('autostart')){
17 - options.autostart = true;
18 - }
19 - if($(this).hasClass('repeat')){
20 - options.repeat = true;
21 - }
22 - var width = $(this).attr('width');
23 - width && (options.width = width);
24 - var height = $(this).attr('height');
25 - height && (options.height = height);
26 - this.id = this.id || ('jwplayer' + index);
27 - jwplayer(this.id).setup(options);
28 - });
12 + jwplayer.key="QowE9R/MhMc1H2U6HxMlLTxvbtbk+uhwkexhBQ==";
13 +
14 + var init = function(event, data) {
15 + var container = $((data && data.elements) || document);
16 + container.find('.jwplayer').each(function(index) {
17 + var options = {
18 + file: $(this).attr('data-source'),
19 + autostart: $(this).hasClass('autostart'),
20 + repeat: $(this).hasClass('repeat')
21 + };
22 + var width = $(this).attr('data-width');
23 + width && (options.width = width);
24 + var height = $(this).attr('data-height');
25 + height && (options.height = height);
26 + this.id = this.id || ('jwplayer' + index);
27 + jwplayer(this.id).setup(options);
28 + });
29 + };
30 +
31 + $(document).on('xwiki:dom:updated', init);
32 + $(init);
29 29  });
XWiki.WikiMacroClass[0]
Macro code
... ... @@ -1,6 +1,8 @@
1 1  {{velocity}}
2 +#set ($macroDocFullName = $xcontext.macro.doc.fullName)
3 +#set ($discard = $xwiki.ssx.use($macroDocFullName))
2 2  #if ($xcontext.action != 'edit')
3 - #set ($discard = $xwiki.jsx.use($xcontext.macro.doc.fullName))
5 + #set ($discard = $xwiki.jsx.use($macroDocFullName))
4 4  #end
5 5  #set ($reference = $xcontext.macro.params.attachment)
6 6  ## Allow the user to pass a path or an absolute URL.
... ... @@ -8,9 +8,23 @@
8 8   #set ($attachmentReference = $services.model.resolveAttachment($reference, 'explicit', $doc.documentReference))
9 9   #set ($reference = $xwiki.getAttachmentURL($services.model.serialize($attachmentReference.parent), $attachmentReference.name))
10 10  #end
11 -#set ($width = $mathtool.toInteger($xcontext.macro.params.width))
12 -#set ($height = $mathtool.toInteger($xcontext.macro.params.height))
13 -#set ($autostart = $xcontext.macro.params.autostart)
14 -#set ($repeat = $xcontext.macro.params.repeat)
15 -[[image:missing.png||class="jwplayer#if ($autostart == 'true') autostart#end#if ($repeat == 'true') repeat#end"#if ($width) width="$width"#end#if ($height) height="$height"#end alt="$reference"]]
13 +#set ($width = $numbertool.toNumber($xcontext.macro.params.width).intValue())
14 +#set ($height = $numbertool.toNumber($xcontext.macro.params.height).intValue())
15 +#set ($autostart = $xcontext.macro.params.autostart == 'true')
16 +#set ($repeat = $xcontext.macro.params.repeat == 'true')
17 +#set ($attributes = [
18 + "class='jwplayer#if ($autostart) autostart#end#if ($repeat) repeat#end'",
19 + "data-source='$reference'"
20 +])
21 +#if ($width)
22 + #set ($discard = $attributes.add("data-width='$width'"))
23 +#end
24 +#if ($height)
25 + #set ($discard = $attributes.add("data-height='$height'"))
26 +#end
27 +(% class="jwplayer-wrapper" %)(((
28 + (% $stringtool.join($attributes, ' ') %)(((
29 + Loading the video player...
30 + )))
31 +)))
16 16  {{/velocity}}
defaultCategory
... ... @@ -1,0 +1,1 @@
1 +Content
XWiki.StyleSheetExtension[0]
Política de cache
... ... @@ -1,0 +1,1 @@
1 +default
Código
... ... @@ -1,0 +1,3 @@
1 +.jwplayer-wrapper {
2 + margin-bottom: 10px;
3 +}
Use essa extensão
... ... @@ -1,0 +1,1 @@
1 +onDemand
Nome
... ... @@ -1,0 +1,1 @@
1 +Style
Analisar conteúdo
... ... @@ -1,0 +1,1 @@
1 +Não
Content Type
... ... @@ -1,0 +1,1 @@
1 +CSS