mirror of
https://github.com/YunoHost/doc.git
synced 2024-09-03 20:06:26 +02:00
Harmonize regular expression with Package-linter
https://github.com/YunoHost/package_linter/pull/82#event-3320751205
This commit is contained in:
parent
a1d227dc70
commit
62cdcdd039
2 changed files with 2 additions and 2 deletions
|
@ -89,7 +89,7 @@ Each YunoHost application has an id registered in the application manifest.
|
||||||
This identifier must be unique between each application packet.
|
This identifier must be unique between each application packet.
|
||||||
It is therefore recommended to verify its availability by consulting the list of applications referenced in the known applications repositories (official, community, internetcube).
|
It is therefore recommended to verify its availability by consulting the list of applications referenced in the known applications repositories (official, community, internetcube).
|
||||||
|
|
||||||
In addition, the identifier must respect the regular expression `^[a-z1-9]((_|-)?[A-z1-9])+$`.
|
In addition, the identifier must respect the regular expression `^[a-z0-9]((_|-)?[A-z0-9])+$`.
|
||||||
In other words, it must respect the following rules:
|
In other words, it must respect the following rules:
|
||||||
* be in lowercase
|
* be in lowercase
|
||||||
* start with a letter or number
|
* start with a letter or number
|
||||||
|
|
|
@ -91,7 +91,7 @@ Chaque application YunoHost possède un id inscrit dans le manifeste de l'applic
|
||||||
Cet identifiant doit être unique entre chaque paquet d'application.
|
Cet identifiant doit être unique entre chaque paquet d'application.
|
||||||
Il est donc recommandé de vérifier sa disponibilité en consultant la liste des applications référencées dans les dépôts d'applications connus (apps, internetcube).
|
Il est donc recommandé de vérifier sa disponibilité en consultant la liste des applications référencées dans les dépôts d'applications connus (apps, internetcube).
|
||||||
|
|
||||||
De plus l'identifiant doit respecter l'expression régulière suivante `^[a-z1-9]((_|-)?[a-z1-9])+$`. Autrement dit, il doit respecter les règles suivantes :
|
De plus l'identifiant doit respecter l'expression régulière suivante `^[a-z0-9]((_|-)?[a-z0-9])+$`. Autrement dit, il doit respecter les règles suivantes :
|
||||||
* être en minuscule
|
* être en minuscule
|
||||||
* commencer par une lettre ou un chiffre
|
* commencer par une lettre ou un chiffre
|
||||||
* être alphanumérique (le underscore est autorisé)
|
* être alphanumérique (le underscore est autorisé)
|
||||||
|
|
Loading…
Reference in a new issue