Projet

Général

Profil

SOP 001-Programmation » Historique » Version 17

Patrice Nadeau, 2018-03-24 16:49

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