Create static pages of data
Deploy / Deploy (push) Failing after 32s
Details
Deploy / Deploy (push) Failing after 32s
Details
This commit is contained in:
parent
bef34c6764
commit
4b0d1ee8a4
|
@ -3,3 +3,4 @@ _site
|
||||||
.jekyll-cache
|
.jekyll-cache
|
||||||
.jekyll-metadata
|
.jekyll-metadata
|
||||||
vendor
|
vendor
|
||||||
|
*.lock
|
||||||
|
|
|
@ -0,0 +1,21 @@
|
||||||
|
<?php
|
||||||
|
// Pega todos os arquivos .txt no diretório atual
|
||||||
|
$files = glob('*.txt');
|
||||||
|
|
||||||
|
// Inicia a lista não ordenada
|
||||||
|
echo "<ul>";
|
||||||
|
|
||||||
|
foreach ($files as $file) {
|
||||||
|
// Remove a extensão .txt do nome do arquivo
|
||||||
|
$filenameWithoutExtension = basename($file, '.txt');
|
||||||
|
|
||||||
|
// Cria o link com o nome do arquivo na query string
|
||||||
|
$link = "list_files.php?filetype=" . urlencode($filenameWithoutExtension);
|
||||||
|
|
||||||
|
// Cria o item da lista com o link
|
||||||
|
echo "<li><a href=\"$link\">$filenameWithoutExtension</a></li>";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fecha a lista não ordenada
|
||||||
|
echo "</ul>";
|
||||||
|
?>
|
|
@ -0,0 +1,76 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="pt-br">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Lista de Arquivos</title>
|
||||||
|
<style>
|
||||||
|
#searchBox {
|
||||||
|
margin-bottom: 20px;
|
||||||
|
padding: 10px;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 300px;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
ul {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
li {
|
||||||
|
margin: 5px 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<?php
|
||||||
|
// Pega o tipo de arquivo da query string
|
||||||
|
$queries = array();
|
||||||
|
parse_str($_SERVER['QUERY_STRING'], $queries);
|
||||||
|
$filetype = isset($queries['filetype']) ? $queries['filetype'] : '';
|
||||||
|
|
||||||
|
// Lê o arquivo de texto em um array, cada linha como um elemento
|
||||||
|
$lines = file("$filetype.txt", FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
|
||||||
|
|
||||||
|
// Inicia a lista não ordenada
|
||||||
|
echo '<input type="text" id="searchBox" placeholder="Buscar arquivos..." onkeyup="filterList()">';
|
||||||
|
|
||||||
|
echo "<ul id=\"fileList\">";
|
||||||
|
|
||||||
|
foreach ($lines as $line) {
|
||||||
|
// Obtém o nome do arquivo e o caminho
|
||||||
|
$filename = basename($line);
|
||||||
|
$parts = explode('/', $line);
|
||||||
|
$username = $parts[2];
|
||||||
|
$path_after_public_html = implode('/', array_slice($parts, 4));
|
||||||
|
$dir_after_public_html = dirname($path_after_public_html);
|
||||||
|
|
||||||
|
// Cria o item da lista com o link para o diretório
|
||||||
|
echo "<li data-filename=\"$filename\" data-username=\"$username\" data-path=\"$dir_after_public_html\">($username) <a href=\"/~$username/$path_after_public_html\">$filename</a> ($dir_after_public_html)</li>";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fecha a lista não ordenada
|
||||||
|
echo "</ul>";
|
||||||
|
?>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
function filterList() {
|
||||||
|
// Pega o valor do campo de busca
|
||||||
|
var filter = document.getElementById('searchBox').value.toLowerCase();
|
||||||
|
var ul = document.getElementById('fileList');
|
||||||
|
var li = ul.getElementsByTagName('li');
|
||||||
|
|
||||||
|
// Itera sobre os itens da lista e esconde os que não correspondem
|
||||||
|
for (var i = 0; i < li.length; i++) {
|
||||||
|
var filename = li[i].getAttribute('data-filename').toLowerCase();
|
||||||
|
var username = li[i].getAttribute('data-username').toLowerCase();
|
||||||
|
var path = li[i].getAttribute('data-path').toLowerCase();
|
||||||
|
|
||||||
|
if (filename.indexOf(filter) > -1 || username.indexOf(filter) > -1 || path.indexOf(filter) > -1) {
|
||||||
|
li[i].style.display = "";
|
||||||
|
} else {
|
||||||
|
li[i].style.display = "none";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -0,0 +1,74 @@
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/tp1 - Luiz Filipe Almada.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/tp1_MarcoAntonio.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/FelipeFerraz.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/Computacao_Musical_Thiago_Rocha_de_Moraes.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/beatJulioCesardeSousa.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/Um começo.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/leandro_souza_atvd1.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/deprecado_wallace.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/eliasMendesSong.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/Gustavo Castro.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/VitorAugusto.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/carlos.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/JoãoVitorSimão-2023008380-megaMainSong.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/Iara Rodrigues.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/gabriel_gomes.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/Samanta Freire.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/SonsAlignígenas.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/Wesley_Silva_Guimarães.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/tp1 - Luiz Filipe Almada.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/tp1_MarcoAntonio.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/FelipeFerraz.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/Computacao_Musical_Thiago_Rocha_de_Moraes.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/beatJulioCesardeSousa.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/Um começo.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/leandro_souza_atvd1.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/deprecado_wallace.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/eliasMendesSong.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/Gustavo Castro.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/VitorAugusto.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/carlos.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/JoãoVitorSimão-2023008380-megaMainSong.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/Iara Rodrigues.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/gabriel_gomes.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/Samanta Freire.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/SonsAlignígenas.mmp
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/Wesley_Silva_Guimarães.mmp
|
||||||
|
/nethome/fls/public_html/telefonesemfio/Voice-flash/Voice-flash.mmp
|
||||||
|
/nethome/fls/public_html/telefonesemfio/Voice-cor/Voice-cor.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/tp1 - Luiz Filipe Almada.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/tp1_MarcoAntonio.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/FelipeFerraz.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/Computacao_Musical_Thiago_Rocha_de_Moraes.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/beatJulioCesardeSousa.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/Um começo.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/leandro_souza_atvd1.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/deprecado_wallace.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/eliasMendesSong.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/Gustavo Castro.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/VitorAugusto.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/carlos.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/JoãoVitorSimão-2023008380-megaMainSong.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/Iara Rodrigues.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/gabriel_gomes.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/Samanta Freire.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/SonsAlignígenas.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/Wesley_Silva_Guimarães.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/tp1 - Luiz Filipe Almada.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/tp1_MarcoAntonio.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/FelipeFerraz.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/Computacao_Musical_Thiago_Rocha_de_Moraes.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/beatJulioCesardeSousa.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/Um começo.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/leandro_souza_atvd1.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/deprecado_wallace.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/eliasMendesSong.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/Gustavo Castro.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/VitorAugusto.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/carlos.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/JoãoVitorSimão-2023008380-megaMainSong.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/Iara Rodrigues.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/gabriel_gomes.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/Samanta Freire.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/SonsAlignígenas.mmp
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/Wesley_Silva_Guimarães.mmp
|
|
@ -0,0 +1,109 @@
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/Gustavo Castro.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/Computacao_Musical_Thiago_Rocha_de_Moraes.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/Samanta Freire.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/Iara Rodrigues.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/gabriel_gomes.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/eliasMendesSong.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/SonsAlignígenas.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/deprecado_wallace.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/beatJulioCesardeSousa.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/JoãoVitorSimão-2023008380-megaMainSong.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/FelipeFerraz.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/tp1 - Luiz Filipe Almada.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/leandro_souza_atvd1.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/Um começo.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/carlos.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/Wesley_Silva_Guimarães.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/VitorAugusto.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/mmpz/tp1_MarcoAntonio.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/Gustavo Castro.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/Computacao_Musical_Thiago_Rocha_de_Moraes.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/Samanta Freire.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/Iara Rodrigues.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/gabriel_gomes.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/eliasMendesSong.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/SonsAlignígenas.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/deprecado_wallace.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/beatJulioCesardeSousa.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/JoãoVitorSimão-2023008380-megaMainSong.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/FelipeFerraz.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/tp1 - Luiz Filipe Almada.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/leandro_souza_atvd1.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/Um começo.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/carlos.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/Wesley_Silva_Guimarães.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/VitorAugusto.mmpz
|
||||||
|
/nethome/emerson/public_html/mmpSearch/_site/mmp/mmpz/tp1_MarcoAntonio.mmpz
|
||||||
|
/nethome/fls/public_html/videomerge/intro.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Felipe Ferraz/FelipeFerraz2.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Iara Rodrigues/Iara.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Leonardo De Oliveira Tedeschi/segunda tentativa.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Leandro Souza/leandro_souza_atvd2.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Paulo Eduardo Campos Junior/PauloCampos.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Samanta Ribeiro Freire/Trabalho Prático 2.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/VítorAugustoNiess/VitorAugusto.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/VítorRezendeSilva/VítorRezendeSilva.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Wesley Silva Guimarães/Segunda Entrega.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/LuizFilipeAlmada_212050011/MusicaAuto.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Arthur Gabriel/ArthurSantos_ryze.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/João Vitor Simão/JoãoVitorSimão-2023008380-BossSong.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Henrique Reisen Zanotti/Computação Musical - Henrique Reisen Zanotti.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Marco Antônio de Abreu Barbosa/beat_sample.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Gabriel Gomes/gabriel_gomes.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Gustavo Castro/Gustavo Castro - v2.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Carlos Eduardo/carlos.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Julio Cesar de Sousa/tp2-JulioCesardeSousa.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Leonardo de Oliveira Tedeschi/Um começo.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Iara Rodrigues/Iara Rodrigues.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/GabrielGomes/gabriel_gomes.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/EliasMendes/eliasMendesSong.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/VítorRezendeSilva/SonsAlignígenas.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Thiago Rocha de Moraes/Computacao_Musical_Thiago_Rocha_de_Moraes.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/JulioCesardeSousa/beatJulioCesardeSousa.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Marco Antonio/tp1_MarcoAntonio.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/JoãoVitorSimão-2023008380/JoãoVitorSimão-2023008380-megaMainSong.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/VitorAugusto/VitorAugusto.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Wesley Silva Guimarães/Wesley_Silva_Guimarães.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/FelipeFerraz/FelipeFerraz.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Luiz Filipe Almada/tp1 - Luiz Filipe Almada.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Samanta Freire/Samanta Freire.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Leandro_Souza/leandro_souza_atvd1.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Gustavo Castro/Gustavo Castro.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Carlos Eduardo/carlos.mmpz
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/WallaceBarbosaFerreira/deprecado_wallace.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/Gustavo Castro.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/Computacao_Musical_Thiago_Rocha_de_Moraes.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/Samanta Freire.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/Iara Rodrigues.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/gabriel_gomes.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/eliasMendesSong.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/SonsAlignígenas.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/deprecado_wallace.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/beatJulioCesardeSousa.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/JoãoVitorSimão-2023008380-megaMainSong.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/FelipeFerraz.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/tp1 - Luiz Filipe Almada.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/leandro_souza_atvd1.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/Um começo.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/carlos.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/Wesley_Silva_Guimarães.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/VitorAugusto.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/mmpz/tp1_MarcoAntonio.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/Gustavo Castro.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/Computacao_Musical_Thiago_Rocha_de_Moraes.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/Samanta Freire.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/Iara Rodrigues.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/gabriel_gomes.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/eliasMendesSong.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/SonsAlignígenas.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/deprecado_wallace.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/beatJulioCesardeSousa.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/JoãoVitorSimão-2023008380-megaMainSong.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/FelipeFerraz.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/tp1 - Luiz Filipe Almada.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/leandro_souza_atvd1.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/Um começo.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/carlos.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/Wesley_Silva_Guimarães.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/VitorAugusto.mmpz
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/mmpz/tp1_MarcoAntonio.mmpz
|
|
@ -0,0 +1,12 @@
|
||||||
|
/nethome/fls/public_html/afrobeat/MC Saci x African Drums Totsona.mp3
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Samanta Ribeiro Freire/Trabalho Prático 2.mp3
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/VítorAugustoNiess/Áudio Para Funk (VAPO VAPO) - ÁUDIOS DE FUNK.mp3
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/VítorAugustoNiess/VitorAugusto_V2.mp3
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/VítorRezendeSilva/VítorRezendeSilva.mp3
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Arthur Gabriel/ArthurSantos_ryze.mp3
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/VitorLara/VitorLara.mp3
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Iara Rodrigues/iara Rodrigues.mp3
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/JulioCesardeSousa/beatJulioCesardeSousa.mp3
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Samanta Freire/Samanta Freire.mp3
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Leandro_Souza/leandro_souza_atvd1.mp3
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Carlos Eduardo/carlos.mp3
|
|
@ -0,0 +1,23 @@
|
||||||
|
/nethome/emerson/public_html/PD/basss.pd
|
||||||
|
/nethome/emerson/public_html/PD/fm.pd
|
||||||
|
/nethome/emerson/public_html/PD/flute.pd
|
||||||
|
/nethome/fls/public_html/telefonesemfio/Voice-flash/Voice-flash.pd
|
||||||
|
/nethome/fls/public_html/telefonesemfio/Voice-cor/Voice-cor.pd
|
||||||
|
/nethome/fls/public_html/telefonesemfio/Maestro-cor.pd
|
||||||
|
/nethome/fls/public_html/telefonesemfio/PdWrapper.pd
|
||||||
|
/nethome/fls/public_html/telefonesemfio/Maestro-flash.pd
|
||||||
|
/nethome/fls/public_html/sinos/patches/main.pd
|
||||||
|
/nethome/fls/public_html/sinos/patches/sino1.pd
|
||||||
|
/nethome/fls/public_html/sinos/patches/main2.pd
|
||||||
|
/nethome/fls/public_html/sinos/patches/sinos.pd
|
||||||
|
/nethome/fls/public_html/sinos/patches/output1~.pd
|
||||||
|
/nethome/fls/public_html/sinos/patches/partial1.pd
|
||||||
|
/nethome/fls/public_html/sinos/patches/sino3.pd
|
||||||
|
/nethome/fls/public_html/sinos/patches/main3.pd
|
||||||
|
/nethome/fls/public_html/sinos/patches/output3~.pd
|
||||||
|
/nethome/fls/public_html/sinos/patches/output2~.pd
|
||||||
|
/nethome/fls/public_html/sinos/patches/partial3.pd
|
||||||
|
/nethome/fls/public_html/sinos/patches/sino2.pd
|
||||||
|
/nethome/fls/public_html/sinos/patches/partial2.pd
|
||||||
|
/nethome/jotachina/public_html/pdSearch/PD/1.pd
|
||||||
|
/nethome/jotachina/public_html/pdSearch/PD/2.pd
|
|
@ -24,7 +24,7 @@ description: >- # this means to ignore newlines until "baseurl:"
|
||||||
Write an awesome description for your new site here. You can edit this
|
Write an awesome description for your new site here. You can edit this
|
||||||
line in _config.yml. It will appear in your document head meta (for
|
line in _config.yml. It will appear in your document head meta (for
|
||||||
Google search results) and in your feed.xml site description.
|
Google search results) and in your feed.xml site description.
|
||||||
baseurl: "" # the subpath of your site, e.g. /blog
|
baseurl: "/s/alice_index" # the subpath of your site, e.g. /blog
|
||||||
url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
url: "" # the base hostname & protocol for your site, e.g. http://example.com
|
||||||
twitter_username: jekyllrb
|
twitter_username: jekyllrb
|
||||||
github_username: jekyll
|
github_username: jekyll
|
||||||
|
@ -32,6 +32,9 @@ github_username: jekyll
|
||||||
header_pages:
|
header_pages:
|
||||||
- pages/index.php
|
- pages/index.php
|
||||||
- pages/file_index.php
|
- pages/file_index.php
|
||||||
|
- pages/audio.html
|
||||||
|
- pages/pd.html
|
||||||
|
- pages/mmp.html
|
||||||
|
|
||||||
# Build settings
|
# Build settings
|
||||||
theme: alice
|
theme: alice
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,209 @@
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"name": "1.pd",
|
||||||
|
"path": "/nethome/jotachina/public_html/pdSearch/PD/1.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "jotachina",
|
||||||
|
"directory": "/pdSearch/PD/1.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~jotachina/pdSearch/PD/1.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "2.pd",
|
||||||
|
"path": "/nethome/jotachina/public_html/pdSearch/PD/2.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "jotachina",
|
||||||
|
"directory": "/pdSearch/PD/2.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~jotachina/pdSearch/PD/2.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Maestro-cor.pd",
|
||||||
|
"path": "/nethome/fls/public_html/telefonesemfio/Maestro-cor.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/telefonesemfio/Maestro-cor.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/telefonesemfio/Maestro-cor.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "PdWrapper.pd",
|
||||||
|
"path": "/nethome/fls/public_html/telefonesemfio/PdWrapper.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/telefonesemfio/PdWrapper.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/telefonesemfio/PdWrapper.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Maestro-flash.pd",
|
||||||
|
"path": "/nethome/fls/public_html/telefonesemfio/Maestro-flash.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/telefonesemfio/Maestro-flash.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/telefonesemfio/Maestro-flash.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Voice-flash.pd",
|
||||||
|
"path": "/nethome/fls/public_html/telefonesemfio/Voice-flash/Voice-flash.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/telefonesemfio/Voice-flash/Voice-flash.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/telefonesemfio/Voice-flash/Voice-flash.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Voice-cor.pd",
|
||||||
|
"path": "/nethome/fls/public_html/telefonesemfio/Voice-cor/Voice-cor.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/telefonesemfio/Voice-cor/Voice-cor.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/telefonesemfio/Voice-cor/Voice-cor.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "main.pd",
|
||||||
|
"path": "/nethome/fls/public_html/sinos/patches/main.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/sinos/patches/main.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/sinos/patches/main.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "sino1.pd",
|
||||||
|
"path": "/nethome/fls/public_html/sinos/patches/sino1.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/sinos/patches/sino1.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/sinos/patches/sino1.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "main2.pd",
|
||||||
|
"path": "/nethome/fls/public_html/sinos/patches/main2.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/sinos/patches/main2.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/sinos/patches/main2.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "sinos.pd",
|
||||||
|
"path": "/nethome/fls/public_html/sinos/patches/sinos.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/sinos/patches/sinos.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/sinos/patches/sinos.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "output1~.pd",
|
||||||
|
"path": "/nethome/fls/public_html/sinos/patches/output1~.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/sinos/patches/output1~.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/sinos/patches/output1~.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "partial1.pd",
|
||||||
|
"path": "/nethome/fls/public_html/sinos/patches/partial1.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/sinos/patches/partial1.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/sinos/patches/partial1.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "sino3.pd",
|
||||||
|
"path": "/nethome/fls/public_html/sinos/patches/sino3.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/sinos/patches/sino3.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/sinos/patches/sino3.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "main3.pd",
|
||||||
|
"path": "/nethome/fls/public_html/sinos/patches/main3.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/sinos/patches/main3.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/sinos/patches/main3.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "output3~.pd",
|
||||||
|
"path": "/nethome/fls/public_html/sinos/patches/output3~.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/sinos/patches/output3~.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/sinos/patches/output3~.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "output2~.pd",
|
||||||
|
"path": "/nethome/fls/public_html/sinos/patches/output2~.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/sinos/patches/output2~.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/sinos/patches/output2~.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "partial3.pd",
|
||||||
|
"path": "/nethome/fls/public_html/sinos/patches/partial3.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/sinos/patches/partial3.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/sinos/patches/partial3.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "sino2.pd",
|
||||||
|
"path": "/nethome/fls/public_html/sinos/patches/sino2.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/sinos/patches/sino2.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/sinos/patches/sino2.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "partial2.pd",
|
||||||
|
"path": "/nethome/fls/public_html/sinos/patches/partial2.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "fls",
|
||||||
|
"directory": "/sinos/patches/partial2.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~fls/sinos/patches/partial2.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "basss.pd",
|
||||||
|
"path": "/nethome/emerson/public_html/PD/basss.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "emerson",
|
||||||
|
"directory": "/PD/basss.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~emerson/PD/basss.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "fm.pd",
|
||||||
|
"path": "/nethome/emerson/public_html/PD/fm.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "emerson",
|
||||||
|
"directory": "/PD/fm.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~emerson/PD/fm.pd",
|
||||||
|
"group": "pd"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "flute.pd",
|
||||||
|
"path": "/nethome/emerson/public_html/PD/flute.pd",
|
||||||
|
"filetype": "pd",
|
||||||
|
"user": "emerson",
|
||||||
|
"directory": "/PD/flute.pd",
|
||||||
|
"url": "alice.ufsj.edu.br/~emerson/PD/flute.pd",
|
||||||
|
"group": "pd"
|
||||||
|
}
|
||||||
|
]
|
|
@ -0,0 +1,14 @@
|
||||||
|
<li data-filename="{{ include.name }}" data-username="{{ include.user }}" data-path="{{ include.directory }}">
|
||||||
|
|
||||||
|
<div class="column">
|
||||||
|
<div style='background-color: white;min-height:0;min-width: 0;' class="box">
|
||||||
|
<p>Arquivo: {{ include.name }}</p>
|
||||||
|
<p>User: {{ include.user }}</p>
|
||||||
|
<p>Path: {{ include.directory }}</p>
|
||||||
|
{% if include.group == "audio" %}
|
||||||
|
<audio controls src="https://{{ include.url }}"></audio>
|
||||||
|
{% endif %}
|
||||||
|
<a class=button href="https://{{ include.url }}">Download</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</li>
|
|
@ -0,0 +1,45 @@
|
||||||
|
---
|
||||||
|
layout: default
|
||||||
|
permalink: audio
|
||||||
|
---
|
||||||
|
|
||||||
|
<div class="publication">
|
||||||
|
<div>
|
||||||
|
<input type="text" id="searchBox" placeholder="Buscar arquivos..." onkeyup="filterList()">
|
||||||
|
</div>
|
||||||
|
<div class="pub-header">
|
||||||
|
|
||||||
|
{% for item in site.data.audio %}
|
||||||
|
<li data-filename="{{ item.name }}" data-username="{{ item.user }}" data-path="{{ item.directory }}">
|
||||||
|
{{ item.user }}
|
||||||
|
<a href="{{ item.url }}">{{ item.name }}</a> {{ item.directory }}
|
||||||
|
<br>
|
||||||
|
<audio controls src="{{ item.url }}"></audio>
|
||||||
|
</li>
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
function filterList() {
|
||||||
|
// Pega o valor do campo de busca
|
||||||
|
var filter = document.getElementById('searchBox').value.toLowerCase();
|
||||||
|
var ul = document.getElementById('fileList');
|
||||||
|
var li = ul.getElementsByTagName('li');
|
||||||
|
|
||||||
|
// Itera sobre os itens da lista e esconde os que não correspondem
|
||||||
|
for (var i = 0; i < li.length; i++) {
|
||||||
|
var filename = li[i].getAttribute('data-filename').toLowerCase();
|
||||||
|
var username = li[i].getAttribute('data-username').toLowerCase();
|
||||||
|
var path = li[i].getAttribute('data-path').toLowerCase();
|
||||||
|
|
||||||
|
if (filename.indexOf(filter) > -1 || username.indexOf(filter) > -1 || path.indexOf(filter) > -1) {
|
||||||
|
li[i].style.display = "";
|
||||||
|
} else {
|
||||||
|
li[i].style.display = "none";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,39 @@
|
||||||
|
---
|
||||||
|
layout: default
|
||||||
|
<!-- permalink: /index/ -->
|
||||||
|
---
|
||||||
|
|
||||||
|
<div class="publication">
|
||||||
|
<div>
|
||||||
|
<input type="text" id="searchBox" placeholder="Buscar arquivos..." onkeyup="filterList()">
|
||||||
|
</div>
|
||||||
|
<div class="pub-header">
|
||||||
|
{{ content }}
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<script>
|
||||||
|
function filterList() {
|
||||||
|
// Pega o valor do campo de busca
|
||||||
|
var filter = document.getElementById('searchBox').value.toLowerCase();
|
||||||
|
var ul = document.getElementById('fileList');
|
||||||
|
var li = ul.getElementsByTagName('li');
|
||||||
|
|
||||||
|
// Itera sobre os itens da lista e esconde os que não correspondem
|
||||||
|
for (var i = 0; i < li.length; i++) {
|
||||||
|
var filename = li[i].getAttribute('data-filename').toLowerCase();
|
||||||
|
var username = li[i].getAttribute('data-username').toLowerCase();
|
||||||
|
var path = li[i].getAttribute('data-path').toLowerCase();
|
||||||
|
|
||||||
|
if (filename.indexOf(filter) > -1 || username.indexOf(filter) > -1 || path.indexOf(filter) > -1) {
|
||||||
|
li[i].style.display = "";
|
||||||
|
} else {
|
||||||
|
li[i].style.display = "none";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,94 @@
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/wav/Computacao_Musical_Thiago_Rocha_de_Moraes.wav
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/wav/tp1_MarcoAntonio.wav
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/wav/SonsAlignígenas.wav
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/wav/deprecado_wallace.wav
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/wav/leandro_souza_atvd1.wav
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/wav/gabriel_gomes.wav
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/wav/VitorAugusto.wav
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/wav/beatJulioCesardeSousa.wav
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/wav/FelipeFerraz.wav
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/wav/carlos.wav
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/wav/eliasMendesSong.wav
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/wav/JoãoVitorSimão-2023008380-megaMainSong.wav
|
||||||
|
/nethome/emerson/public_html/mmpSearch/mmp/wav/Wesley_Silva_Guimarães.wav
|
||||||
|
/nethome/fls/public_html/afrobeat/Da lama Ao Caos x Amapiano.wav
|
||||||
|
/nethome/fls/public_html/afrobeat/Rihanna Bitch a have my money x Dancehall Tyga.wav
|
||||||
|
/nethome/fls/public_html/videomerge/credits.wav
|
||||||
|
/nethome/fls/public_html/videomerge/intro.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Felipe Ferraz/FelipeFerraz2.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Iara Rodrigues/auauEmy.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Iara Rodrigues/Iara.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Iara Rodrigues/110011__tuberatanka__cat-meow.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Leonardo De Oliveira Tedeschi/segunda tentativa.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Leandro Souza/leandro_souza_atvd2.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Paulo Eduardo Campos Junior/PauloCampos.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Samanta Ribeiro Freire/eae pessoal.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Samanta Ribeiro Freire/vou nada.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Samanta Ribeiro Freire/acabou.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/VítorAugustoNiess/brazilian-funk-vocal-haha_120bpm_C#_minor.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/VítorAugustoNiess/brazilian-funk-vocal-vai_120bpm_C#.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/VítorAugustoNiess/Áudio-Para-Funk-_VAPO-VAPO_-ÁUDIOS-DE-FUNK.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/VítorAugustoNiess/male-brazilian-funk-vocal-taka_130bpm_C.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/VítorAugustoNiess/brazilian-funk-loop_92bpm_A_major.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/VítorAugustoNiess/brazilian-funk-vocal-latinha_120bpm_C#_minor.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/VítorRezendeSilva/Vinheta Paysandu - Rádio Clube.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/VítorRezendeSilva/OH MY GOD Sound Effect.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/VítorRezendeSilva/Vine Boom sound effect meme.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/VítorRezendeSilva/green alien cat says yaer aegh erya.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Wesley Silva Guimarães/segunda entrega.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/LuizFilipeAlmada_212050011/MusicaAuto.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/João Vitor Simão/JoãoVitorSimão-2023008380-BossSong.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Henrique Reisen Zanotti/palmas.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Henrique Reisen Zanotti/Computação Musical - Henrique Reisen Zanotti.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Marco Antônio de Abreu Barbosa/samples/@prodchanz X @prodlevel - night - 170bpm - A#m.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Marco Antônio de Abreu Barbosa/samples/open hat - champion.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Marco Antônio de Abreu Barbosa/samples/snare - wave.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Marco Antônio de Abreu Barbosa/samples/clap - classic [ADB].wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Marco Antônio de Abreu Barbosa/samples/hi hat - 212.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Marco Antônio de Abreu Barbosa/samples/808 - 2022 [ADB].wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Marco Antônio de Abreu Barbosa/beat_sample.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Gabriel Gomes/gabriel_gomes.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Gustavo Castro/Palma.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Gustavo Castro/Gustavo Castro - v2.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 2/Julio Cesar de Sousa/tp2-JulioCesardeSousa.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Leonardo de Oliveira Tedeschi/Um começo.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/GabrielGomes/gabriel_gomes.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/EliasMendes/eliasMendesSong.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/VítorRezendeSilva/SonsAlignígenas.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Thiago Rocha de Moraes/Computacao_Musical_Thiago_Rocha_de_Moraes.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Marco Antonio/tp1_MarcoAntonio.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/JoãoVitorSimão-2023008380/JoãoVitorSimão-2023008380-megaMainSong.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Paulo Eduardo Campos/PauloCampos.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/VitorAugusto/VitorAugusto.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Wesley Silva Guimarães/Wesley_S_Guimarães.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/FelipeFerraz/FelipeFerrazFinal.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Luiz Filipe Almada/tp1 - Luiz Filipe Almada.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/Arthur Gabriel Matos dos Santos/Arthur_Gabriel.wav
|
||||||
|
/nethome/fls/public_html/lmms/TP 1/WallaceBarbosaFerreira/deprecado_wallace.wav
|
||||||
|
/nethome/fls/public_html/narcissus/static/samples/StNicolaesChurch.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/wav/Computacao_Musical_Thiago_Rocha_de_Moraes.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/wav/tp1_MarcoAntonio.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/wav/SonsAlignígenas.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/wav/deprecado_wallace.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/wav/leandro_souza_atvd1.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/wav/gabriel_gomes.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/wav/VitorAugusto.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/wav/beatJulioCesardeSousa.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/wav/FelipeFerraz.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/wav/carlos.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/wav/eliasMendesSong.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/wav/JoãoVitorSimão-2023008380-megaMainSong.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/mmp/wav/Wesley_Silva_Guimarães.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/wav/Computacao_Musical_Thiago_Rocha_de_Moraes.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/wav/tp1_MarcoAntonio.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/wav/SonsAlignígenas.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/wav/deprecado_wallace.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/wav/leandro_souza_atvd1.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/wav/gabriel_gomes.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/wav/VitorAugusto.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/wav/beatJulioCesardeSousa.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/wav/FelipeFerraz.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/wav/carlos.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/wav/eliasMendesSong.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/wav/JoãoVitorSimão-2023008380-megaMainSong.wav
|
||||||
|
/nethome/jotachina/public_html/mmpSearch/_site/mmp/wav/Wesley_Silva_Guimarães.wav
|
|
@ -0,0 +1,30 @@
|
||||||
|
---
|
||||||
|
layout: generic
|
||||||
|
permalink: /audio/
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
<ul id="fileList">
|
||||||
|
{% for item in site.data.audio %}
|
||||||
|
{% capture name %}{{item.name}}{% endcapture %}
|
||||||
|
{% capture user %}{{item.user}}{% endcapture %}
|
||||||
|
{% capture url %}{{item.url}}{% endcapture %}
|
||||||
|
{% capture directory %}{{item.directory}}{% endcapture %}
|
||||||
|
{% capture group %}{{item.group}}{% endcapture %}
|
||||||
|
{% include card.html name=name user=user url=url directory=directory group=group %}
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<!-- <ul id="fileList"> -->
|
||||||
|
<!-- {% for item in site.data.audio %} -->
|
||||||
|
<!-- <li data-filename="{{ item.name }}" data-username="{{ item.user }}" data-path="{{ item.directory }}"> -->
|
||||||
|
<!-- {{ item.user }} -->
|
||||||
|
<!-- <a href="https://{{ item.url }}">{{ item.name }}</a> {{ item.directory }} -->
|
||||||
|
<!-- <br> -->
|
||||||
|
<!-- {% if item.group == "audio" %} -->
|
||||||
|
<!-- <audio controls src="https://{{ item.url }}"></audio> -->
|
||||||
|
<!-- {% endif %} -->
|
||||||
|
<!-- <br> -->
|
||||||
|
<!-- </li> -->
|
||||||
|
<!-- {% endfor %} -->
|
||||||
|
<!-- </ul> -->
|
|
@ -0,0 +1,24 @@
|
||||||
|
---
|
||||||
|
layout: default
|
||||||
|
permalink: /
|
||||||
|
---
|
||||||
|
|
||||||
|
<div class="publication">
|
||||||
|
<div class="pub-header">
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li>
|
||||||
|
<a href='{{ site.baseurl }}/audio'>Audio</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href='{{ site.baseurl }}/mmp'>LMMS</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href='{{ site.baseurl }}/pd'>Pure Data</a>
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
</div>
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
layout: default
|
layout: default
|
||||||
permalink: /
|
permalink: /a
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="publication">
|
<div class="publication">
|
||||||
|
@ -9,6 +9,7 @@ permalink: /
|
||||||
<?php
|
<?php
|
||||||
// Pega todos os arquivos .txt no diretório atual
|
// Pega todos os arquivos .txt no diretório atual
|
||||||
$files = glob('assets/data/*.txt');
|
$files = glob('assets/data/*.txt');
|
||||||
|
$files[] = 'audio';
|
||||||
|
|
||||||
// Inicia a lista não ordenada
|
// Inicia a lista não ordenada
|
||||||
echo "<ul>";
|
echo "<ul>";
|
||||||
|
@ -18,7 +19,7 @@ foreach ($files as $file) {
|
||||||
$filenameWithoutExtension = basename($file, '.txt');
|
$filenameWithoutExtension = basename($file, '.txt');
|
||||||
|
|
||||||
// Cria o link com o nome do arquivo na query string
|
// Cria o link com o nome do arquivo na query string
|
||||||
$link = "/alice_index/file_index.php?filetype=" . urlencode($filenameWithoutExtension);
|
$link = "{{ site.baseurl }}/file_index.php?filetype=" . urlencode($filenameWithoutExtension);
|
||||||
|
|
||||||
// Cria o item da lista com o link
|
// Cria o item da lista com o link
|
||||||
echo "<li><a href=\"$link\">$filenameWithoutExtension</a></li>";
|
echo "<li><a href=\"$link\">$filenameWithoutExtension</a></li>";
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
layout: generic
|
||||||
|
permalink: /mmp/
|
||||||
|
---
|
||||||
|
|
||||||
|
<ul id="fileList">
|
||||||
|
{% for item in site.data.mmp %}
|
||||||
|
{% capture name %}{{item.name}}{% endcapture %}
|
||||||
|
{% capture user %}{{item.user}}{% endcapture %}
|
||||||
|
{% capture url %}{{item.url}}{% endcapture %}
|
||||||
|
{% capture directory %}{{item.directory}}{% endcapture %}
|
||||||
|
{% capture group %}{{item.group}}{% endcapture %}
|
||||||
|
{% include card.html name=name user=user url=url directory=directory group=group %}
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
|
@ -0,0 +1,29 @@
|
||||||
|
---
|
||||||
|
layout: generic
|
||||||
|
permalink: /pd/
|
||||||
|
---
|
||||||
|
|
||||||
|
<ul id="fileList">
|
||||||
|
{% for item in site.data.pd %}
|
||||||
|
{% capture name %}{{item.name}}{% endcapture %}
|
||||||
|
{% capture user %}{{item.user}}{% endcapture %}
|
||||||
|
{% capture url %}{{item.url}}{% endcapture %}
|
||||||
|
{% capture directory %}{{item.directory}}{% endcapture %}
|
||||||
|
{% capture group %}{{item.group}}{% endcapture %}
|
||||||
|
{% include card.html name=name user=user url=url directory=directory group=group %}
|
||||||
|
{% endfor %}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
<!-- <ul id="fileList"> -->
|
||||||
|
<!-- {% for item in site.data.pd %} -->
|
||||||
|
<!-- <li data-filename="{{ item.name }}" data-username="{{ item.user }}" data-path="{{ item.directory }}"> -->
|
||||||
|
<!-- {{ item.user }} -->
|
||||||
|
<!-- <a href="https://{{ item.url }}">{{ item.name }}</a> {{ item.directory }} -->
|
||||||
|
<!-- <br> -->
|
||||||
|
<!-- {% if item.group == "audio" %} -->
|
||||||
|
<!-- <audio controls src="https://{{ item.url }}"></audio> -->
|
||||||
|
<!-- {% endif %} -->
|
||||||
|
<!-- <br> -->
|
||||||
|
<!-- </li> -->
|
||||||
|
<!-- {% endfor %} -->
|
||||||
|
<!-- </ul> -->
|
Loading…
Reference in New Issue