0 Votes

Mudanças do documento JW Player

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

Da versão 1.1
editado por JOSE RONALDO DOS ARAUJO
em 07/04/2024
Comentário da mudança: Install extension [org.xwiki.contrib:macro-jwplayer-ui/2.2.0]
Para 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]

Resumo

Detalhes

jwplayer.js
Tamanho
... ... @@ -1,1 +1,1 @@
1 -236.0 KB
1 +40.6 KB
Conteúdo
jwplayer.flash.swf
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.ronaldo
Tamanho
... ... @@ -1,0 +1,1 @@
1 +139.3 KB
Conteúdo
jwplayer.html5.js
Author
... ... @@ -1,0 +1,1 @@
1 +XWiki.ronaldo
Tamanho
... ... @@ -1,0 +1,1 @@
1 +139.3 KB
Conteúdo
XWiki.JavaScriptExtension[0]
Código
... ... @@ -9,25 +9,21 @@
9 9   }
10 10  });
11 11  require(['jQueryNoConflict', 'jwplayer'], function($, jwplayer) {
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);
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 + });
33 33  });
XWiki.StyleSheetExtension[0]
Política de cache
... ... @@ -1,1 +1,0 @@
1 -default
Código
... ... @@ -1,3 +1,0 @@
1 -.jwplayer-wrapper {
2 - margin-bottom: 10px;
3 -}
Content Type
... ... @@ -1,1 +1,0 @@
1 -CSS
Nome
... ... @@ -1,1 +1,0 @@
1 -Style
Analisar conteúdo
... ... @@ -1,1 +1,0 @@
1 -Não
Use essa extensão
... ... @@ -1,1 +1,0 @@
1 -onDemand
XWiki.WikiMacroClass[0]
Macro code
... ... @@ -1,8 +1,6 @@
1 1  {{velocity}}
2 -#set ($macroDocFullName = $xcontext.macro.doc.fullName)
3 -#set ($discard = $xwiki.ssx.use($macroDocFullName))
4 4  #if ($xcontext.action != 'edit')
5 - #set ($discard = $xwiki.jsx.use($macroDocFullName))
3 + #set ($discard = $xwiki.jsx.use($xcontext.macro.doc.fullName))
6 6  #end
7 7  #set ($reference = $xcontext.macro.params.attachment)
8 8  ## Allow the user to pass a path or an absolute URL.
... ... @@ -10,23 +10,9 @@
10 10   #set ($attachmentReference = $services.model.resolveAttachment($reference, 'explicit', $doc.documentReference))
11 11   #set ($reference = $xwiki.getAttachmentURL($services.model.serialize($attachmentReference.parent), $attachmentReference.name))
12 12  #end
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 -)))
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"]]
32 32  {{/velocity}}