Compare commits
2 commits
a40ac5ca4c
...
b93523d9a5
Author | SHA1 | Date | |
---|---|---|---|
|
b93523d9a5 | ||
|
cdd999114c |
5 changed files with 14 additions and 11 deletions
2
Doc
2
Doc
|
@ -30,5 +30,5 @@ widget/pagine differenti
|
|||
|
||||
|
||||
todo:
|
||||
in ricerche: escludi cartelle, se medatype:null
|
||||
in ricerche: escludi cartelle, se medatype:null: anche folderjail se serve
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@
|
|||
|
||||
</body><div class="container">
|
||||
<p>Iframe list items con id:
|
||||
<pre>iframe class="embed" data-arkiwi-id="hack" height="400px" width="99%" frameBorder='1' seamless='seamless' src="./wdg_list_item_id.html"</pre>
|
||||
<pre>iframe class="embed" data-arkiwi-id="title:hack" height="400px" width="99%" frameBorder='1' seamless='seamless' src="./wdg_list_item_id.html"</pre>
|
||||
</p>
|
||||
<iframe class="embed" name="arkiwi" data-arkiwi-id="title:hack" height="400px" width="99%" frameBorder='1' seamless='seamless' src="./wdg_list_item_id.html"></iframe>
|
||||
<div class="container-fluid" id="list" ><div class="row"></div></div>
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
<p>Iframe list items con id:
|
||||
<pre>iframe class="embed" data-arkiwi-id="hack" height="400px" width="99%" frameBorder='1' seamless='seamless' src="./wdg_list_item_id.html"</pre>
|
||||
</p>
|
||||
<iframe class="embed" name="arkiwi" data-id="title:hack" height="400px" width="99%" frameBorder='1' seamless='seamless' src="./wdg_list_item_id.html"></iframe>
|
||||
<iframe class="embed" name="arkiwi" data-arkiwi-id="title:hack" height="400px" width="99%" frameBorder='1' seamless='seamless' src="./wdg_list_item_id.html"></iframe>
|
||||
<div class="container-fluid" id="list" ><div class="row"></div></div>
|
||||
|
||||
|
||||
|
|
|
@ -15,9 +15,10 @@
|
|||
$(document).ready(function () {
|
||||
|
||||
var iframe_id = $(window.frameElement).attr("data-arkiwi-id");
|
||||
console.log(iframe_id);
|
||||
|
||||
|
||||
//console.log(iframe_id);
|
||||
var iframe_type = "audio"
|
||||
var iframe_type = $(window.frameElement).attr("data-arkiwi-type");
|
||||
console.log(iframe_type);
|
||||
|
||||
var arkiwi = new ARKIWI.Arkiwi('http://www.arkiwi.org', 'http://upload.arkiwi.org');
|
||||
/* $.get("templates/list_item_id.txt", function (template) {
|
||||
|
@ -31,8 +32,8 @@ $(document).ready(function () {
|
|||
});*/
|
||||
|
||||
arkiwi.search('Ampioraggio', function (result) {
|
||||
console.log('Ricerca...');
|
||||
console.log(result);
|
||||
// console.log('Ricerca...');
|
||||
// console.log(result);
|
||||
|
||||
});
|
||||
|
||||
|
@ -42,7 +43,7 @@ $(document).ready(function () {
|
|||
console.log('Lettura cartella...');
|
||||
console.log(result);
|
||||
var pappone = Mustache.render(template, result);
|
||||
console.log(pappone);
|
||||
//console.log(pappone);
|
||||
$(".row").append(pappone);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -1,15 +1,17 @@
|
|||
{{#items}}
|
||||
<div class="col-xs-6 col-sm-3">
|
||||
<div class="thumbnail">
|
||||
<h3>{{#item.title}}<small><b>{{item.title}}</b></small></h3>{{/item.title}}
|
||||
<h4>{{#item.title}}<small><b>{{item.title}}</b></small></h4>{{/item.title}}
|
||||
{{#item.player}}
|
||||
<audio controls>
|
||||
<source src="http://storage.arkiwi.org/{{item.identifier}}" type="audio/ogg">
|
||||
<source src="#" type="audio/mpeg">
|
||||
Your browser does not support the audio element.
|
||||
</audio>
|
||||
<h4>{{#item.creator}}</h4><small>Creato da: <i>{{item.creator}}</i></small>{{/item.creator}}
|
||||
{{/item.player}}
|
||||
|
||||
<h4>{{#item.creator}}</h4><small>Creato da: <i>{{item.creator}}</i></small>{{/item.creator}}
|
||||
|
||||
<div class="caption">
|
||||
<p><i>{{item.description}}</i></p>
|
||||
<div class="tools">
|
||||
|
|
Loading…
Reference in a new issue