mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
(Grav GitSync) Automatic Commit from yunohost-bot
This commit is contained in:
parent
9c575a94af
commit
c4fb042e6f
1 changed files with 84 additions and 0 deletions
84
pages/02.administer/10.install/05.images/docs.fr.md
Normal file
84
pages/02.administer/10.install/05.images/docs.fr.md
Normal file
|
@ -0,0 +1,84 @@
|
||||||
|
---
|
||||||
|
title: Images
|
||||||
|
template: docs
|
||||||
|
taxonomy:
|
||||||
|
category:
|
||||||
|
- docs
|
||||||
|
routes:
|
||||||
|
default: /images
|
||||||
|
---
|
||||||
|
|
||||||
|
<span class="javascriptDisclaimer">
|
||||||
|
Cette page requiert que Javascript soit activé pour s'afficher correctement :s.
|
||||||
|
<br/>
|
||||||
|
<br/>
|
||||||
|
</span>
|
||||||
|
|
||||||
|
!!!! Même si l'image ne correspond pas à la dernière version de YunoHost, vous pouvez tout de même l'utiliser puis faire une mise à jour du système après l'installation !
|
||||||
|
|
||||||
|
!!! Si vous souhaitez vérifier la validité de nos images signées, vous pouvez [télécharger notre clé publique](https://forge.yunohost.org/yunohost.asc).
|
||||||
|
|
||||||
|
! Certaines images sont encore basées sur Debian Buster (YunoHost v4.x) et nécessitent que vous fassiez la commande `apt update` en SSH ou ligne de commande pour continuer les mises à jour.
|
||||||
|
! Répondez Oui à l'avertissement à propos du changement de `stable` vers `oldstable`.
|
||||||
|
! Cette opération n'est pas nécessaire pour YunoHost 11.x (images Bullseye)
|
||||||
|
|
||||||
|
<div class="hardware-image">
|
||||||
|
<div id="cards-list">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<template id="image-template">
|
||||||
|
<div id="{id}" class="card panel panel-default">
|
||||||
|
<div class="panel-body text-center">
|
||||||
|
<h3>{name}</h3>
|
||||||
|
<div class="card-comment">{comment}</div>
|
||||||
|
<div class="card-desc text-center">
|
||||||
|
<img src="/user/images/{image}" height=100 style="vertical-align:middle">
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="annotations flex-container">
|
||||||
|
<div class="flex-child annotation"><a href="{file}.sha256sum">[fa=barcode] Checksum</a></div>
|
||||||
|
<div class="flex-child annotation"><a href="{file}.sig">[fa=tag] Signature</a></div>
|
||||||
|
</div>
|
||||||
|
<div class="btn-group" role="group">
|
||||||
|
<a href="{file}" target="_BLANK" type="button" class="btn btn-info col-sm-12"><span class="glyphicon glyphicon-download-alt" aria-hidden="true"></span> Télécharger <small>{version}</small></a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
|
||||||
|
<script>
|
||||||
|
/*
|
||||||
|
###############################################################################
|
||||||
|
Script that loads the infos from javascript and creates the corresponding
|
||||||
|
cards
|
||||||
|
###############################################################################
|
||||||
|
*/
|
||||||
|
$(document).ready(function () {
|
||||||
|
console.log("in load");
|
||||||
|
$.getJSON('https://build.yunohost.org/images.json', function (images) {
|
||||||
|
$.each(images, function(k, infos) {
|
||||||
|
if (infos.hide == true) { return; }
|
||||||
|
// Fill the template
|
||||||
|
html = $('#image-template').html()
|
||||||
|
.replace('{id}', infos.id)
|
||||||
|
.replace('{name}', infos.name)
|
||||||
|
.replace('{comment}', infos.comment || " ")
|
||||||
|
.replace('%7Bimage%7D', infos.image)
|
||||||
|
.replace('{image}', infos.image)
|
||||||
|
.replace('{version}', infos.version);
|
||||||
|
if (!infos.file.startsWith("http"))
|
||||||
|
infos.file="https://build.yunohost.org/"+infos.file;
|
||||||
|
html = html.replace(/%7Bfile%7D/g, infos.file).replace(/{file}/g, infos.file);
|
||||||
|
|
||||||
|
if ((typeof(infos.has_sig_and_sums) !== 'undefined') && infos.has_sig_and_sums == false)
|
||||||
|
{
|
||||||
|
var $html = $(html);
|
||||||
|
$html.find(".annotations").html(" ");
|
||||||
|
html = $html[0];
|
||||||
|
}
|
||||||
|
$('#cards-list').append(html);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue