Projet

Général

Profil

SOP 001-Programmation » Historique » Version 34

Patrice Nadeau, 2018-03-24 17:18

1 17 Patrice Nadeau
# SOP 001-Programmation
2 1 Patrice Nadeau
3
Mes standards autant au niveau du style que de la documentation.
4
5 11 Patrice Nadeau
La plate-forme (logiciel et matériel) est documenté dans le [[SOP_002-Environnement_informatique]].
6 1 Patrice Nadeau
7
{{lastupdated_at}} {{lastupdated_by}}
8
9
---
10
11
{{toc}}
12
13 17 Patrice Nadeau
## Diagrammes
14 1 Patrice Nadeau
15
Les représentations des différents processus d’un programme ou d’un circuit.
16
17
Les diagrammes DOIVENT être faits avec le logiciel Dia.
18
Ils PEUVENT être exportés en d’autre format.
19
20 17 Patrice Nadeau
### LibreOffice Draw
21 14 Patrice Nadeau
22
Icônes :
23 17 Patrice Nadeau
24 15 Patrice Nadeau
* Cisco : http://www.cisco.com/web/about/ac50/ac47/3015_jpeg.zip
25 16 Patrice Nadeau
* http://www.vrt.com.au/downloads/vrt-network-equipment ou http://extensions.libreoffice.org/extension-center/vrt-network-equipment/
26 14 Patrice Nadeau
27 17 Patrice Nadeau
## Système de gestion de version
28 1 Patrice Nadeau
29
Le logiciel "Git":http://www.git-scm.com/ DOIT être utilisé.
30
31
La version DOIT être en format: _majeur.mineur.revision_.
32
Les nombres majeur, mineur NE DOIVENT PAS contenir de zéro non significatif et DEVRAIT se limiter à deux chiffres.
33
34
Ex.
35
> Version 1.2.06
36
37
Les modifications DOIVENT se faire avec _git commit_, de la manière suivante :
38 17 Patrice Nadeau
39 1 Patrice Nadeau
* nom du fichier modifié,
40
* 1 espace,
41
* nom de l’item modifié entre parenthèses,
42
* un deux- points (<notextile>:</notextile>) sans espace avec l’item précédent,
43
* 1 espace,
44
* le texte du changement en anglais, commençant par une majuscule, au présent,
45
* un point (.)
46
47
Ex. :
48
> Modification ajouté manuellement
49
<pre><code class="bash">
50
git commit -m "usart.c (usart_Init): Add a new variable ctr."
51
</code></pre>
52
> Modification par un éditeur texte
53
<pre><code class="bash">
54
git commit
55
</code></pre>
56
57 17 Patrice Nadeau
Si les commit sont fait sans l’option **-m**, chaque fichier DOIT être séparé par une ligne vide.
58 1 Patrice Nadeau
59 17 Patrice Nadeau
## Code source
60 1 Patrice Nadeau
61
Les différents type de langage et de script décrit dans ce SOP.
62
63 17 Patrice Nadeau
### Généralités
64 1 Patrice Nadeau
65 17 Patrice Nadeau
#### Langue
66 1 Patrice Nadeau
67
La langue (macros, variables, fonctions, commentaires, etc...) DOIT être l’anglais.
68
69 17 Patrice Nadeau
#### Commentaires
70 1 Patrice Nadeau
71
Les commentaires DOIVENT être :
72 17 Patrice Nadeau
73 1 Patrice Nadeau
* sur la ligne précédent l’item à documenter
74
* en minuscules et commencer par une majuscule
75
76
77 17 Patrice Nadeau
#### Nombre magique
78 1 Patrice Nadeau
79 17 Patrice Nadeau
L’utilisation de [nombre magique](:http://en.wikipedia.org/wiki/Magic_number_%28programming%29#Unnamed_numerical_constants)
80
ne DOIT PAS être utilisé directement dans le code.
81 1 Patrice Nadeau
Il DOIVENT être définis dans une macro ou une variable globale.
82
83 17 Patrice Nadeau
## C
84 1 Patrice Nadeau
85
Le langage C, version C99 (ISO/IEC 9899:1999) utilisé avec le compilateur GCC.
86
87 17 Patrice Nadeau
### Commentaires
88 1 Patrice Nadeau
89
Les commentaires ne devant pas être inclus dans une documentation, DOIVENT être de style « C » :
90
91 25 Patrice Nadeau
92 17 Patrice Nadeau
	/* Une seule ligne... */
93 1 Patrice Nadeau
94 17 Patrice Nadeau
	...
95 1 Patrice Nadeau
96 17 Patrice Nadeau
	/*
97
	* Sur
98
	* plusieurs
99
	* lignes
100 1 Patrice Nadeau
	*/
101
102 17 Patrice Nadeau
### Doxygen
103 1 Patrice Nadeau
104 17 Patrice Nadeau
Chaque item DOIT être documentés de manière à générer une documentation avec le logiciel [Doxygen](http://www.stack.nl/~dimitri/doxygen/index.html).
105 1 Patrice Nadeau
106
Seulement les items définis dans les fichiers d’en-tête sont documentés par défaut.
107
Un commentaire Doxygen commence par *<notextile> /** </notextile>* , le compilateur le comprenant comme un commentaire ordinaire.
108
109
Les règles typographiques du [[SOP_000-Documentation]] s’appliquent :
110 17 Patrice Nadeau
111 1 Patrice Nadeau
* Gras (*@b*) : Items devant être inscrit tel quel.
112
* Italique & emphase (*@e*) : Items à remplacer par un choix ou nécessitant une attention particulière.
113
114
> Doxygen version &ge; 1.8.8 : Le bogue "737472":https://bugzilla.gnome.org/show_bug.cgi?id=737472 oblige de forcer le langage de la fonction dans l’exemple si on ne veut pas de numéro de ligne.
115
116
Les items DOIVENT être inscrit dans cet ordre :
117 6 Patrice Nadeau
118 17 Patrice Nadeau
	/**
119
	* @brief Short description
120
	* @param[in,out] var Description. @n Possible values :
121
	* − @b value1
122
	* − @b value2
123
	* @return
124
	* @retval @b value Description
125
	* @par Example :
126
	* Example Title
127
	* @code{.c}
128
	* ...
129
	* @endcode
130
	* @pre Requirements
131
	* @post Changes after the call to this function
132
	* @see See also ...
133
	* @note
134
	* @warning
135
	* @bug
136
	* @todo
137 1 Patrice Nadeau
	*/
138
139
Des *@todo*, *@warning* et *@bug* supplémentaires PEUVENT être ajoutés dans le code.
140
L’item *@brief* DOIT toujours exister.
141
142 17 Patrice Nadeau
### Code
143 1 Patrice Nadeau
144
Le code est dans le style K&R, variante 1TBS
145 17 Patrice Nadeau
146 1 Patrice Nadeau
* Le « tab » DOIT être équivalent à 4 espaces.
147
* Le « backslah » DOIT être utilisé pour les lignes de plus de 80 caractères.
148
* Une instruction par ligne.
149
* Un espace avant et après un opérateur sauf pour les opérateurs « "unary":http://en.wikipedia.org/wiki/Unary_operation ».
150
151
One True Brace Style
152 25 Patrice Nadeau
153
    int fonction (void)
154 17 Patrice Nadeau
	{
155 25 Patrice Nadeau
		int x;
156
		/* the comment goes here, before the loop */
157
		if (var != 1) {
158
			x = x + 1;
159
			y++;
160
			printf("This is a long\
161
		line that should be splitted");
162
		} else {
163
			/** @warning this is a Doxygen warning */
164
			x--;
165
		}
166
		return(0);
167 17 Patrice Nadeau
	}
168
169 1 Patrice Nadeau
#### Fichier entête
170 17 Patrice Nadeau
171 1 Patrice Nadeau
Avertissement
172
>Le gabarit template.h DOIT être utilisé.
173
174 25 Patrice Nadeau
Les fichiers « header » DOIVENT contenir les déclarations des fonctions, macros et la partie « mainpage » de Doxygen.
175 1 Patrice Nadeau
176
Le nom du fichier DOIT être composé de la manière suivante :
177
178 17 Patrice Nadeau
* en minuscule
179 1 Patrice Nadeau
* 8 caractères maximum
180
* l’extension DOIT être *.h*
181
182
Une définition macro DOIT être faite pour éviter de ré-inclure le fichier.
183
La macro DOIT être dans le format *_fichier_h*
184 25 Patrice Nadeau
185
    #ifndef _usart_h
186
    #define _usart_h
187 1 Patrice Nadeau
	...
188 25 Patrice Nadeau
    #endif /*_usart.h*/
189 1 Patrice Nadeau
190 25 Patrice Nadeau
191 1 Patrice Nadeau
#### Fichier source
192 17 Patrice Nadeau
193 1 Patrice Nadeau
Le nom du fichier DOIT être composé de la manière suivante :
194 25 Patrice Nadeau
195 1 Patrice Nadeau
* en minuscule
196
* 8 caractères maximum
197
* l’extension DOIT être *.c*
198
199 17 Patrice Nadeau
#### Librairies
200 1 Patrice Nadeau
201
Fichiers comprenant plusieurs déclarations et définitions reliés entre eux.
202
203
* Le nom DOIT respecter les standards ([[SOP_001-Programmation#Fichiers-Entêtes|1]] & [[SOP_001-Programmation#Fichiers-Sources|2]]) et être significatifs.
204
* Un fichier d’entête DOIT toujours exister.
205
* Les items sont précédés du nom de la librairie (minuscule) et séparés par un « underscore » (_).
206
207
L’utilisation de macros DOIT être utilisé au lieu de constates globales.
208
Il NE DEVRAIT PAS exister de de variables globales.
209
210
#### Déclarations locales
211 17 Patrice Nadeau
212 1 Patrice Nadeau
Une déclaration n’ayant qu’une visibilité locale DOIT être précédé d’un « underscore » (_) et être de classe *static*.
213
214
215 25 Patrice Nadeau
    /**
216
    * @brief Local function
217
    **/
218
    static void _LocalFunc(void)
219
    {
220
        ...
221
        return;
222
    }
223
224 1 Patrice Nadeau
#### Items désuets
225 17 Patrice Nadeau
226 1 Patrice Nadeau
Les déclarations ne devant plus être utilisés, DOIVENT générer un message lors de la compilation (*-Wall*) si un appel est effectué.
227
228 27 Patrice Nadeau
L’attribut ** __attribute__((deprecated)) ** DOIT être ajouté à la déclaration.
229 1 Patrice Nadeau
La documentation DOIT indiquer les substituts à utiliser.
230
231 25 Patrice Nadeau
    /**
232
    * @brief OldFunction
233
    * @detail will generate a warning if used
234
    * @see @b NewFunction
235
    */
236
    int OldFunction(void) __attribute__((deprecated));
237
238 1 Patrice Nadeau
#### Constantes
239 17 Patrice Nadeau
240 1 Patrice Nadeau
La déclaration DOIT inclure aussi la définition.
241
242
Utilisé au lieu d’une macro quand le type ou la visibilité de la variable doit être définis.
243 25 Patrice Nadeau
244 1 Patrice Nadeau
* En majuscule
245
* Séparé par un «underscore» (_) si contient plusieurs mots
246
* De classe _static_ ou _extern_ selon le besoin
247
248 29 Patrice Nadeau
Ex. :
249
250 26 Patrice Nadeau
    /** 
251
     * @name List of constants
252
     * @{
253
     */
254 1 Patrice Nadeau
255 26 Patrice Nadeau
    /**
256
    * @brief Local const
257
    */
258
    static int _PI = 3.15;
259
    /**
260
    * @brief The initialization string of the project
261
    */
262
    static const char INIT_STR[6] = {'P', 'O', 'W', 'E', 'R'};
263
    /**
264
    * @brief Global const in the random library
265
    */
266
    extern int random_MAX = 25;
267 1 Patrice Nadeau
268 26 Patrice Nadeau
    /**
269 1 Patrice Nadeau
     * @}
270 28 Patrice Nadeau
     */
271 12 Patrice Nadeau
272 17 Patrice Nadeau
#### Typedef
273 12 Patrice Nadeau
274 30 Patrice Nadeau
Format :
275
276 12 Patrice Nadeau
* En minuscule, suivie de *_t*
277 1 Patrice Nadeau
278 12 Patrice Nadeau
Définition de typedef
279 30 Patrice Nadeau
280
    /** Unsigned integer 8 bits */
281
    typedef unsigned int new_t
282
    /** Type of structure in the ds1305 library */
283
    typedef struct {
284 31 Patrice Nadeau
        /** @brief last two digits : &ge; 00, &le; 99 */
285
        uint8_t year;
286
    	/** @brief 01 - 12 */
287
        uint8_t month;
288
        /** @brief 01 - 31 */
289
        uint8_t date;
290
        /** @brief 1 - 7 */
291
        uint8_t day;
292
    	/** @brief 00 - 23 */
293
        uint8_t hours;
294
        /** @brief 00 - 59 */
295
        uint8_t minutes;
296
        /** @brief 00 - 59 */
297
        uint8_t seconds;
298 30 Patrice Nadeau
    } ds1305_time_t;
299 1 Patrice Nadeau
300 17 Patrice Nadeau
#### Variables
301 1 Patrice Nadeau
302
Format
303
* En minuscule.
304
* Séparé par un « underscore » (_) si contient plusieurs mots.
305
306
Définition de variables
307
<pre><code class="c">
308
/** @brief Local variable */
309
int _ctr;
310
/** @brief Global variable from the random librairy */
311
int random_ctr;
312
</code></pre>
313
314 17 Patrice Nadeau
#### Structures
315 1 Patrice Nadeau
316
Format
317
* En minuscule, séparé par des «underscores» si nécessaire.
318
319
Définition de structures
320
<pre><code class="c">
321
/**
322
* @brief Structure for a local menu
323
* @see MenuSelect
324
*/
325
struct menu {
326
/** @brief Character used for the item */
327
char choice;
328
/** @brief Description of the item */
329
char *item;
330
};
331
</code></pre>
332
333 17 Patrice Nadeau
#### Fonctions
334 1 Patrice Nadeau
335
Le nom est formé d’une lettre majuscule pour chacune des premières lettres des mots.
336 5 Patrice Nadeau
337
Le nom DOIT être dans un deux formats suivants :
338 32 Patrice Nadeau
339 5 Patrice Nadeau
* ActionItemAttribut, où _Action_ signifie :
340 1 Patrice Nadeau
** *Get* : Lis un registre
341 5 Patrice Nadeau
** *Read*, *Write* : Lis ou écris dans un fichier
342 1 Patrice Nadeau
** *Set* : Écris une valeur prédéfini dans un registre
343
** *Init* : Fonction d’initialisation
344
* isItemEtat
345
** *is* : Verifie si _Item_ est dans l’état _Etat_
346
347
Exception
348
> Les fonctions définies dans une librairie de bas niveau pour du matériel (« driver »). Dans ce cas, le nom définis dans le « datasheet » aura préséance. Ex. ReadRegister.
349
350
Une fonction DEVRAIT retourner une valeur. 
351
352
Dans le cas d'un « oui/non », la valeur DOIT être :
353
354 32 Patrice Nadeau
* Succès : **0**
355
* Erreur : **1**
356
357
> L'utilisation d'un type booléen (*true* & *false*) est permise avec **<stbool.h>** (C99).
358
359 1 Patrice Nadeau
Dans le cas d'une fonction retournant un pointeur :
360
361 32 Patrice Nadeau
* Erreur : **NULL**
362
* Autre valeur  : adresse du pointeur
363 1 Patrice Nadeau
364 32 Patrice Nadeau
365 1 Patrice Nadeau
Définition de fonctions
366 32 Patrice Nadeau
367
    /**
368
    * @brief Check if a timer is set
369
    * @param[in] nb Timer number. @n Possible values :
370
    * − @b TIMER_1
371
    * − @b TIMER_2
372
    * @return
373
    * @retval true Timer @e nb is set
374
    * @retval false Timer @e nb is NOT set
375
    * @par Example :
376
    * Check if the timer is set
377
    * @code{.c}
378
    * ...
379
    * result = isTimerSet();
380
    * ...
381
    * @endcode
382
    * @pre TimerInit
383
    **/
384
    static bool isTimerSet(uint8_t nb);
385
    /**
386
    * @brief Set the led to green
387
    **/
388
    SetLedColor(GREEN);
389
    /**
390
    * @brief Set register of the chip XYZ
391
    *
392
    * The name does not follow the standards but does match the datatsheet
393
    * This is a local function not meant to be called outside this librairy
394
    **/
395
    static void _WriteReg(void);
396
397 1 Patrice Nadeau
398
### Macros
399
400
Les directives du préprocesseur C.
401
402
* Utilisé dans le code source et les fichiers entête.
403 17 Patrice Nadeau
* DOIT toujours commencer à la colonne 0.
404 1 Patrice Nadeau
405
#### include
406
407
Pour inclure d’autres fichier comme les fichiers entête.
408 23 Patrice Nadeau
>N’est pas documenté dans Doxygen.
409 1 Patrice Nadeau
410
    #### ifdef / ifndef
411
412
Surtout utiliser pour des options de compilation sur différentes plateforme.
413 23 Patrice Nadeau
>N’est pas documenté dans Doxygen.
414
415
416 1 Patrice Nadeau
417
418
#ifndef usart_AVR
419 24 Patrice Nadeau
#error "usart.h is not supported on this AVR !"
420
421
    #endif
422 17 Patrice Nadeau
423 1 Patrice Nadeau
424
#### error
425
426
Affiche une erreur et arrête la compilation
427 24 Patrice Nadeau
>N’est pas documenté dans Doxygen.
428
429 34 Patrice Nadeau
    #ifndef __test__
430 33 Patrice Nadeau
431 34 Patrice Nadeau
        #error "Error !"
432 33 Patrice Nadeau
433 1 Patrice Nadeau
#endif
434 17 Patrice Nadeau
</code></pre>
435 1 Patrice Nadeau
436
#### #warning
437
438
Affiche une erreur mais n’arrête la compilation
439
>N’est pas documenté dans Doxygen.
440
441
<pre><code class="c">
442
#ifndef __test__
443
#warning "Warning !"
444
#endif
445 17 Patrice Nadeau
</code></pre>
446 1 Patrice Nadeau
447
#### define 
448
449
Définis une valeur au moment de la compilation.
450
* Format
451
** En majuscule.
452
** Séparé par un «underscore» si contient plusieurs mots.
453
* Doxygen
454
** @brief
455
** @name pour les listes de macros (regroupement dans la documentation)
456
457
Définition de macros
458
<pre><code class="c">
459
/**
460
* @name Mathematical macros listed together
461
* @{
462
*/
463
/** @brief Value for PI */
464
#define _PI 3.14
465
/** @brief Another number */
466
#define _MAGIC_NUMBER 42
467
/**
468
* @}
469 21 Patrice Nadeau
*/
470 22 Patrice Nadeau
/** @brief Even parity */
471 1 Patrice Nadeau
472 22 Patrice Nadeau
    #define usart_PARITY_EVEN 'e'
473 17 Patrice Nadeau
474 1 Patrice Nadeau
475
### Atmel AVR
476
477 3 Patrice Nadeau
Particularités pour les micro-contrôleurs AVR d’Atmel.
478 1 Patrice Nadeau
479
* Progmem : Pour mettre une fonction en Flash au lieu de SRAM.
480
** Le nom de la fonction est suivie de *_P*.
481
* main : Ne revient jamais à un niveau supérieur.
482
** Définir la fonction main avec l’attribut *noreturn*.
483
** La boucle sans fin la plus optimisé est le *for (;;)*.
484
* Atomic : Opérations ne devant pas être interrompus.
485
486 22 Patrice Nadeau
Particularités pour AVR
487
488
    /**
489
    * @brief Progmem function
490
    * @return An unsigned 8 bits integer
491 1 Patrice Nadeau
    */
492 22 Patrice Nadeau
    uint_8t PrintString_P()
493
494
    /* main function */
495
    void main(void) __atribute__((noreturn))
496
    {
497
        ...
498
        /* never return */
499 1 Patrice Nadeau
        for (;;) {
500
        }
501 22 Patrice Nadeau
    }
502 21 Patrice Nadeau
503 1 Patrice Nadeau
    /* atomic operations */
504
505
#ifndef S_SPLINT_S
506
ATOMIC_BLOCK(ATOMIC_RESTORESTATE) {
507
/* 
508
* operations that must not be interupted
509
* like loading a 16 bit register with a 8 bit register 
510
*/
511 18 Patrice Nadeau
}
512
513
    #endif
514 1 Patrice Nadeau
515 17 Patrice Nadeau
516 18 Patrice Nadeau
### Distribution
517
518 1 Patrice Nadeau
Les fichiers suivants DOIVENT être inclus dans une distribution en format *tar.gz* : 
519
520
* ChangeLog
521
* README
522
* Files.lst
523
* Makefile
524
* Makefile.mk
525
* LICENSE.txt
526
* *.c
527
* *.h
528
* projet.pdf (généré par Doxygen)
529
530 18 Patrice Nadeau
Avec mon makefile :
531
532 1 Patrice Nadeau
    make dist
533
534
### Modifications
535
536
Un changement à un fichier (source ou en-tête), doit se refléter dans _Git_.
537
538 18 Patrice Nadeau
Chaque changement est fait avec :
539
540
    git add nom_fichier
541 1 Patrice Nadeau
    git commit
542 18 Patrice Nadeau
543 1 Patrice Nadeau
La ligne DOIT 
544
545
* être au temps présent
546
* être en anglais
547 18 Patrice Nadeau
* se termine par un point
548 1 Patrice Nadeau
* être dans le format suivant :
549
    > La partie _section_ est facultative
550 18 Patrice Nadeau
551
552
    fichier1 (fonction) <section>: 
553
    Ajoute une description au temps présent.
554
    Décrire les bogues réglés si il y en avaient.
555 17 Patrice Nadeau
556 1 Patrice Nadeau
557
### Changelog
558
559
La somme de toutes les modification doivent apparaitre dans un fichier « changelog ».
560 18 Patrice Nadeau
> Le standard seras celui GNU : http://www.gnu.org/prep/standards/html_node/Change-Logs.html#Change-Logs
561 1 Patrice Nadeau
562 18 Patrice Nadeau
Ce fichier doit s'appeler **ChangeLog** et DOIT être généré à partir de _Git_ (les doubles espaces ne sont pas une erreur de frappe :
563
564 1 Patrice Nadeau
    git log --no-merges --format="%ad  %an  <%aE> %n * %B" --date=short > ChangeLog
565
   
566 17 Patrice Nadeau
### Validation du code
567 18 Patrice Nadeau
568 1 Patrice Nadeau
Le logiciel _splint_ est utilisé.
569
570
* Un « typecast » DOIT être utilisé lorsque détecté.
571
* L’utilisation du typecast *void* DOIT être utilisé lorsque qu’une fonction retourne un résultat non utilisé.
572
573 17 Patrice Nadeau
## Makefile
574 1 Patrice Nadeau
575 17 Patrice Nadeau
## Nagios
576 1 Patrice Nadeau
577 17 Patrice Nadeau
### Plugins
578 1 Patrice Nadeau
579
https://nagios-plugins.org/doc/guidelines.html
580
581
Un message d'une ligne (< 80 caractères) DOIT être retourné via _STDOUT_ dans le format
582 18 Patrice Nadeau
> *SERVICE STATUS:* texte
583
584 1 Patrice Nadeau
Les codes de retour sont les suivants :
585
586
|_. Valeur |_. Service Status |_. Description |
587
| 0 | OK | Le service fonctionne |
588
| 1 | Warning | Le service fonctionne, problème avec le seuil de la valeur _Warning_ |
589
| 2 | Critical | Le service ne fonctionne pas ou problème avec le seuil de la valeur _Critical_  |
590 18 Patrice Nadeau
| 3 | Unknow | Arguments non valides ou erreur interne (fork, tcp socket)|
591
592 1 Patrice Nadeau
Les arguments suivants DOIVENT être fournis :
593
594
* *-H* (*--hostname*) :
595
* *-w* (*--warning*) :
596
* *-c* (*--critical*) :
597
* *-V* (*--version*) :
598
* *-h* (*--help*) :
599
600
L'argument _--help_ DOIT aussi appeler l'argument _--version_.
601 18 Patrice Nadeau
602 1 Patrice Nadeau
En _C_, les fonctions suivantes DOIT être utilisées :
603 17 Patrice Nadeau
604 1 Patrice Nadeau
* _print_revision_ (utils.c)
605
* _print_help_
606
* _getopt_long_ (getopt.h)
607
608
## Puppet
609
610
### Généralités
611 18 Patrice Nadeau
612 1 Patrice Nadeau
Inspiré des recommandations disponible au http://docs.puppetlabs.com/guides/style_guide.html.
613 18 Patrice Nadeau
614 1 Patrice Nadeau
* Tabulation : 2 espaces
615
* Largeur : 80 caractères (« backslah » (\) pour séparer une longue ligne).
616 18 Patrice Nadeau
* Commentaires : Style #
617
* Guillemets
618
    * Simple : Pour une « string » sans variables.
619 1 Patrice Nadeau
    * Double : Pour une « string » avec variables ayant besoin d’être extrapolé.
620
        * La variable doit être entourée des symboles *<notextile>{</notextile>* et *<notextile>}</notextile>*.
621
* Nom des ressources : DOIVENT être entouré du symbole *<notextile> ’ </notextile>*.
622
* Alignement de => : DOIT être aligné dans un même paragraphe.
623
* Ordre : Si l’attribut _ensure_ doit être inclus, il DOIT être le premier.
624
* Lien symbolique : DOIT être déclaré avec *ensure => link*
625
626 18 Patrice Nadeau
Ex. :
627
628
    file { '/var/log/syslog':
629
    ensure => link,
630
    target => '/var/log/messages',
631 1 Patrice Nadeau
    }
632 18 Patrice Nadeau
633
* File mode : 
634 17 Patrice Nadeau
    * 4 chiffres
635 18 Patrice Nadeau
    * simple guillemet
636
* Variables
637
    * lettres
638 1 Patrice Nadeau
    * chiffres
639
    * « underscore »
640
641
### Documentation
642
643 18 Patrice Nadeau
http://docs.puppetlabs.com/learning/modules2.html#module-documentation
644
645 1 Patrice Nadeau
Format Rdoc (http://rdoc.rubyforge.org/RDoc/Markup.html) :
646
647
* Bloc de commentaires qui commence sur la première ligne du fichier
648
* Titre avec le symbole *<notextile>=</notextile>*
649 18 Patrice Nadeau
* Séparation avec le symbole *<notextile>-</notextile>*
650
* Emphase (mot entouré du symbole)
651
    * * : gras
652 1 Patrice Nadeau
    * _ : souligné
653 18 Patrice Nadeau
    * + : Police de caractères pour le code
654
* Sections
655
    * = Class:
656
    * == Parameters:
657 1 Patrice Nadeau
    * == Requires:
658 18 Patrice Nadeau
    * == Sample Usage:
659 1 Patrice Nadeau
* Classe
660
    * Une classe par fichier « manifest »
661
662
## Script
663
664 18 Patrice Nadeau
### Bash
665
666 1 Patrice Nadeau
667
668
#/bin/bash
669 17 Patrice Nadeau
670 1 Patrice Nadeau
function print_revision {
671
}
672
673
function print_help {
674
    print_revision
675 17 Patrice Nadeau
}
676 1 Patrice Nadeau
</code></pre>
677
678 17 Patrice Nadeau
### Perl
679 1 Patrice Nadeau
680
<pre><code class="perl">
681
682
</code></pre>
683
684
### PowerShell
685 17 Patrice Nadeau
686 1 Patrice Nadeau
Version 4.0. Supporte :
687 17 Patrice Nadeau
688 1 Patrice Nadeau
* Windows 8.1 (natif)
689
* Windows Server 2012 R2 (natif)
690
* Windows 7 SP1
691 17 Patrice Nadeau
* Windows Server 2008 R2 SP1
692 1 Patrice Nadeau
* Windows Server 2012
693
694
#### Fichier
695
696
Le fichier DOIT être composé de la manière suivante :<F8>
697
* L’extension est .ps1
698
* Une longue ligne peux être séparée avec un « back tick » (‘).
699
700
#### Commentaires
701
702 20 Patrice Nadeau
L’aide est accéder par _Get-Help_
703
704
705
	#REQUIRES -Version 2.0
706
	<#
707
	.SYNOPSIS
708
	A brief description of the function or script.
709
	This keyword can be used only once in each topic.
710
	.DESCRIPTION
711
	A detailed description of the function or script.
712
	This keyword can be used only once in each topic.
713
	.NOTES
714
	File Name
715
	: xxxx.ps1
716
	Author
717
	:
718
	Prerequisite
719
	: PowerShell V2 over Vista and upper.
720
	Copyright 2011 -
721
	.LINK
722
	Script posted over:
723
	http://
724
	.EXAMPLE
725
	Example 1
726
	.EXAMPLE
727
	Example 2
728
	#>
729
730 1 Patrice Nadeau
731
732
## Vim
733 19 Patrice Nadeau
734
* Entête (en commentaires)
735
    * Titre
736
    * Last Change:
737 1 Patrice Nadeau
    * Maintainer:
738 19 Patrice Nadeau
    * License: This file is placed in the public domain.
739
* Autre mots reconnus
740
    * BUG: (Error:)
741
    * TODO:
742 1 Patrice Nadeau
    * Note:
743
    * FIXME
744
745
## Références
746
747 20 Patrice Nadeau
Références ayant servis à ce document.
748 19 Patrice Nadeau
749 1 Patrice Nadeau
[ChangeLog](http://www.gnu.org/prep/standards/html_node/Change-Logs.html#Change-Logs)
750
[GNU deprecated attribute](http://gcc.gnu.org/onlinedocs/gcc-3.2.3/gcc/Type-Attributes.html)