Merge pull request #453 from YunoHost/level_app_list_doc2

Niveau apps dans la doc
This commit is contained in:
Laurent Peuch 2017-02-01 14:25:40 +01:00 committed by GitHub
commit 989ef301ee
2 changed files with 4 additions and 0 deletions

View file

@ -57,6 +57,7 @@ The packagers will appreciate your remarks. If you test them and find issues, or
<div class="panel-body"> <div class="panel-body">
<p><strong>Description</strong>: {app_description}</p> <p><strong>Description</strong>: {app_description}</p>
<p><strong>Last update (UTC)</strong>: {app_update}</p> <p><strong>Last update (UTC)</strong>: {app_update}</p>
<p><strong>Level</strong>: {app_level}</p>
<p><strong>Maintainer</strong>: {app_maintainer} <small class="text-muted">({app_mail})</small></p> <p><strong>Maintainer</strong>: {app_maintainer} <small class="text-muted">({app_mail})</small></p>
<p><strong>Git repository</strong>: <a href="{app_git}" target="_blank">{app_git}</a> <small class="text-muted">({app_branch})</small></p> <p><strong>Git repository</strong>: <a href="{app_git}" target="_blank">{app_git}</a> <small class="text-muted">({app_branch})</small></p>
<p><strong>Software license</strong>: {app_license}</p> <p><strong>Software license</strong>: {app_license}</p>
@ -105,6 +106,7 @@ $(document).ready(function () {
.replace('{app_description}', infos.manifest.description.en) .replace('{app_description}', infos.manifest.description.en)
.replace(/{app_git}/g, infos.git.url) .replace(/{app_git}/g, infos.git.url)
.replace('{app_branch}', infos.git.branch) .replace('{app_branch}', infos.git.branch)
.replace('{app_level}', infos.level)
.replace('{app_update}', timeConverter(infos.lastUpdate)) .replace('{app_update}', timeConverter(infos.lastUpdate))
.replace('{app_state}', infos.state) .replace('{app_state}', infos.state)
.replace('{app_state_bootstrap}', app_state_bootstrap) .replace('{app_state_bootstrap}', app_state_bootstrap)

View file

@ -56,6 +56,7 @@ Nhésitez pas à vous créer un compte GitHub pour faire part de vos remarque
<div class="panel-body"> <div class="panel-body">
<p><strong>Description</strong> : {app_description}</p> <p><strong>Description</strong> : {app_description}</p>
<p><strong>Dernière mise à jour (UTC)</strong> : {app_update}</p> <p><strong>Dernière mise à jour (UTC)</strong> : {app_update}</p>
<p><strong>Niveau</strong>: {app_level}</p>
<p><strong>Mainteneur</strong> : {app_maintainer} <small class="text-muted">({app_mail})</small></p> <p><strong>Mainteneur</strong> : {app_maintainer} <small class="text-muted">({app_mail})</small></p>
<p><strong>Dépôt git</strong> : <a href="{app_git}" target="_blank">{app_git}</a> <small class="text-muted">({app_branch})</small></p> <p><strong>Dépôt git</strong> : <a href="{app_git}" target="_blank">{app_git}</a> <small class="text-muted">({app_branch})</small></p>
<p><strong>Licence de lapplication</strong> : {app_license}</p> <p><strong>Licence de lapplication</strong> : {app_license}</p>
@ -108,6 +109,7 @@ $(document).ready(function () {
.replace('{app_description}', infos.manifest.description.fr) .replace('{app_description}', infos.manifest.description.fr)
.replace(/{app_git}/g, infos.git.url) .replace(/{app_git}/g, infos.git.url)
.replace('{app_branch}', infos.git.branch) .replace('{app_branch}', infos.git.branch)
.replace('{app_level}', infos.level)
.replace('{app_update}', timeConverter(infos.lastUpdate)) .replace('{app_update}', timeConverter(infos.lastUpdate))
.replace('{app_state}', infos.state) .replace('{app_state}', infos.state)
.replace('{app_state_bootstrap}', app_state_bootstrap) .replace('{app_state_bootstrap}', app_state_bootstrap)