diff --git a/pages/01.administrate/04.learn/10.backups/backup.fr.md b/pages/01.administrate/04.learn/10.backups/backup.fr.md index d9dab1b8..641e6e98 100644 --- a/pages/01.administrate/04.learn/10.backups/backup.fr.md +++ b/pages/01.administrate/04.learn/10.backups/backup.fr.md @@ -23,7 +23,7 @@ La méthode de sauvegarde actuelle consiste à créer des archives `.tar.gz` qui Vous pouvez facilement créer des archives depuis la webadmin en allant dans Sauvegardes > Archives locales et en cliquant sur "Nouvelle sauvegarde". Vous pourrez ensuite sélectionner les éléments à sauvegarder (configuration, données "système", applications). -![](/images/backup.png) +![](image://backup.png) #### Depuis la ligne de commande @@ -89,7 +89,7 @@ scp /path/to/your/.tar.gz admin@your.domain.tld:/home/yunohost.ba Allez dans Sauvegardes > Sauvegardes locales et sélectionnez l'archive. Vous pouvez ensuite choisir les différents éléments que vous voulez restaurer puis cliquer sur "Restaurer". -![](/images/restore.png) +![](image://restore.png) #### Depuis la ligne de commande diff --git a/pages/01.administrate/04.learn/10.backups/backup.it.md b/pages/01.administrate/04.learn/10.backups/backup.it.md index 77da1cd3..dd35b520 100644 --- a/pages/01.administrate/04.learn/10.backups/backup.it.md +++ b/pages/01.administrate/04.learn/10.backups/backup.it.md @@ -23,7 +23,7 @@ Il metodo di default attuale crea degli archivi `.tar.gz` contenenti tutti i fil Potete creare gli archivi di backup dalla pagina web di amministrazione andando in Backup > Archivi locali e cliccare su "Nuovo backup". Vi verrà chiesto di selezionare quale configurazione, dati e di quale app volete fare il backup. -![picture of YunoHost's backup pannel](/images/backup.png) +![picture of YunoHost's backup pannel](image://backup.png) ### Dalla riga di comando @@ -99,7 +99,7 @@ scp /path/to/your/.tar.gz admin@your.domain.tld:/home/yunohost.back Dovete andare in Backup > Archivi locali e selezionare il vostro archivio. È possibile selezionare ciò che volete ripristinare e poi cliccare su 'Ripristina'. -![picture of YunoHost's restore pannel](/images/restore.png) +![picture of YunoHost's restore pannel](image://restore.png) ### Dalla riga di comando diff --git a/pages/01.administrate/04.learn/10.backups/backup.md b/pages/01.administrate/04.learn/10.backups/backup.md index 3676647b..30277da7 100644 --- a/pages/01.administrate/04.learn/10.backups/backup.md +++ b/pages/01.administrate/04.learn/10.backups/backup.md @@ -23,7 +23,7 @@ The current default method consists in creating a `.tar.gz` archive containing a You can easily create backup archives from the webadmin by going in Backups > Local storage and clicking on "New backup". You will then be asked to select which configuration, data and apps you want to backup. -![picture of YunoHost's backup pannel](/images/backup.png) +![picture of YunoHost's backup pannel](image://backup.png) ### From the command line @@ -94,7 +94,7 @@ scp /path/to/your/.tar.gz admin@your.domain.tld:/home/yunohost.back Go in Backup > Local storage and select your archive. You can then select which items you want to restore, then click on 'Restore'. -![picture of YunoHost's restore pannel](/images/restore.png) +![picture of YunoHost's restore pannel](image://restore.png) ### From the command line diff --git a/pages/02.contribute/02.write_documentation/02.markdown_guide/doc_markdown_guide.fr.md b/pages/02.contribute/02.write_documentation/02.markdown_guide/doc_markdown_guide.fr.md index 5388d627..2ab742ab 100644 --- a/pages/02.contribute/02.write_documentation/02.markdown_guide/doc_markdown_guide.fr.md +++ b/pages/02.contribute/02.write_documentation/02.markdown_guide/doc_markdown_guide.fr.md @@ -94,16 +94,16 @@ Il ne reste plus qu'à désigner l'ancre au texte que l'on souhaite rendre inter Pour afficher des images, le principe est identique aux liens, excepté l'ajout d'un `!` avant le texte à afficher qui est ici considéré comme le texte à afficher en cas d'impossibilité de chargement de l'image. Une description de l'image convient. ```markdown -![Logo YunoHost](/images/logo.png) +![Logo YunoHost](image://logo.png) ``` -![Logo YunoHost](/images/logo.png) +![Logo YunoHost](image://logo.png) Il est possible de faire un lien avec une image, exemple : ```markdown -[![Logo YunoHost](/images/logo.png)](/write_documentation) +[![Logo YunoHost](image://logo.png)](/write_documentation) ``` -[![Logo YunoHost](/images/logo.png)](/write_documentation) +[![Logo YunoHost](image://logo.png)](/write_documentation) L'encart de *texte à afficher en cas d'impossibilité de chargement de l'image* entre les crochets dans le lien de l'image n'est pas obligatoire mais fortement recommandé. @@ -217,14 +217,14 @@ Pour créer un tableau, il faut utiliser la barre verticale `|` (appelé 'pipe') | **Un tableau** | Une colonne | Une seconde | Autant que l'on veut | |:--------------:|:-----------:|:-----------:|:--------------------:| | Une ligne formatée | | Et du **texte en gras** | Ou en *italique* | -| D'autres lignes | |![une image](/images/cd.jpg) | [Ou un lien](/contributordoc) | +| D'autres lignes | |![une image](image://cd.jpg) | [Ou un lien](/contributordoc) | ``` Ce qui affichera ça : | **Un tableau** | Une colonne | Une seconde | Autant que l'on veut | |:--------------:|:-----------:|:-----------:|:--------------------:| | Une ligne formatée | | Et du **texte en gras** | Ou en *italique* | -| D'autres lignes | |![une image](/images/cd.jpg) | [Ou un lien](/contributordoc) | +| D'autres lignes | |![une image](image://cd.jpg) | [Ou un lien](/contributordoc) | ## Bloc de codes diff --git a/pages/02.contribute/02.write_documentation/02.markdown_guide/doc_markdown_guide.md b/pages/02.contribute/02.write_documentation/02.markdown_guide/doc_markdown_guide.md index 3d60e9a7..17ab7cf8 100644 --- a/pages/02.contribute/02.write_documentation/02.markdown_guide/doc_markdown_guide.md +++ b/pages/02.contribute/02.write_documentation/02.markdown_guide/doc_markdown_guide.md @@ -94,16 +94,16 @@ All that remains is to designate the anchor to the text you want to make interac To display images, the principle is the same as for links, except that a `!` is added before the text to be displayed, which is considered here as the text to be displayed if the image cannot be loaded. A description of the image is appropriate. ```markdown -![YunoHost Logo](/images/logo.png) +![YunoHost Logo](image://logo.png) ``` -![YunoHost Logo](/images/logo.png) +![YunoHost Logo](image://logo.png) It is possible to make a link with an image, for example: ```markdown -[![YunoHost Logo](/images/logo.png)](/write_documentation) +[![YunoHost Logo](image://logo.png)](/write_documentation) ``` -[![YunoHost Logo](/images/logo.png)](/write_documentation) +[![YunoHost Logo](image://logo.png)](/write_documentation) The insert of *text to be displayed if the image cannot be loaded* between the brackets in the image link is not mandatory but strongly recommended. @@ -217,14 +217,14 @@ To create an array, use the vertical bar `|` and dashes `--`. It is mandatory to | **One table** | One column | One second | As many as you want | |:-------------:|:----------:|:----------:|:-------------------:| | | And formatted line | | And bold text | | Or *italic* | -| More lines | |![An image](/images/cd.jpg) | [Or a link](/contributordoc) | +| More lines | |![An image](image://cd.jpg) | [Or a link](/contributordoc) | ``` Which would say this: | **One table** | One column | One second | As many as you want | |:-------------:|:----------:|:----------:|:-------------------:| | | And formatted line | | And bold text | | Or *italic* | -| More lines | |![An image](/images/cd.jpg) | [Or a link](/contributordoc) | +| More lines | |![An image](image://cd.jpg) | [Or a link](/contributordoc) | ## Code block diff --git a/pages/02.contribute/02.write_documentation/03.git/doc_use_git.fr.md b/pages/02.contribute/02.write_documentation/03.git/doc_use_git.fr.md index 44756e2d..a93213ca 100644 --- a/pages/02.contribute/02.write_documentation/03.git/doc_use_git.fr.md +++ b/pages/02.contribute/02.write_documentation/03.git/doc_use_git.fr.md @@ -18,10 +18,10 @@ Vous n’êtes pas obligé·e de donner vos noms et prénoms, vous pouvez utilis Forker le code source permet de créer une nouvelle branche de développement d’un code source de logiciel ou dans le cas présent, le code source de la documentation. En créant une nouvelle branche, cela vous permet de modifier le code et d’ajouter vos contributions sans altérer le code de la branche `master` qui est le rendu public de la documentation. Ce qui vous permet de ne pas devoir tout marquer mais le faire en plusieurs étapes. (Notamment pour les contributions demandant plus de temps de travail). Forker un projet sur GitHub est extrêmement simple, il suffit de cliquer sur le bouton Fork, cela créera un nouveau dépôt sur votre espace de GitHub. -![Capture d’écran bouton fork GitHub](/images/dug_fork.png) +![Capture d’écran bouton fork GitHub](image://dug_fork.png) Dans le titre du nouveau dépôt, vous verrez de quelle provenance vient le dépôt, dans le cas présent `YunoHost/doc` -![Capture d’écran titre et sous-titre du dépot](/images/dug_fork_source.png) +![Capture d’écran titre et sous-titre du dépot](image://dug_fork_source.png) > **Point de vigilance !** diff --git a/pages/02.contribute/02.write_documentation/03.git/doc_use_git.md b/pages/02.contribute/02.write_documentation/03.git/doc_use_git.md index 603cc6e5..e8b12e12 100644 --- a/pages/02.contribute/02.write_documentation/03.git/doc_use_git.md +++ b/pages/02.contribute/02.write_documentation/03.git/doc_use_git.md @@ -17,9 +17,9 @@ You don't have to give your first and last names, you can use a nickname (when y To fork the source code allows you to create a new branch of development of a software source code or in this case the source code of the documentation. By creating a new branch, this allows you to modify the code and add your contributions without altering the code of the `master` branch, which is the public release of the documentation. This allows you not to have to write down everything at once, but to do it in several steps. (Especially for contributions that require more time). Forking a project on GitHub is extremely simple, just click on the Fork button, this will create a new repository on your GitHub account. -![Screenshot GitHub fork button screenshot](/images/dug_fork.png) +![Screenshot GitHub fork button screenshot](image://dug_fork.png) In the title of the new repository, you will see where the repository comes from, in this case `YunoHost/doc`. -![Screenshots title and subtitle of the repository](/images/dug_fork_source.png) +![Screenshots title and subtitle of the repository](image://dug_fork_source.png) > **Point of vigilance !** > If you forge the repository of another contributor than yunohost, you'll get the same files. Except that when you send your changes, they will be sent to the contributor and not to the yunohost repository. The advantage is that it allows you to develop another branch created by the contributor and work with another person on an improvement before submitting it to the main repository.