commit fcc57c9716ee71ea50edfe8dd48d68d4996467fb parent 441dc4d794d5067200f5daebb1751bebb82f52db Author: Suzanne Soy <jsmaniac.github@suzanne.soy> Date: Wed, 10 May 2023 01:21:05 +0100 Other backups Diffstat:
262 files changed, 48401 insertions(+), 0 deletions(-)
diff --git a/README.md b/README.md @@ -0,0 +1 @@ +Use download-website-script/cmd.sh to generate a static wiki from a wiki hosted on localhost, installed using the instructions at https://www.mediawiki.org/wiki/Manual:Running_MediaWiki_on_Debian_or_Ubuntu, and with the contents loaded using `/usr/bin/php importDump.php --conf ../LocalSettings.php mediawiki-export/Gruntnetwork-20230507204643-export-all-fix-pre.xml --username-prefix=""` diff --git a/mediawiki-export/Gruntnetwork-20230507203958.xml b/mediawiki-export/Gruntnetwork-20230507203958.xml @@ -0,0 +1,607 @@ +<mediawiki xmlns="http://www.mediawiki.org/xml/export-0.3/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mediawiki.org/xml/export-0.3/ http://www.mediawiki.org/xml/export-0.3.xsd" version="0.3" xml:lang="fr"> + <siteinfo> + <sitename>Gruntnetwork</sitename> + <base>https://wiki.gruntnetwork.com/Accueil</base> + <generator>MediaWiki 1.15.1</generator> + <case>first-letter</case> + <namespaces> + <namespace key="-2">Média</namespace> + <namespace key="-1">Spécial</namespace> + <namespace key="0" /> + <namespace key="1">Discussion</namespace> + <namespace key="2">Utilisateur</namespace> + <namespace key="3">Discussion utilisateur</namespace> + <namespace key="4">Gruntnetwork</namespace> + <namespace key="5">Discussion Gruntnetwork</namespace> + <namespace key="6">Fichier</namespace> + <namespace key="7">Discussion fichier</namespace> + <namespace key="8">MediaWiki</namespace> + <namespace key="9">Discussion MediaWiki</namespace> + <namespace key="10">Modèle</namespace> + <namespace key="11">Discussion modèle</namespace> + <namespace key="12">Aide</namespace> + <namespace key="13">Discussion aide</namespace> + <namespace key="14">Catégorie</namespace> + <namespace key="15">Discussion catégorie</namespace> + </namespaces> + </siteinfo> + <page> + <title>Accueil</title> + <id>1</id> + <revision> + <id>11737</id> + <timestamp>2011-06-21T11:25:11Z</timestamp> + <contributor> + <ip>193.239.192.194</ip> + </contributor> + <text xml:space="preserve">== gruntnetwork == + +gruntnetwork est un système d'exploitation sous licence Affero GPL. Actuellement il est en phase de développement, dans le cadre d'un projet pédagogique à l'Université Montpellier 2. + +== Nouveau Développeur ? == +{{:Nouveau Développeur}} + +[[notes]]</text> + </revision> + </page> + <page> + <title>Affichage Graphique</title> + <id>12</id> + <revision> + <id>67</id> + <timestamp>2009-03-04T15:14:06Z</timestamp> + <contributor> + <username>Jsmaniac</username> + <id>1</id> + </contributor> + <comment>correspond pas à ce qu'on a fait</comment> + <text xml:space="preserve" /> + </revision> + </page> + <page> + <title>Conventions</title> + <id>3</id> + <revision> + <id>31</id> + <timestamp>2009-02-08T17:02:59Z</timestamp> + <contributor> + <ip>78.115.6.242</ip> + </contributor> + <comment>/* En C */</comment> + <text xml:space="preserve">Les conventions suivantes seront utilisées pour un code homogène. + +== En C == + +* L'indentation se fait à 4 espaces par tabulation. +* Pas de transformation des espaces en tabulation. +* <code>nomsDeVariables</code> +* <code>NOMS_DE_CONSTANTE</code> +* Fonctions : +<code> + type_retour nom_fonction(type_param_1 param_1, ..., type_param_n param_n) { + code; + } +</code> +* Boucles for, avec déclaration locale à la boucle de l'itérateur s'il n'a pas lieu d'être à l'extérieur (int i=a) : +<code> + for (int i=a; i<b; i++) { + code; + } +</code> + +== En assembleur == + +On utilisera la syntaxe Gas, car elle est compatible avec le compilateur GCC</text> + </revision> + </page> + <page> + <title>Drivers/mode reel.h:int86</title> + <id>20</id> + <revision> + <id>54</id> + <timestamp>2009-02-11T13:40:21Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>Nouvelle page : {{fonctionC |void|int86|{{dec_param_d|int|interruption}}, {{dec_param_d|regs86|registres_in}}, {{dec_param_r|regs86|registres_out}} |{{param_d|registres_in}} est la valeur des regist...</comment> + <text xml:space="preserve">{{fonctionC +|void|int86|{{dec_param_d|int|interruption}}, {{dec_param_d|regs86|registres_in}}, {{dec_param_r|regs86|registres_out}} +|{{param_d|registres_in}} est la valeur des registres +avant l'interruption {{param_d|interruption}}, +{{param_r|registres_out}} est la valeur des registres après interruption. + +Cette fonction n'est pas encore écrite. +}}</text> + </revision> + </page> + <page> + <title>Environnement de programmation</title> + <id>8</id> + <revision> + <id>27</id> + <timestamp>2009-01-06T11:51:51Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>/* Tests */</comment> + <text xml:space="preserve">== Éditeur == + +Votre préféré :) Personne ne vous oblige à quoi que ce soit. Prévoyez-en un avec indentation et coloration syntaxique quand même, nano et cat sont un peu rudimentaires de ce point de vue… + +== Gestion des versions == + +SVN sera utilisé pour la gestion des versions. + +<code> + svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme + svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications +</code> + +Voir [http://faq.tuxfamily.org/SVN/Fr la faq de TuxFamily] pour plus d'infos sur l'utilisation. + +== Compilateur == + +Pour le C : '''gcc'''. Car c'est le plus courant sous linux, car il gère directement l'assembleur (syntaxe gas), car beaucoup de monde l'utilise donc on trouvera facilement de la documentation, car il est sous licence libre. + +On utilisera la version 4.3, de préférence 4.3.2 (c'est celle par défaut sous ubuntu, et sous debian testing/unstable). Si vous avez une autre version, pas de problème, mais en cas de bug bizarre, il vaudra mieux vérifier que c'est bien le code qui plante et non pas une version bugguée de gcc (c'est arrivé par le passé…) + +== Tests == + +'''NE TESTEZ JAMAIS gruntnetwork SUR UN PC RÉEL''', à moins que vous n'ayez pas peur d'un effacement de disque. +Je possède moi-même un PC avec un vieux disque dur vide de quelques Go, ça pourra servir pour faire des tests grandeur nature lorsque le projet sera viable. + +Pour les tests nous utiliserons [http://bellard.org/qemu/ qemu], un émulateur de PC libre, fonctionnant sous linux et windows, probablement sous mac aussi. Seule l'architecture x86 sera supportée pour l'instant. + +Lorsque nous en viendrons à écrire les drivers, il sera possible d'utiliser bochs pour voir si les bons drivers sont chargés lorsque la configuration matérielle (l'ensemble du matériel disponible sur un PC) change. + +Le démarrage (boot) sera assuré par [[GRUB]], installé sur une image de disquette vierge (un fichier de 1.44 Mo simulant une disquette sur laquelle seront présents GRUB, gruntnetwork et rien d'autre). Cette configuration simple évitera que d'autres facteurs de causent des bugs.</text> + </revision> + </page> + <page> + <title>GRUB</title> + <id>11</id> + <revision> + <id>28</id> + <timestamp>2009-01-06T11:53:42Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>Nouvelle page : Grub est le chargeur de démarrage utilisé par gruntnetwork. Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est ex...</comment> + <text xml:space="preserve">Grub est le chargeur de démarrage utilisé par gruntnetwork. + +Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est exécuté. Sa tâche consiste alors à afficher un menu à l'écran permettant à l'utilisateur de choisir le système d'exploitation qu'il souhaite démarrer.</text> + </revision> + </page> + <page> + <title>Langage</title> + <id>9</id> + <revision> + <id>25</id> + <timestamp>2009-01-04T05:54:38Z</timestamp> + <contributor> + <username>Jsmaniac</username> + <id>1</id> + </contributor> + <minor/> + <comment>a renommé [[Langage/]] en [[Langage]]</comment> + <text xml:space="preserve">gruntnetwork utilise de manière interne un langage de programmation graphique, qui se présente de la manière suivante : + +* Les fonctions sont représentées par des blocs +* Les blocs possèdent des ports d'entrée (paramètres de la fonction) et de sortie (valeur'''s''' de sortie) +* Un bloc n'est pas caractérisé par son nom, mais par un identifiant interne, donc pas de conflits de nommage + +* Les ports ont des conditions sur leurs valeurs (type, intervalle de valeurs, …) +* Les ports peuvent (devraient) avoir une valeur par défaut +* Les ports ont un nom et une description associée + +* Les blocs sont reliés entre eux en connectant leurs ports +* Un port de sortie peut être connecté à plusieurs ports d'entrée, la valeur de sortie étant conservée en mémoire tant qu'elle est nécessaire (ceci est l'équivalent d'un <code>let</code> en scheme, ou d'une variable locale) +* Un bloc est composé d'autres blocs dont certains ports sont connectés aux ports du bloc englobant. + +Il y a une certaine analogie entre les blocs et des circuits éléctroniques : l'information circule au travers des connexions et est modifiée par les blocs. Un bloc effectue une tâche définie, et peut être vu comme un composant électronique : on n'a pas besoin de voir à l'intérieur pour l'utiliser. + +Le langage s'écrit au travers d'une interface de recherche, qui permet de sélectionner le bon bloc parmi plusieurs homonymes s'il y en a.</text> + </revision> + </page> + <page> + <title>Liens</title> + <id>4</id> + <revision> + <id>73</id> + <timestamp>2009-12-31T01:15:10Z</timestamp> + <contributor> + <ip>195.83.178.10</ip> + </contributor> + <comment>Annulation des modifications 70 de [[Special:Contributions/94.253.24.87|94.253.24.87]] ([[User talk:94.253.24.87|discussion]])</comment> + <text xml:space="preserve">== Notions == + +* [http://fr.wikipedia.org/wiki/Basic_Input_Output_System BIOS] pour ceux qui ne savent pas ce que c'est + +=== Assembleur === + +* [http://mark.masmcode.com/ Optimisation] +* [http://www.asmcommunity.net/ asmcommunity.net] +* [http://gok.customer.netspace.net.au/resources/ Hacks SVGA] +* [http://www.x86-guide.com/ Guide pour l'assembleur X86] +* [http://asm.sourceforge.net/ asm.sourceforge.net] +* [http://www.ctyme.com/intr/int.htm Interruptions du BIOS] +* [http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html Encore les interruptions] +* [http://www.penguin.cz/~literakl/intel/intel.html 80x86 instruction set] + +=== Démarrage (boot) === + +* [http://susam.in/articles/boot-sector-code/ Secteur de boot] +* [http://www.osdcom.info/content/view/33/39/ Après GRUB (multiboot)] +* Premier boot de la première version de linux : [http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s] et [http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s] +* [http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders Chargeurs de démarrage] sur le wiki X86_Assembly +* [http://www.vnutz.com/content/program_a_bootstrap_loader Programmer un chargeur de démarrage] +* [http://www.pixelbeat.org/docs/disk/ Organisation du disque dur] (secteur de boot et fichiers de grub) +* [http://www.gnu.org/software/grub/manual/multiboot/multiboot.html Multiboot Specification] +* [http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/ Grub-0.97.tar.gz] (Téléchargement des sources) + +=== Modes du processeur (réel, protégé, ...) === +* [http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm Protected Mode Basics] : Les bases, y entrer, en sortir '''sur le processeur 80286''' (donc pas pour nous) +* [http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode X86 Assembly/Protected Mode] +* [http://osdev.berlios.de/v86.html Virtual 8086 Mode] : du réel dans du protégé +* [http://benoit.papillault.free.fr/c/l32/pm.asm pm.asm] : passage en mode protégé puis retour en mode réel + du V86 quelque part. +* [http://www.sudleyplace.com/pmtorm.html Transition from Protected Mode to Real Mode] + +=== Affichage Graphique === +Voir l'article [[Affichage Graphique]]. + +* [http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif Table des caractères ascii] +* [http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/ SuperVGA/VESA programmer's notes] +* [http://en.wikipedia.org/wiki/VESA_BIOS_Extensions VESA BIOS Extensions] sur wikipedia +* [http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11 Tutorial on VGA Graphics] : VGA, souris, bitmap +* [http://osdev.berlios.de/v86.html Virtual 8086 Mode] : Utiliser le mode 8086 virtuel pour accéder aux fonctions VESA du BIOS +* [http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html VESA Video Modes] Comment obtenir la liste des modes disponibles et des informations les concernant. +* [http://www.student.cs.uwaterloo.ca/~cs452/grub/ patch vbe] pour que grub nous passe en mode graphique +* [http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c Utilisation de l'interface en mode protégé de VBE] + +==== Références VESA ==== + +* [http://docs.ruudkoot.nl/vesasp12.txt VESA BIOS Extension 1.2] +* [http://docs.ruudkoot.nl/vbe20.txt VESA BIOS Extension 2.0] +* [http://www.vesa.org/public/VBE/vbe3.pdf VESA BIOS Extension 3.0] + +=== Drivers === + +==== Souris ==== +* [http://wiki.osdev.org/Mouse_Input Mouse Input] : Comment configurer et écouter une souris PS/2 sur osdev.org + +==== Clavier ==== +* [http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver PS2 Keyboard] : driver sur osdev.org +* [http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html Keyboard scancodes] Quel code envoyé par le clavier correspond à quel caractère. + +== Portails == + +* [http://www.osdev.org/ osdev.org] : Wiki + Forum sur le développement d'OS +* [http://www.nondot.org/sabre/os/articles OSRC] : Operating System Ressource Center +* [http://www.osdever.net/ Bona Fide OS Development] + +== Tutoriels == + +* [http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS Pépin] : tuto du boot au shell, très complet. +* [http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html AAProg] : Pas beaucoup de code mais de très bonnes explications +* Tutoriels sur [http://www.osdever.net/tutorials.php?cat=0&sort=1 Bona Fide] + +== Petits systèmes d'exploitation == +Toujours pratique pour s'inspirer… + +* [http://wiki.osdev.org/Projects Liste de projets d'OS] sur osdev.org +* [http://www.dynatos.org/ dynatos] +* [http://gok.customer.netspace.net.au/resources/ UNIOS] +* [http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html funos] +* [http://www.ninj4.net/kinetic/ kinetic], écrit en haskell. Ça vaut le coup d'oeuil. + +== Divers == +* [http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html Sujet] sur le site du zéro, pas mal de liens</text> + </revision> + </page> + <page> + <title>Notes</title> + <id>24</id> + <revision> + <id>11738</id> + <timestamp>2011-06-21T11:27:13Z</timestamp> + <contributor> + <ip>193.239.192.194</ip> + </contributor> + <comment>Page créée avec « Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être re… »</comment> + <text xml:space="preserve">Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être redéclarés tant que la construction a un effet. C'est une alternative à la possibilité de rajouter des variables "par nom" pour qu'elles soient utilisées par ex. par le code d'une fonction.</text> + </revision> + </page> + <page> + <title>Nouveau Développeur</title> + <id>7</id> + <revision> + <id>29</id> + <timestamp>2009-02-02T00:31:55Z</timestamp> + <contributor> + <ip>90.9.192.151</ip> + </contributor> + <comment>Ajout de la sous partie S'inscrire</comment> + <text xml:space="preserve">== S'inscrire == +* Créez-vous un compte sur [http://tuxfamily.org/fr/subscribe TuxFmaily] et adhérez au projet gruntnetwork +* Créez-vous un compte sur le [http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur wiki] +* Créez-vous un compte sur le [http://tracker.gruntnetwork.com/index.php?do=register tracker] + +== À lire == +* [[Prérequis]] : Un peu de lecture pour les vacances. Si vous ne savez rien sur les sujets listés dans cette page, vous risquez d'être à la traîne. +* [[Conventions]] : À respecter, pour un code homogène. Si vous avez quoi que ce soit à redire dessus, faites-le vite, avant qu'on ait des centaines de lignes à reformater :) +* [[Environnement de programmation]] : Avec quoi on travaille (Emacs ou Vim + gcc + qemu ou bochs). +* [http://tracker.gruntnetwork.com/roadmap Feuille de route] : Qui fait quoi, Quand, dans Quel ordre. +* [[Liens]] : Quand vous ne saurez plus comment faire un truc en assembleur :)</text> + </revision> + </page> + <page> + <title>Prérequis</title> + <id>2</id> + <revision> + <id>33</id> + <timestamp>2009-02-08T17:15:49Z</timestamp> + <contributor> + <ip>78.115.6.242</ip> + </contributor> + <comment>/* Connaissance du C et de l'assembleur */</comment> + <text xml:space="preserve">'''Une chose à retenir''' : Si vous êtes largués, si vous ne comprenez pas, si vous piétinez sur un bout de code qui compile pas : n'attendez pas le déluge pour vous signaler ! +Il y aura toujours quelqu'un pour vous aider à comprendre ce qui vous pose problème. + +Certaines pages lisées ici sont en anglais : si vous avez du mal, envoyez-moi un message et je ferai une traduction. + +== Un peu de lecture == + +=== Conception D'OS (GNU/Linux Magazine) === + +Dans GNU/Linux Magazine France est paru il y a quelques années une série d'articles sur la conception de systèmes d'exploitation. Les articles expliquent, pas à pas, comment créer un système simple. Je recommande vivement à tout le monde d'avoir lu ces articles d'ici la mi-janvier, comme ça on saura tous de quoi on parle. + +[http://sos.enix.org/fr/SOSDownload Les articles] sont disponibles gratuitement sur internet. + +N°s des magazines : + +* 62 : Boot + Console +* 63 : Segmentation et Interruptions +* 65 : Pagination +* 68 : Multitâche et changement de contexte +* 69 : Threads +* 70 : Espaces d'adressage, appels système et applications utilisateur +* 72 : Gestion de l'espace virtuel utilisateur +* 74 : VFS (système de fichiers virtuel) + +Vu que ce dernier numéro contient la deuxième partie d'un article très intéressant sur la compression de données, vous voudrez peut-être la première partie : n° 73. +Le site [http://www.ed-diamond.com/ ed-diamond] vous permet de commander ces anciens numéros. Il propose un « PowerPack x10 » à 25€, donc ça fait un bon cadeau de noël pour pas trop cher :) + +=== a Simple Operating System === + +Un système d'exploitation simple : [http://minso.free.fr/cavinfo/systeme/sos.html sos] + +== Connaissance du C et de l'assembleur == + +==== Cours de C : ==== +* http://c.developpez.com/cours/ +* http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html +* http://c.developpez.com/faq/ + +==== Cours d'ASM pour plateforme x86 : ==== +* http://benoit-m.developpez.com/assembleur/tutoriel/ +* http://www.scribd.com/search?c=all&query=x86&commit=Search + +== Compréhension de la procédure de démarrage (Boot) == + +* [http://fr.wikipedia.org/wiki/Master_boot_record MBR] +* [http://www.pixelbeat.org/docs/disk/ GRUB] +* (Une des) [http://fr.wikipedia.org/wiki/Init procédure(s) d'initialisation] de GNU/Linux (Nous n'utiliserons probablement pas cette méthode, mais c'est bon à connaître). + + +Nous utiliserons Grub et le standard Multiboot plutôt que de programmer notre propre chargeur de démarrage, cependant les méchanismes du MBR et de GRUB sont à comprendre pour maîtriser la chose (et pour la soutenance orale...). + +== Interruptions du BIOS (pages de référence) == + +* [http://www.ctyme.com/intr/int.htm Liste des interruptions] et de comment on s'en sert +* Les interruptions int 10h et int 13h seront utilisées. +* [http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html int 10h] +* [http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html int 13h (VGA)] +* [http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT Modes VESA]</text> + </revision> + </page> + <page> + <title>Test fonctionC</title> + <id>6</id> + <revision> + <id>12</id> + <timestamp>2009-01-01T01:05:50Z</timestamp> + <contributor> + <ip>90.14.26.225</ip> + </contributor> + <comment>Nouvelle page : {{fonctionC |int|floor|float x |Renvoie l'arrondi à l'inférieur de x }}</comment> + <text xml:space="preserve">{{fonctionC +|int|floor|float x +|Renvoie l'arrondi à l'inférieur de x +}}</text> + </revision> + </page> + <page> + <title>Nouveau Développeur</title> + <id>7</id> + <revision> + <id>29</id> + <timestamp>2009-02-02T00:31:55Z</timestamp> + <contributor> + <ip>90.9.192.151</ip> + </contributor> + <comment>Ajout de la sous partie S'inscrire</comment> + <text xml:space="preserve">== S'inscrire == +* Créez-vous un compte sur [http://tuxfamily.org/fr/subscribe TuxFmaily] et adhérez au projet gruntnetwork +* Créez-vous un compte sur le [http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur wiki] +* Créez-vous un compte sur le [http://tracker.gruntnetwork.com/index.php?do=register tracker] + +== À lire == +* [[Prérequis]] : Un peu de lecture pour les vacances. Si vous ne savez rien sur les sujets listés dans cette page, vous risquez d'être à la traîne. +* [[Conventions]] : À respecter, pour un code homogène. Si vous avez quoi que ce soit à redire dessus, faites-le vite, avant qu'on ait des centaines de lignes à reformater :) +* [[Environnement de programmation]] : Avec quoi on travaille (Emacs ou Vim + gcc + qemu ou bochs). +* [http://tracker.gruntnetwork.com/roadmap Feuille de route] : Qui fait quoi, Quand, dans Quel ordre. +* [[Liens]] : Quand vous ne saurez plus comment faire un truc en assembleur :)</text> + </revision> + </page> + <page> + <title>Affichage Graphique</title> + <id>12</id> + <revision> + <id>67</id> + <timestamp>2009-03-04T15:14:06Z</timestamp> + <contributor> + <username>Jsmaniac</username> + <id>1</id> + </contributor> + <comment>correspond pas à ce qu'on a fait</comment> + <text xml:space="preserve" /> + </revision> + </page> + <page> + <title>Drivers/mode reel.h:int86</title> + <id>20</id> + <revision> + <id>54</id> + <timestamp>2009-02-11T13:40:21Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>Nouvelle page : {{fonctionC |void|int86|{{dec_param_d|int|interruption}}, {{dec_param_d|regs86|registres_in}}, {{dec_param_r|regs86|registres_out}} |{{param_d|registres_in}} est la valeur des regist...</comment> + <text xml:space="preserve">{{fonctionC +|void|int86|{{dec_param_d|int|interruption}}, {{dec_param_d|regs86|registres_in}}, {{dec_param_r|regs86|registres_out}} +|{{param_d|registres_in}} est la valeur des registres +avant l'interruption {{param_d|interruption}}, +{{param_r|registres_out}} est la valeur des registres après interruption. + +Cette fonction n'est pas encore écrite. +}}</text> + </revision> + </page> + <page> + <title>Modèle:Dec param d</title> + <id>17</id> + <revision> + <id>52</id> + <timestamp>2009-02-11T13:34:50Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <text xml:space="preserve">d:{{{1}}} {{{2}}}</text> + </revision> + </page> + <page> + <title>Modèle:Dec param r</title> + <id>18</id> + <revision> + <id>53</id> + <timestamp>2009-02-11T13:35:32Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <text xml:space="preserve">r:{{{1}}} {{{2}}}</text> + </revision> + </page> + <page> + <title>Modèle:FonctionC</title> + <id>5</id> + <revision> + <id>15</id> + <timestamp>2009-01-01T01:08:08Z</timestamp> + <contributor> + <ip>90.14.26.225</ip> + </contributor> + <text xml:space="preserve">== {{{2}}} == + +<code> +{{{1}}} {{{2}}}({{{3}}}); +</code> + +=== Description === +{{{4}}}</text> + </revision> + </page> + <page> + <title>Modèle:Param d</title> + <id>14</id> + <revision> + <id>47</id> + <timestamp>2009-02-11T13:32:45Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <text xml:space="preserve">d:<code>{{{1}}}</code></text> + </revision> + </page> + <page> + <title>Modèle:Param r</title> + <id>15</id> + <revision> + <id>45</id> + <timestamp>2009-02-11T13:29:35Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>Nouvelle page : r:<code>{{{1}}}</code></comment> + <text xml:space="preserve">r:<code>{{{1}}}</code></text> + </revision> + </page> + <page> + <title>Environnement de programmation</title> + <id>8</id> + <revision> + <id>27</id> + <timestamp>2009-01-06T11:51:51Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>/* Tests */</comment> + <text xml:space="preserve">== Éditeur == + +Votre préféré :) Personne ne vous oblige à quoi que ce soit. Prévoyez-en un avec indentation et coloration syntaxique quand même, nano et cat sont un peu rudimentaires de ce point de vue… + +== Gestion des versions == + +SVN sera utilisé pour la gestion des versions. + +<code> + svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme + svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications +</code> + +Voir [http://faq.tuxfamily.org/SVN/Fr la faq de TuxFamily] pour plus d'infos sur l'utilisation. + +== Compilateur == + +Pour le C : '''gcc'''. Car c'est le plus courant sous linux, car il gère directement l'assembleur (syntaxe gas), car beaucoup de monde l'utilise donc on trouvera facilement de la documentation, car il est sous licence libre. + +On utilisera la version 4.3, de préférence 4.3.2 (c'est celle par défaut sous ubuntu, et sous debian testing/unstable). Si vous avez une autre version, pas de problème, mais en cas de bug bizarre, il vaudra mieux vérifier que c'est bien le code qui plante et non pas une version bugguée de gcc (c'est arrivé par le passé…) + +== Tests == + +'''NE TESTEZ JAMAIS gruntnetwork SUR UN PC RÉEL''', à moins que vous n'ayez pas peur d'un effacement de disque. +Je possède moi-même un PC avec un vieux disque dur vide de quelques Go, ça pourra servir pour faire des tests grandeur nature lorsque le projet sera viable. + +Pour les tests nous utiliserons [http://bellard.org/qemu/ qemu], un émulateur de PC libre, fonctionnant sous linux et windows, probablement sous mac aussi. Seule l'architecture x86 sera supportée pour l'instant. + +Lorsque nous en viendrons à écrire les drivers, il sera possible d'utiliser bochs pour voir si les bons drivers sont chargés lorsque la configuration matérielle (l'ensemble du matériel disponible sur un PC) change. + +Le démarrage (boot) sera assuré par [[GRUB]], installé sur une image de disquette vierge (un fichier de 1.44 Mo simulant une disquette sur laquelle seront présents GRUB, gruntnetwork et rien d'autre). Cette configuration simple évitera que d'autres facteurs de causent des bugs.</text> + </revision> + </page> + <page> + <title>Test fonctionC</title> + <id>6</id> + <revision> + <id>12</id> + <timestamp>2009-01-01T01:05:50Z</timestamp> + <contributor> + <ip>90.14.26.225</ip> + </contributor> + <comment>Nouvelle page : {{fonctionC |int|floor|float x |Renvoie l'arrondi à l'inférieur de x }}</comment> + <text xml:space="preserve">{{fonctionC +|int|floor|float x +|Renvoie l'arrondi à l'inférieur de x +}}</text> + </revision> + </page> +</mediawiki> diff --git a/download-website-script/Gruntnetwork-20230507204643-export-all-fix-pre.xml b/mediawiki-export/Gruntnetwork-20230507204643-export-all-fix-pre.xml diff --git a/mediawiki-export/Gruntnetwork-20230507204643-export-all.xml b/mediawiki-export/Gruntnetwork-20230507204643-export-all.xml @@ -0,0 +1,621 @@ +<mediawiki xmlns="http://www.mediawiki.org/xml/export-0.3/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mediawiki.org/xml/export-0.3/ http://www.mediawiki.org/xml/export-0.3.xsd" version="0.3" xml:lang="fr"> + <siteinfo> + <sitename>Gruntnetwork</sitename> + <base>https://wiki.gruntnetwork.com/Accueil</base> + <generator>MediaWiki 1.15.1</generator> + <case>first-letter</case> + <namespaces> + <namespace key="-2">Média</namespace> + <namespace key="-1">Spécial</namespace> + <namespace key="0" /> + <namespace key="1">Discussion</namespace> + <namespace key="2">Utilisateur</namespace> + <namespace key="3">Discussion utilisateur</namespace> + <namespace key="4">Gruntnetwork</namespace> + <namespace key="5">Discussion Gruntnetwork</namespace> + <namespace key="6">Fichier</namespace> + <namespace key="7">Discussion fichier</namespace> + <namespace key="8">MediaWiki</namespace> + <namespace key="9">Discussion MediaWiki</namespace> + <namespace key="10">Modèle</namespace> + <namespace key="11">Discussion modèle</namespace> + <namespace key="12">Aide</namespace> + <namespace key="13">Discussion aide</namespace> + <namespace key="14">Catégorie</namespace> + <namespace key="15">Discussion catégorie</namespace> + </namespaces> + </siteinfo> + <page> + <title>Accueil</title> + <id>1</id> + <revision> + <id>11737</id> + <timestamp>2011-06-21T11:25:11Z</timestamp> + <contributor> + <ip>193.239.192.194</ip> + </contributor> + <text xml:space="preserve">== gruntnetwork == + +gruntnetwork est un système d'exploitation sous licence Affero GPL. Actuellement il est en phase de développement, dans le cadre d'un projet pédagogique à l'Université Montpellier 2. + +== Nouveau Développeur ? == +{{:Nouveau Développeur}} + +[[notes]]</text> + </revision> + </page> + <page> + <title>Affichage Graphique</title> + <id>12</id> + <revision> + <id>67</id> + <timestamp>2009-03-04T15:14:06Z</timestamp> + <contributor> + <username>Jsmaniac</username> + <id>1</id> + </contributor> + <comment>correspond pas à ce qu'on a fait</comment> + <text xml:space="preserve" /> + </revision> + </page> + <page> + <title>Conventions</title> + <id>3</id> + <revision> + <id>31</id> + <timestamp>2009-02-08T17:02:59Z</timestamp> + <contributor> + <ip>78.115.6.242</ip> + </contributor> + <comment>/* En C */</comment> + <text xml:space="preserve">Les conventions suivantes seront utilisées pour un code homogène. + +== En C == + +* L'indentation se fait à 4 espaces par tabulation. +* Pas de transformation des espaces en tabulation. +* <code>nomsDeVariables</code> +* <code>NOMS_DE_CONSTANTE</code> +* Fonctions : +<code> + type_retour nom_fonction(type_param_1 param_1, ..., type_param_n param_n) { + code; + } +</code> +* Boucles for, avec déclaration locale à la boucle de l'itérateur s'il n'a pas lieu d'être à l'extérieur (int i=a) : +<code> + for (int i=a; i<b; i++) { + code; + } +</code> + +== En assembleur == + +On utilisera la syntaxe Gas, car elle est compatible avec le compilateur GCC</text> + </revision> + </page> + <page> + <title>Drivers/mode reel.h:int86</title> + <id>20</id> + <revision> + <id>54</id> + <timestamp>2009-02-11T13:40:21Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>Nouvelle page : {{fonctionC |void|int86|{{dec_param_d|int|interruption}}, {{dec_param_d|regs86|registres_in}}, {{dec_param_r|regs86|registres_out}} |{{param_d|registres_in}} est la valeur des regist...</comment> + <text xml:space="preserve">{{fonctionC +|void|int86|{{dec_param_d|int|interruption}}, {{dec_param_d|regs86|registres_in}}, {{dec_param_r|regs86|registres_out}} +|{{param_d|registres_in}} est la valeur des registres +avant l'interruption {{param_d|interruption}}, +{{param_r|registres_out}} est la valeur des registres après interruption. + +Cette fonction n'est pas encore écrite. +}}</text> + </revision> + </page> + <page> + <title>Environnement de programmation</title> + <id>8</id> + <revision> + <id>27</id> + <timestamp>2009-01-06T11:51:51Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>/* Tests */</comment> + <text xml:space="preserve">== Éditeur == + +Votre préféré :) Personne ne vous oblige à quoi que ce soit. Prévoyez-en un avec indentation et coloration syntaxique quand même, nano et cat sont un peu rudimentaires de ce point de vue… + +== Gestion des versions == + +SVN sera utilisé pour la gestion des versions. + +<code> + svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme + svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications +</code> + +Voir [http://faq.tuxfamily.org/SVN/Fr la faq de TuxFamily] pour plus d'infos sur l'utilisation. + +== Compilateur == + +Pour le C : '''gcc'''. Car c'est le plus courant sous linux, car il gère directement l'assembleur (syntaxe gas), car beaucoup de monde l'utilise donc on trouvera facilement de la documentation, car il est sous licence libre. + +On utilisera la version 4.3, de préférence 4.3.2 (c'est celle par défaut sous ubuntu, et sous debian testing/unstable). Si vous avez une autre version, pas de problème, mais en cas de bug bizarre, il vaudra mieux vérifier que c'est bien le code qui plante et non pas une version bugguée de gcc (c'est arrivé par le passé…) + +== Tests == + +'''NE TESTEZ JAMAIS gruntnetwork SUR UN PC RÉEL''', à moins que vous n'ayez pas peur d'un effacement de disque. +Je possède moi-même un PC avec un vieux disque dur vide de quelques Go, ça pourra servir pour faire des tests grandeur nature lorsque le projet sera viable. + +Pour les tests nous utiliserons [http://bellard.org/qemu/ qemu], un émulateur de PC libre, fonctionnant sous linux et windows, probablement sous mac aussi. Seule l'architecture x86 sera supportée pour l'instant. + +Lorsque nous en viendrons à écrire les drivers, il sera possible d'utiliser bochs pour voir si les bons drivers sont chargés lorsque la configuration matérielle (l'ensemble du matériel disponible sur un PC) change. + +Le démarrage (boot) sera assuré par [[GRUB]], installé sur une image de disquette vierge (un fichier de 1.44 Mo simulant une disquette sur laquelle seront présents GRUB, gruntnetwork et rien d'autre). Cette configuration simple évitera que d'autres facteurs de causent des bugs.</text> + </revision> + </page> + <page> + <title>GRUB</title> + <id>11</id> + <revision> + <id>28</id> + <timestamp>2009-01-06T11:53:42Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>Nouvelle page : Grub est le chargeur de démarrage utilisé par gruntnetwork. Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est ex...</comment> + <text xml:space="preserve">Grub est le chargeur de démarrage utilisé par gruntnetwork. + +Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est exécuté. Sa tâche consiste alors à afficher un menu à l'écran permettant à l'utilisateur de choisir le système d'exploitation qu'il souhaite démarrer.</text> + </revision> + </page> + <page> + <title>Langage</title> + <id>9</id> + <revision> + <id>25</id> + <timestamp>2009-01-04T05:54:38Z</timestamp> + <contributor> + <username>Jsmaniac</username> + <id>1</id> + </contributor> + <minor/> + <comment>a renommé [[Langage/]] en [[Langage]]</comment> + <text xml:space="preserve">gruntnetwork utilise de manière interne un langage de programmation graphique, qui se présente de la manière suivante : + +* Les fonctions sont représentées par des blocs +* Les blocs possèdent des ports d'entrée (paramètres de la fonction) et de sortie (valeur'''s''' de sortie) +* Un bloc n'est pas caractérisé par son nom, mais par un identifiant interne, donc pas de conflits de nommage + +* Les ports ont des conditions sur leurs valeurs (type, intervalle de valeurs, …) +* Les ports peuvent (devraient) avoir une valeur par défaut +* Les ports ont un nom et une description associée + +* Les blocs sont reliés entre eux en connectant leurs ports +* Un port de sortie peut être connecté à plusieurs ports d'entrée, la valeur de sortie étant conservée en mémoire tant qu'elle est nécessaire (ceci est l'équivalent d'un <code>let</code> en scheme, ou d'une variable locale) +* Un bloc est composé d'autres blocs dont certains ports sont connectés aux ports du bloc englobant. + +Il y a une certaine analogie entre les blocs et des circuits éléctroniques : l'information circule au travers des connexions et est modifiée par les blocs. Un bloc effectue une tâche définie, et peut être vu comme un composant électronique : on n'a pas besoin de voir à l'intérieur pour l'utiliser. + +Le langage s'écrit au travers d'une interface de recherche, qui permet de sélectionner le bon bloc parmi plusieurs homonymes s'il y en a.</text> + </revision> + </page> + <page> + <title>Langage/</title> + <id>10</id> + <revision> + <id>26</id> + <timestamp>2009-01-04T05:54:38Z</timestamp> + <contributor> + <username>Jsmaniac</username> + <id>1</id> + </contributor> + <comment>a renommé [[Langage/]] en [[Langage]]</comment> + <text xml:space="preserve">#REDIRECT [[Langage]]</text> + </revision> + </page> + <page> + <title>Liens</title> + <id>4</id> + <revision> + <id>73</id> + <timestamp>2009-12-31T01:15:10Z</timestamp> + <contributor> + <ip>195.83.178.10</ip> + </contributor> + <comment>Annulation des modifications 70 de [[Special:Contributions/94.253.24.87|94.253.24.87]] ([[User talk:94.253.24.87|discussion]])</comment> + <text xml:space="preserve">== Notions == + +* [http://fr.wikipedia.org/wiki/Basic_Input_Output_System BIOS] pour ceux qui ne savent pas ce que c'est + +=== Assembleur === + +* [http://mark.masmcode.com/ Optimisation] +* [http://www.asmcommunity.net/ asmcommunity.net] +* [http://gok.customer.netspace.net.au/resources/ Hacks SVGA] +* [http://www.x86-guide.com/ Guide pour l'assembleur X86] +* [http://asm.sourceforge.net/ asm.sourceforge.net] +* [http://www.ctyme.com/intr/int.htm Interruptions du BIOS] +* [http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html Encore les interruptions] +* [http://www.penguin.cz/~literakl/intel/intel.html 80x86 instruction set] + +=== Démarrage (boot) === + +* [http://susam.in/articles/boot-sector-code/ Secteur de boot] +* [http://www.osdcom.info/content/view/33/39/ Après GRUB (multiboot)] +* Premier boot de la première version de linux : [http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s] et [http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s] +* [http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders Chargeurs de démarrage] sur le wiki X86_Assembly +* [http://www.vnutz.com/content/program_a_bootstrap_loader Programmer un chargeur de démarrage] +* [http://www.pixelbeat.org/docs/disk/ Organisation du disque dur] (secteur de boot et fichiers de grub) +* [http://www.gnu.org/software/grub/manual/multiboot/multiboot.html Multiboot Specification] +* [http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/ Grub-0.97.tar.gz] (Téléchargement des sources) + +=== Modes du processeur (réel, protégé, ...) === +* [http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm Protected Mode Basics] : Les bases, y entrer, en sortir '''sur le processeur 80286''' (donc pas pour nous) +* [http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode X86 Assembly/Protected Mode] +* [http://osdev.berlios.de/v86.html Virtual 8086 Mode] : du réel dans du protégé +* [http://benoit.papillault.free.fr/c/l32/pm.asm pm.asm] : passage en mode protégé puis retour en mode réel + du V86 quelque part. +* [http://www.sudleyplace.com/pmtorm.html Transition from Protected Mode to Real Mode] + +=== Affichage Graphique === +Voir l'article [[Affichage Graphique]]. + +* [http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif Table des caractères ascii] +* [http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/ SuperVGA/VESA programmer's notes] +* [http://en.wikipedia.org/wiki/VESA_BIOS_Extensions VESA BIOS Extensions] sur wikipedia +* [http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11 Tutorial on VGA Graphics] : VGA, souris, bitmap +* [http://osdev.berlios.de/v86.html Virtual 8086 Mode] : Utiliser le mode 8086 virtuel pour accéder aux fonctions VESA du BIOS +* [http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html VESA Video Modes] Comment obtenir la liste des modes disponibles et des informations les concernant. +* [http://www.student.cs.uwaterloo.ca/~cs452/grub/ patch vbe] pour que grub nous passe en mode graphique +* [http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c Utilisation de l'interface en mode protégé de VBE] + +==== Références VESA ==== + +* [http://docs.ruudkoot.nl/vesasp12.txt VESA BIOS Extension 1.2] +* [http://docs.ruudkoot.nl/vbe20.txt VESA BIOS Extension 2.0] +* [http://www.vesa.org/public/VBE/vbe3.pdf VESA BIOS Extension 3.0] + +=== Drivers === + +==== Souris ==== +* [http://wiki.osdev.org/Mouse_Input Mouse Input] : Comment configurer et écouter une souris PS/2 sur osdev.org + +==== Clavier ==== +* [http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver PS2 Keyboard] : driver sur osdev.org +* [http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html Keyboard scancodes] Quel code envoyé par le clavier correspond à quel caractère. + +== Portails == + +* [http://www.osdev.org/ osdev.org] : Wiki + Forum sur le développement d'OS +* [http://www.nondot.org/sabre/os/articles OSRC] : Operating System Ressource Center +* [http://www.osdever.net/ Bona Fide OS Development] + +== Tutoriels == + +* [http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS Pépin] : tuto du boot au shell, très complet. +* [http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html AAProg] : Pas beaucoup de code mais de très bonnes explications +* Tutoriels sur [http://www.osdever.net/tutorials.php?cat=0&sort=1 Bona Fide] + +== Petits systèmes d'exploitation == +Toujours pratique pour s'inspirer… + +* [http://wiki.osdev.org/Projects Liste de projets d'OS] sur osdev.org +* [http://www.dynatos.org/ dynatos] +* [http://gok.customer.netspace.net.au/resources/ UNIOS] +* [http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html funos] +* [http://www.ninj4.net/kinetic/ kinetic], écrit en haskell. Ça vaut le coup d'oeuil. + +== Divers == +* [http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html Sujet] sur le site du zéro, pas mal de liens</text> + </revision> + </page> + <page> + <title>Notes</title> + <id>24</id> + <revision> + <id>11738</id> + <timestamp>2011-06-21T11:27:13Z</timestamp> + <contributor> + <ip>193.239.192.194</ip> + </contributor> + <comment>Page créée avec « Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être re… »</comment> + <text xml:space="preserve">Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être redéclarés tant que la construction a un effet. C'est une alternative à la possibilité de rajouter des variables "par nom" pour qu'elles soient utilisées par ex. par le code d'une fonction.</text> + </revision> + </page> + <page> + <title>Nouveau Développeur</title> + <id>7</id> + <revision> + <id>29</id> + <timestamp>2009-02-02T00:31:55Z</timestamp> + <contributor> + <ip>90.9.192.151</ip> + </contributor> + <comment>Ajout de la sous partie S'inscrire</comment> + <text xml:space="preserve">== S'inscrire == +* Créez-vous un compte sur [http://tuxfamily.org/fr/subscribe TuxFmaily] et adhérez au projet gruntnetwork +* Créez-vous un compte sur le [http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur wiki] +* Créez-vous un compte sur le [http://tracker.gruntnetwork.com/index.php?do=register tracker] + +== À lire == +* [[Prérequis]] : Un peu de lecture pour les vacances. Si vous ne savez rien sur les sujets listés dans cette page, vous risquez d'être à la traîne. +* [[Conventions]] : À respecter, pour un code homogène. Si vous avez quoi que ce soit à redire dessus, faites-le vite, avant qu'on ait des centaines de lignes à reformater :) +* [[Environnement de programmation]] : Avec quoi on travaille (Emacs ou Vim + gcc + qemu ou bochs). +* [http://tracker.gruntnetwork.com/roadmap Feuille de route] : Qui fait quoi, Quand, dans Quel ordre. +* [[Liens]] : Quand vous ne saurez plus comment faire un truc en assembleur :)</text> + </revision> + </page> + <page> + <title>Prérequis</title> + <id>2</id> + <revision> + <id>33</id> + <timestamp>2009-02-08T17:15:49Z</timestamp> + <contributor> + <ip>78.115.6.242</ip> + </contributor> + <comment>/* Connaissance du C et de l'assembleur */</comment> + <text xml:space="preserve">'''Une chose à retenir''' : Si vous êtes largués, si vous ne comprenez pas, si vous piétinez sur un bout de code qui compile pas : n'attendez pas le déluge pour vous signaler ! +Il y aura toujours quelqu'un pour vous aider à comprendre ce qui vous pose problème. + +Certaines pages lisées ici sont en anglais : si vous avez du mal, envoyez-moi un message et je ferai une traduction. + +== Un peu de lecture == + +=== Conception D'OS (GNU/Linux Magazine) === + +Dans GNU/Linux Magazine France est paru il y a quelques années une série d'articles sur la conception de systèmes d'exploitation. Les articles expliquent, pas à pas, comment créer un système simple. Je recommande vivement à tout le monde d'avoir lu ces articles d'ici la mi-janvier, comme ça on saura tous de quoi on parle. + +[http://sos.enix.org/fr/SOSDownload Les articles] sont disponibles gratuitement sur internet. + +N°s des magazines : + +* 62 : Boot + Console +* 63 : Segmentation et Interruptions +* 65 : Pagination +* 68 : Multitâche et changement de contexte +* 69 : Threads +* 70 : Espaces d'adressage, appels système et applications utilisateur +* 72 : Gestion de l'espace virtuel utilisateur +* 74 : VFS (système de fichiers virtuel) + +Vu que ce dernier numéro contient la deuxième partie d'un article très intéressant sur la compression de données, vous voudrez peut-être la première partie : n° 73. +Le site [http://www.ed-diamond.com/ ed-diamond] vous permet de commander ces anciens numéros. Il propose un « PowerPack x10 » à 25€, donc ça fait un bon cadeau de noël pour pas trop cher :) + +=== a Simple Operating System === + +Un système d'exploitation simple : [http://minso.free.fr/cavinfo/systeme/sos.html sos] + +== Connaissance du C et de l'assembleur == + +==== Cours de C : ==== +* http://c.developpez.com/cours/ +* http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html +* http://c.developpez.com/faq/ + +==== Cours d'ASM pour plateforme x86 : ==== +* http://benoit-m.developpez.com/assembleur/tutoriel/ +* http://www.scribd.com/search?c=all&query=x86&commit=Search + +== Compréhension de la procédure de démarrage (Boot) == + +* [http://fr.wikipedia.org/wiki/Master_boot_record MBR] +* [http://www.pixelbeat.org/docs/disk/ GRUB] +* (Une des) [http://fr.wikipedia.org/wiki/Init procédure(s) d'initialisation] de GNU/Linux (Nous n'utiliserons probablement pas cette méthode, mais c'est bon à connaître). + + +Nous utiliserons Grub et le standard Multiboot plutôt que de programmer notre propre chargeur de démarrage, cependant les méchanismes du MBR et de GRUB sont à comprendre pour maîtriser la chose (et pour la soutenance orale...). + +== Interruptions du BIOS (pages de référence) == + +* [http://www.ctyme.com/intr/int.htm Liste des interruptions] et de comment on s'en sert +* Les interruptions int 10h et int 13h seront utilisées. +* [http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html int 10h] +* [http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html int 13h (VGA)] +* [http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT Modes VESA]</text> + </revision> + </page> + <page> + <title>Test fonctionC</title> + <id>6</id> + <revision> + <id>12</id> + <timestamp>2009-01-01T01:05:50Z</timestamp> + <contributor> + <ip>90.14.26.225</ip> + </contributor> + <comment>Nouvelle page : {{fonctionC |int|floor|float x |Renvoie l'arrondi à l'inférieur de x }}</comment> + <text xml:space="preserve">{{fonctionC +|int|floor|float x +|Renvoie l'arrondi à l'inférieur de x +}}</text> + </revision> + </page> + <page> + <title>Nouveau Développeur</title> + <id>7</id> + <revision> + <id>29</id> + <timestamp>2009-02-02T00:31:55Z</timestamp> + <contributor> + <ip>90.9.192.151</ip> + </contributor> + <comment>Ajout de la sous partie S'inscrire</comment> + <text xml:space="preserve">== S'inscrire == +* Créez-vous un compte sur [http://tuxfamily.org/fr/subscribe TuxFmaily] et adhérez au projet gruntnetwork +* Créez-vous un compte sur le [http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur wiki] +* Créez-vous un compte sur le [http://tracker.gruntnetwork.com/index.php?do=register tracker] + +== À lire == +* [[Prérequis]] : Un peu de lecture pour les vacances. Si vous ne savez rien sur les sujets listés dans cette page, vous risquez d'être à la traîne. +* [[Conventions]] : À respecter, pour un code homogène. Si vous avez quoi que ce soit à redire dessus, faites-le vite, avant qu'on ait des centaines de lignes à reformater :) +* [[Environnement de programmation]] : Avec quoi on travaille (Emacs ou Vim + gcc + qemu ou bochs). +* [http://tracker.gruntnetwork.com/roadmap Feuille de route] : Qui fait quoi, Quand, dans Quel ordre. +* [[Liens]] : Quand vous ne saurez plus comment faire un truc en assembleur :)</text> + </revision> + </page> + <page> + <title>Affichage Graphique</title> + <id>12</id> + <revision> + <id>67</id> + <timestamp>2009-03-04T15:14:06Z</timestamp> + <contributor> + <username>Jsmaniac</username> + <id>1</id> + </contributor> + <comment>correspond pas à ce qu'on a fait</comment> + <text xml:space="preserve" /> + </revision> + </page> + <page> + <title>Drivers/mode reel.h:int86</title> + <id>20</id> + <revision> + <id>54</id> + <timestamp>2009-02-11T13:40:21Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>Nouvelle page : {{fonctionC |void|int86|{{dec_param_d|int|interruption}}, {{dec_param_d|regs86|registres_in}}, {{dec_param_r|regs86|registres_out}} |{{param_d|registres_in}} est la valeur des regist...</comment> + <text xml:space="preserve">{{fonctionC +|void|int86|{{dec_param_d|int|interruption}}, {{dec_param_d|regs86|registres_in}}, {{dec_param_r|regs86|registres_out}} +|{{param_d|registres_in}} est la valeur des registres +avant l'interruption {{param_d|interruption}}, +{{param_r|registres_out}} est la valeur des registres après interruption. + +Cette fonction n'est pas encore écrite. +}}</text> + </revision> + </page> + <page> + <title>Modèle:Dec param d</title> + <id>17</id> + <revision> + <id>52</id> + <timestamp>2009-02-11T13:34:50Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <text xml:space="preserve">d:{{{1}}} {{{2}}}</text> + </revision> + </page> + <page> + <title>Modèle:Dec param r</title> + <id>18</id> + <revision> + <id>53</id> + <timestamp>2009-02-11T13:35:32Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <text xml:space="preserve">r:{{{1}}} {{{2}}}</text> + </revision> + </page> + <page> + <title>Modèle:FonctionC</title> + <id>5</id> + <revision> + <id>15</id> + <timestamp>2009-01-01T01:08:08Z</timestamp> + <contributor> + <ip>90.14.26.225</ip> + </contributor> + <text xml:space="preserve">== {{{2}}} == + +<code> +{{{1}}} {{{2}}}({{{3}}}); +</code> + +=== Description === +{{{4}}}</text> + </revision> + </page> + <page> + <title>Modèle:Param d</title> + <id>14</id> + <revision> + <id>47</id> + <timestamp>2009-02-11T13:32:45Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <text xml:space="preserve">d:<code>{{{1}}}</code></text> + </revision> + </page> + <page> + <title>Modèle:Param r</title> + <id>15</id> + <revision> + <id>45</id> + <timestamp>2009-02-11T13:29:35Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>Nouvelle page : r:<code>{{{1}}}</code></comment> + <text xml:space="preserve">r:<code>{{{1}}}</code></text> + </revision> + </page> + <page> + <title>Environnement de programmation</title> + <id>8</id> + <revision> + <id>27</id> + <timestamp>2009-01-06T11:51:51Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>/* Tests */</comment> + <text xml:space="preserve">== Éditeur == + +Votre préféré :) Personne ne vous oblige à quoi que ce soit. Prévoyez-en un avec indentation et coloration syntaxique quand même, nano et cat sont un peu rudimentaires de ce point de vue… + +== Gestion des versions == + +SVN sera utilisé pour la gestion des versions. + +<code> + svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme + svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications +</code> + +Voir [http://faq.tuxfamily.org/SVN/Fr la faq de TuxFamily] pour plus d'infos sur l'utilisation. + +== Compilateur == + +Pour le C : '''gcc'''. Car c'est le plus courant sous linux, car il gère directement l'assembleur (syntaxe gas), car beaucoup de monde l'utilise donc on trouvera facilement de la documentation, car il est sous licence libre. + +On utilisera la version 4.3, de préférence 4.3.2 (c'est celle par défaut sous ubuntu, et sous debian testing/unstable). Si vous avez une autre version, pas de problème, mais en cas de bug bizarre, il vaudra mieux vérifier que c'est bien le code qui plante et non pas une version bugguée de gcc (c'est arrivé par le passé…) + +== Tests == + +'''NE TESTEZ JAMAIS gruntnetwork SUR UN PC RÉEL''', à moins que vous n'ayez pas peur d'un effacement de disque. +Je possède moi-même un PC avec un vieux disque dur vide de quelques Go, ça pourra servir pour faire des tests grandeur nature lorsque le projet sera viable. + +Pour les tests nous utiliserons [http://bellard.org/qemu/ qemu], un émulateur de PC libre, fonctionnant sous linux et windows, probablement sous mac aussi. Seule l'architecture x86 sera supportée pour l'instant. + +Lorsque nous en viendrons à écrire les drivers, il sera possible d'utiliser bochs pour voir si les bons drivers sont chargés lorsque la configuration matérielle (l'ensemble du matériel disponible sur un PC) change. + +Le démarrage (boot) sera assuré par [[GRUB]], installé sur une image de disquette vierge (un fichier de 1.44 Mo simulant une disquette sur laquelle seront présents GRUB, gruntnetwork et rien d'autre). Cette configuration simple évitera que d'autres facteurs de causent des bugs.</text> + </revision> + </page> + <page> + <title>Test fonctionC</title> + <id>6</id> + <revision> + <id>12</id> + <timestamp>2009-01-01T01:05:50Z</timestamp> + <contributor> + <ip>90.14.26.225</ip> + </contributor> + <comment>Nouvelle page : {{fonctionC |int|floor|float x |Renvoie l'arrondi à l'inférieur de x }}</comment> + <text xml:space="preserve">{{fonctionC +|int|floor|float x +|Renvoie l'arrondi à l'inférieur de x +}}</text> + </revision> + </page> +</mediawiki> diff --git a/mediawiki-export/mediawiki-Gruntnetwork-20230506232102.xml b/mediawiki-export/mediawiki-Gruntnetwork-20230506232102.xml @@ -0,0 +1,474 @@ +<mediawiki xmlns="http://www.mediawiki.org/xml/export-0.3/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.mediawiki.org/xml/export-0.3/ http://www.mediawiki.org/xml/export-0.3.xsd" version="0.3" xml:lang="fr"> + <siteinfo> + <sitename>Gruntnetwork</sitename> + <base>https://wiki.gruntnetwork.com/Accueil</base> + <generator>MediaWiki 1.15.1</generator> + <case>first-letter</case> + <namespaces> + <namespace key="-2">Média</namespace> + <namespace key="-1">Spécial</namespace> + <namespace key="0" /> + <namespace key="1">Discussion</namespace> + <namespace key="2">Utilisateur</namespace> + <namespace key="3">Discussion utilisateur</namespace> + <namespace key="4">Gruntnetwork</namespace> + <namespace key="5">Discussion Gruntnetwork</namespace> + <namespace key="6">Fichier</namespace> + <namespace key="7">Discussion fichier</namespace> + <namespace key="8">MediaWiki</namespace> + <namespace key="9">Discussion MediaWiki</namespace> + <namespace key="10">Modèle</namespace> + <namespace key="11">Discussion modèle</namespace> + <namespace key="12">Aide</namespace> + <namespace key="13">Discussion aide</namespace> + <namespace key="14">Catégorie</namespace> + <namespace key="15">Discussion catégorie</namespace> + </namespaces> + </siteinfo> + <page> + <title>Accueil</title> + <id>1</id> + <revision> + <id>11737</id> + <timestamp>2011-06-21T11:25:11Z</timestamp> + <contributor> + <ip>193.239.192.194</ip> + </contributor> + <text xml:space="preserve">== gruntnetwork == + +gruntnetwork est un système d'exploitation sous licence Affero GPL. Actuellement il est en phase de développement, dans le cadre d'un projet pédagogique à l'Université Montpellier 2. + +== Nouveau Développeur ? == +{{:Nouveau Développeur}} + +[[notes]]</text> + </revision> + </page> + <page> + <title>Affichage Graphique</title> + <id>12</id> + <revision> + <id>67</id> + <timestamp>2009-03-04T15:14:06Z</timestamp> + <contributor> + <username>Jsmaniac</username> + <id>1</id> + </contributor> + <comment>correspond pas à ce qu'on a fait</comment> + <text xml:space="preserve" /> + </revision> + </page> + <page> + <title>Conventions</title> + <id>3</id> + <revision> + <id>31</id> + <timestamp>2009-02-08T17:02:59Z</timestamp> + <contributor> + <ip>78.115.6.242</ip> + </contributor> + <comment>/* En C */</comment> + <text xml:space="preserve">Les conventions suivantes seront utilisées pour un code homogène. + +== En C == + +* L'indentation se fait à 4 espaces par tabulation. +* Pas de transformation des espaces en tabulation. +* <code>nomsDeVariables</code> +* <code>NOMS_DE_CONSTANTE</code> +* Fonctions : +<code> + type_retour nom_fonction(type_param_1 param_1, ..., type_param_n param_n) { + code; + } +</code> +* Boucles for, avec déclaration locale à la boucle de l'itérateur s'il n'a pas lieu d'être à l'extérieur (int i=a) : +<code> + for (int i=a; i<b; i++) { + code; + } +</code> + +== En assembleur == + +On utilisera la syntaxe Gas, car elle est compatible avec le compilateur GCC</text> + </revision> + </page> + <page> + <title>Drivers/mode reel.h:int86</title> + <id>20</id> + <revision> + <id>54</id> + <timestamp>2009-02-11T13:40:21Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>Nouvelle page : {{fonctionC |void|int86|{{dec_param_d|int|interruption}}, {{dec_param_d|regs86|registres_in}}, {{dec_param_r|regs86|registres_out}} |{{param_d|registres_in}} est la valeur des regist...</comment> + <text xml:space="preserve">{{fonctionC +|void|int86|{{dec_param_d|int|interruption}}, {{dec_param_d|regs86|registres_in}}, {{dec_param_r|regs86|registres_out}} +|{{param_d|registres_in}} est la valeur des registres +avant l'interruption {{param_d|interruption}}, +{{param_r|registres_out}} est la valeur des registres après interruption. + +Cette fonction n'est pas encore écrite. +}}</text> + </revision> + </page> + <page> + <title>Environnement de programmation</title> + <id>8</id> + <revision> + <id>27</id> + <timestamp>2009-01-06T11:51:51Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>/* Tests */</comment> + <text xml:space="preserve">== Éditeur == + +Votre préféré :) Personne ne vous oblige à quoi que ce soit. Prévoyez-en un avec indentation et coloration syntaxique quand même, nano et cat sont un peu rudimentaires de ce point de vue… + +== Gestion des versions == + +SVN sera utilisé pour la gestion des versions. + +<code> + svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme + svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications +</code> + +Voir [http://faq.tuxfamily.org/SVN/Fr la faq de TuxFamily] pour plus d'infos sur l'utilisation. + +== Compilateur == + +Pour le C : '''gcc'''. Car c'est le plus courant sous linux, car il gère directement l'assembleur (syntaxe gas), car beaucoup de monde l'utilise donc on trouvera facilement de la documentation, car il est sous licence libre. + +On utilisera la version 4.3, de préférence 4.3.2 (c'est celle par défaut sous ubuntu, et sous debian testing/unstable). Si vous avez une autre version, pas de problème, mais en cas de bug bizarre, il vaudra mieux vérifier que c'est bien le code qui plante et non pas une version bugguée de gcc (c'est arrivé par le passé…) + +== Tests == + +'''NE TESTEZ JAMAIS gruntnetwork SUR UN PC RÉEL''', à moins que vous n'ayez pas peur d'un effacement de disque. +Je possède moi-même un PC avec un vieux disque dur vide de quelques Go, ça pourra servir pour faire des tests grandeur nature lorsque le projet sera viable. + +Pour les tests nous utiliserons [http://bellard.org/qemu/ qemu], un émulateur de PC libre, fonctionnant sous linux et windows, probablement sous mac aussi. Seule l'architecture x86 sera supportée pour l'instant. + +Lorsque nous en viendrons à écrire les drivers, il sera possible d'utiliser bochs pour voir si les bons drivers sont chargés lorsque la configuration matérielle (l'ensemble du matériel disponible sur un PC) change. + +Le démarrage (boot) sera assuré par [[GRUB]], installé sur une image de disquette vierge (un fichier de 1.44 Mo simulant une disquette sur laquelle seront présents GRUB, gruntnetwork et rien d'autre). Cette configuration simple évitera que d'autres facteurs de causent des bugs.</text> + </revision> + </page> + <page> + <title>GRUB</title> + <id>11</id> + <revision> + <id>28</id> + <timestamp>2009-01-06T11:53:42Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>Nouvelle page : Grub est le chargeur de démarrage utilisé par gruntnetwork. Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est ex...</comment> + <text xml:space="preserve">Grub est le chargeur de démarrage utilisé par gruntnetwork. + +Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est exécuté. Sa tâche consiste alors à afficher un menu à l'écran permettant à l'utilisateur de choisir le système d'exploitation qu'il souhaite démarrer.</text> + </revision> + </page> + <page> + <title>Langage/</title> + <id>10</id> + <revision> + <id>26</id> + <timestamp>2009-01-04T05:54:38Z</timestamp> + <contributor> + <username>Jsmaniac</username> + <id>1</id> + </contributor> + <comment>a renommé [[Langage/]] en [[Langage]]</comment> + <text xml:space="preserve">#REDIRECT [[Langage]]</text> + </revision> + </page> + <page> + <title>Liens</title> + <id>4</id> + <revision> + <id>73</id> + <timestamp>2009-12-31T01:15:10Z</timestamp> + <contributor> + <ip>195.83.178.10</ip> + </contributor> + <comment>Annulation des modifications 70 de [[Special:Contributions/94.253.24.87|94.253.24.87]] ([[User talk:94.253.24.87|discussion]])</comment> + <text xml:space="preserve">== Notions == + +* [http://fr.wikipedia.org/wiki/Basic_Input_Output_System BIOS] pour ceux qui ne savent pas ce que c'est + +=== Assembleur === + +* [http://mark.masmcode.com/ Optimisation] +* [http://www.asmcommunity.net/ asmcommunity.net] +* [http://gok.customer.netspace.net.au/resources/ Hacks SVGA] +* [http://www.x86-guide.com/ Guide pour l'assembleur X86] +* [http://asm.sourceforge.net/ asm.sourceforge.net] +* [http://www.ctyme.com/intr/int.htm Interruptions du BIOS] +* [http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html Encore les interruptions] +* [http://www.penguin.cz/~literakl/intel/intel.html 80x86 instruction set] + +=== Démarrage (boot) === + +* [http://susam.in/articles/boot-sector-code/ Secteur de boot] +* [http://www.osdcom.info/content/view/33/39/ Après GRUB (multiboot)] +* Premier boot de la première version de linux : [http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s] et [http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s] +* [http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders Chargeurs de démarrage] sur le wiki X86_Assembly +* [http://www.vnutz.com/content/program_a_bootstrap_loader Programmer un chargeur de démarrage] +* [http://www.pixelbeat.org/docs/disk/ Organisation du disque dur] (secteur de boot et fichiers de grub) +* [http://www.gnu.org/software/grub/manual/multiboot/multiboot.html Multiboot Specification] +* [http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/ Grub-0.97.tar.gz] (Téléchargement des sources) + +=== Modes du processeur (réel, protégé, ...) === +* [http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm Protected Mode Basics] : Les bases, y entrer, en sortir '''sur le processeur 80286''' (donc pas pour nous) +* [http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode X86 Assembly/Protected Mode] +* [http://osdev.berlios.de/v86.html Virtual 8086 Mode] : du réel dans du protégé +* [http://benoit.papillault.free.fr/c/l32/pm.asm pm.asm] : passage en mode protégé puis retour en mode réel + du V86 quelque part. +* [http://www.sudleyplace.com/pmtorm.html Transition from Protected Mode to Real Mode] + +=== Affichage Graphique === +Voir l'article [[Affichage Graphique]]. + +* [http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif Table des caractères ascii] +* [http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/ SuperVGA/VESA programmer's notes] +* [http://en.wikipedia.org/wiki/VESA_BIOS_Extensions VESA BIOS Extensions] sur wikipedia +* [http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11 Tutorial on VGA Graphics] : VGA, souris, bitmap +* [http://osdev.berlios.de/v86.html Virtual 8086 Mode] : Utiliser le mode 8086 virtuel pour accéder aux fonctions VESA du BIOS +* [http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html VESA Video Modes] Comment obtenir la liste des modes disponibles et des informations les concernant. +* [http://www.student.cs.uwaterloo.ca/~cs452/grub/ patch vbe] pour que grub nous passe en mode graphique +* [http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c Utilisation de l'interface en mode protégé de VBE] + +==== Références VESA ==== + +* [http://docs.ruudkoot.nl/vesasp12.txt VESA BIOS Extension 1.2] +* [http://docs.ruudkoot.nl/vbe20.txt VESA BIOS Extension 2.0] +* [http://www.vesa.org/public/VBE/vbe3.pdf VESA BIOS Extension 3.0] + +=== Drivers === + +==== Souris ==== +* [http://wiki.osdev.org/Mouse_Input Mouse Input] : Comment configurer et écouter une souris PS/2 sur osdev.org + +==== Clavier ==== +* [http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver PS2 Keyboard] : driver sur osdev.org +* [http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html Keyboard scancodes] Quel code envoyé par le clavier correspond à quel caractère. + +== Portails == + +* [http://www.osdev.org/ osdev.org] : Wiki + Forum sur le développement d'OS +* [http://www.nondot.org/sabre/os/articles OSRC] : Operating System Ressource Center +* [http://www.osdever.net/ Bona Fide OS Development] + +== Tutoriels == + +* [http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS Pépin] : tuto du boot au shell, très complet. +* [http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html AAProg] : Pas beaucoup de code mais de très bonnes explications +* Tutoriels sur [http://www.osdever.net/tutorials.php?cat=0&sort=1 Bona Fide] + +== Petits systèmes d'exploitation == +Toujours pratique pour s'inspirer… + +* [http://wiki.osdev.org/Projects Liste de projets d'OS] sur osdev.org +* [http://www.dynatos.org/ dynatos] +* [http://gok.customer.netspace.net.au/resources/ UNIOS] +* [http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html funos] +* [http://www.ninj4.net/kinetic/ kinetic], écrit en haskell. Ça vaut le coup d'oeuil. + +== Divers == +* [http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html Sujet] sur le site du zéro, pas mal de liens</text> + </revision> + </page> + <page> + <title>Notes</title> + <id>24</id> + <revision> + <id>11738</id> + <timestamp>2011-06-21T11:27:13Z</timestamp> + <contributor> + <ip>193.239.192.194</ip> + </contributor> + <comment>Page créée avec « Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être re… »</comment> + <text xml:space="preserve">Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être redéclarés tant que la construction a un effet. C'est une alternative à la possibilité de rajouter des variables "par nom" pour qu'elles soient utilisées par ex. par le code d'une fonction.</text> + </revision> + </page> + <page> + <title>Nouveau Développeur</title> + <id>7</id> + <revision> + <id>29</id> + <timestamp>2009-02-02T00:31:55Z</timestamp> + <contributor> + <ip>90.9.192.151</ip> + </contributor> + <comment>Ajout de la sous partie S'inscrire</comment> + <text xml:space="preserve">== S'inscrire == +* Créez-vous un compte sur [http://tuxfamily.org/fr/subscribe TuxFmaily] et adhérez au projet gruntnetwork +* Créez-vous un compte sur le [http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur wiki] +* Créez-vous un compte sur le [http://tracker.gruntnetwork.com/index.php?do=register tracker] + +== À lire == +* [[Prérequis]] : Un peu de lecture pour les vacances. Si vous ne savez rien sur les sujets listés dans cette page, vous risquez d'être à la traîne. +* [[Conventions]] : À respecter, pour un code homogène. Si vous avez quoi que ce soit à redire dessus, faites-le vite, avant qu'on ait des centaines de lignes à reformater :) +* [[Environnement de programmation]] : Avec quoi on travaille (Emacs ou Vim + gcc + qemu ou bochs). +* [http://tracker.gruntnetwork.com/roadmap Feuille de route] : Qui fait quoi, Quand, dans Quel ordre. +* [[Liens]] : Quand vous ne saurez plus comment faire un truc en assembleur :)</text> + </revision> + </page> + <page> + <title>Prérequis</title> + <id>2</id> + <revision> + <id>33</id> + <timestamp>2009-02-08T17:15:49Z</timestamp> + <contributor> + <ip>78.115.6.242</ip> + </contributor> + <comment>/* Connaissance du C et de l'assembleur */</comment> + <text xml:space="preserve">'''Une chose à retenir''' : Si vous êtes largués, si vous ne comprenez pas, si vous piétinez sur un bout de code qui compile pas : n'attendez pas le déluge pour vous signaler ! +Il y aura toujours quelqu'un pour vous aider à comprendre ce qui vous pose problème. + +Certaines pages lisées ici sont en anglais : si vous avez du mal, envoyez-moi un message et je ferai une traduction. + +== Un peu de lecture == + +=== Conception D'OS (GNU/Linux Magazine) === + +Dans GNU/Linux Magazine France est paru il y a quelques années une série d'articles sur la conception de systèmes d'exploitation. Les articles expliquent, pas à pas, comment créer un système simple. Je recommande vivement à tout le monde d'avoir lu ces articles d'ici la mi-janvier, comme ça on saura tous de quoi on parle. + +[http://sos.enix.org/fr/SOSDownload Les articles] sont disponibles gratuitement sur internet. + +N°s des magazines : + +* 62 : Boot + Console +* 63 : Segmentation et Interruptions +* 65 : Pagination +* 68 : Multitâche et changement de contexte +* 69 : Threads +* 70 : Espaces d'adressage, appels système et applications utilisateur +* 72 : Gestion de l'espace virtuel utilisateur +* 74 : VFS (système de fichiers virtuel) + +Vu que ce dernier numéro contient la deuxième partie d'un article très intéressant sur la compression de données, vous voudrez peut-être la première partie : n° 73. +Le site [http://www.ed-diamond.com/ ed-diamond] vous permet de commander ces anciens numéros. Il propose un « PowerPack x10 » à 25€, donc ça fait un bon cadeau de noël pour pas trop cher :) + +=== a Simple Operating System === + +Un système d'exploitation simple : [http://minso.free.fr/cavinfo/systeme/sos.html sos] + +== Connaissance du C et de l'assembleur == + +==== Cours de C : ==== +* http://c.developpez.com/cours/ +* http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html +* http://c.developpez.com/faq/ + +==== Cours d'ASM pour plateforme x86 : ==== +* http://benoit-m.developpez.com/assembleur/tutoriel/ +* http://www.scribd.com/search?c=all&query=x86&commit=Search + +== Compréhension de la procédure de démarrage (Boot) == + +* [http://fr.wikipedia.org/wiki/Master_boot_record MBR] +* [http://www.pixelbeat.org/docs/disk/ GRUB] +* (Une des) [http://fr.wikipedia.org/wiki/Init procédure(s) d'initialisation] de GNU/Linux (Nous n'utiliserons probablement pas cette méthode, mais c'est bon à connaître). + + +Nous utiliserons Grub et le standard Multiboot plutôt que de programmer notre propre chargeur de démarrage, cependant les méchanismes du MBR et de GRUB sont à comprendre pour maîtriser la chose (et pour la soutenance orale...). + +== Interruptions du BIOS (pages de référence) == + +* [http://www.ctyme.com/intr/int.htm Liste des interruptions] et de comment on s'en sert +* Les interruptions int 10h et int 13h seront utilisées. +* [http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html int 10h] +* [http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html int 13h (VGA)] +* [http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT Modes VESA]</text> + </revision> + </page> + <page> + <title>Test fonctionC</title> + <id>6</id> + <revision> + <id>12</id> + <timestamp>2009-01-01T01:05:50Z</timestamp> + <contributor> + <ip>90.14.26.225</ip> + </contributor> + <comment>Nouvelle page : {{fonctionC |int|floor|float x |Renvoie l'arrondi à l'inférieur de x }}</comment> + <text xml:space="preserve">{{fonctionC +|int|floor|float x +|Renvoie l'arrondi à l'inférieur de x +}}</text> + </revision> + </page> + <page> + <title>Modèle:Dec param d</title> + <id>17</id> + <revision> + <id>52</id> + <timestamp>2009-02-11T13:34:50Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <text xml:space="preserve">d:{{{1}}} {{{2}}}</text> + </revision> + </page> + <page> + <title>Modèle:Dec param r</title> + <id>18</id> + <revision> + <id>53</id> + <timestamp>2009-02-11T13:35:32Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <text xml:space="preserve">r:{{{1}}} {{{2}}}</text> + </revision> + </page> + <page> + <title>Modèle:FonctionC</title> + <id>5</id> + <revision> + <id>15</id> + <timestamp>2009-01-01T01:08:08Z</timestamp> + <contributor> + <ip>90.14.26.225</ip> + </contributor> + <text xml:space="preserve">== {{{2}}} == + +<code> +{{{1}}} {{{2}}}({{{3}}}); +</code> + +=== Description === +{{{4}}}</text> + </revision> + </page> + <page> + <title>Modèle:Param d</title> + <id>14</id> + <revision> + <id>47</id> + <timestamp>2009-02-11T13:32:45Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <text xml:space="preserve">d:<code>{{{1}}}</code></text> + </revision> + </page> + <page> + <title>Modèle:Param r</title> + <id>15</id> + <revision> + <id>45</id> + <timestamp>2009-02-11T13:29:35Z</timestamp> + <contributor> + <ip>162.38.218.206</ip> + </contributor> + <comment>Nouvelle page : r:<code>{{{1}}}</code></comment> + <text xml:space="preserve">r:<code>{{{1}}}</code></text> + </revision> + </page> +</mediawiki> diff --git a/mwoffliner/cmd.sh b/mwoffliner/cmd.sh @@ -0,0 +1,11 @@ +npm i mwoffliner +mkdir offline +cd offline +../node_modules/.bin/mwoffliner \ + --mwUrl=http://localhost/ \ + --customMainPage=Accueil \ + --mwWikiPath='/mediawiki/index.php?' \ + --mwApiPath='/mediawiki/api.php' \ + --mwRestApiPath='/mediawiki/rest.php' \ + --mwModulePath='/mediawiki/load.php' \ + --adminEmail="$(printf Z3J1bnRuZXR3b3JrQHN1emFubmUuc295 | base64 -d)" diff --git a/mwoffliner/localhost_fr_all_2023-05.zim b/mwoffliner/localhost_fr_all_2023-05.zim Binary files differ. diff --git a/wget/http/wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_Développeur.html b/wget/http/wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_Développeur.html @@ -0,0 +1,160 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Spécial:Connexion,Administrateurs" /> + <link rel="shortcut icon" href="http://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="http://wiki.gruntnetwork.com/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="http://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="http://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Erreur de permissions</title> + <link rel="stylesheet" href="http://wiki.gruntnetwork.com/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="http://wiki.gruntnetwork.com/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="http://wiki.gruntnetwork.com/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="http://wiki.gruntnetwork.com/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="http://wiki.gruntnetwork.com/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="http://wiki.gruntnetwork.com/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="http://wiki.gruntnetwork.com/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "http://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="http://wiki.gruntnetwork.com/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="http://wiki.gruntnetwork.com/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="http://wiki.gruntnetwork.com/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Erreur de permissions</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Special:Connexion&type=signup&returnto=Nouveau_Développeur.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Special:Connexion&type=signup&returnto=Nouveau_Développeur.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à créer ce compte utilisateur, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="http://wiki.gruntnetwork.com/index.php5?title=Gruntnetwork:Administrateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Administrateurs (page inexistante)">Administrateurs</a>.</div> +<div class="printfooter"> +Récupérée de « <a href="http://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">http://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Special:Connexion&type=signup&returnto=Nouveau_Développeur.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="http://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="http://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="http://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="http://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(http://wiki.gruntnetwork.com/skins/common/images/wiki.png);" href="http://wiki.gruntnetwork.com/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="http://wiki.gruntnetwork.com/Accueil">Accueil</a></li> + <li id="n-portal"><a href="http://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="http://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="http://wiki.gruntnetwork.com/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="http://wiki.gruntnetwork.com/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="http://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="http://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="http://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="http://wiki.gruntnetwork.com/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="http://wiki.gruntnetwork.com/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="http://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="http://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="http://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.332 secs. --><!-- Debug output: +Original title: Spécial:Connexion + +--> +</body></html> diff --git a/wget/http/wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_Développeur.orig b/wget/http/wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_Développeur.orig @@ -0,0 +1,160 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Spécial:Connexion,Administrateurs" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Erreur de permissions</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "http://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Erreur de permissions</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à créer ce compte utilisateur, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="/index.php5?title=Gruntnetwork:Administrateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Administrateurs (page inexistante)">Administrateurs</a>.</div> +<div class="printfooter"> +Récupérée de « <a href="http://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">http://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.332 secs. --><!-- Debug output: +Original title: Spécial:Connexion + +--> +</body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Affichage_Graphique.html b/wget/https/wiki.gruntnetwork.com/Affichage_Graphique.html @@ -0,0 +1,171 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Affichage Graphique" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Affichage_Graphique&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Affichage Graphique - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Affichage_Graphique"; + var wgTitle = "Affichage Graphique"; + var wgAction = "view"; + var wgArticleId = "12"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 67; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Affichage_Graphique skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Affichage Graphique</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="Affichage_Graphique.html#column-one">Navigation</a>, <a href="Affichage_Graphique.html#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:12-0!1!0!!fr!2!edit=0 and timestamp 20230503181501 --> +<div class="printfooter"> +Récupérée de « <a href="Affichage_Graphique.html">https://wiki.gruntnetwork.com/Affichage_Graphique</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Affichage_Graphique.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Affichage_Graphique&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Affichage_Graphique&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Affichage_Graphique&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Affichage_Graphique.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Affichage_Graphique.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Affichage_Graphique.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Affichage_Graphique&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Affichage_Graphique&oldid=67.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 4 mars 2009 à 15:14.<br /></li> + <li id="viewcount">Cette page a été consultée 1 323 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.266 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Affichage_Graphique.orig b/wget/https/wiki.gruntnetwork.com/Affichage_Graphique.orig @@ -0,0 +1,171 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Affichage Graphique" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Affichage_Graphique&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Affichage Graphique - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Affichage_Graphique"; + var wgTitle = "Affichage Graphique"; + var wgAction = "view"; + var wgArticleId = "12"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 67; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Affichage_Graphique skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Affichage Graphique</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:12-0!1!0!!fr!2!edit=0 and timestamp 20230503181501 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Affichage_Graphique">https://wiki.gruntnetwork.com/Affichage_Graphique</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Affichage_Graphique" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Affichage_Graphique&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Affichage_Graphique&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Affichage_Graphique&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Affichage_Graphique" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Affichage_Graphique">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Affichage_Graphique" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Affichage_Graphique&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Affichage_Graphique&oldid=67" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 4 mars 2009 à 15:14.<br /></li> + <li id="viewcount">Cette page a été consultée 1 323 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.266 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Conventions.html b/wget/https/wiki.gruntnetwork.com/Conventions.html @@ -0,0 +1,200 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Conventions" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Conventions&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Conventions - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Conventions"; + var wgTitle = "Conventions"; + var wgAction = "view"; + var wgArticleId = "3"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 31; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Conventions skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Conventions</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="Conventions.html#column-one">Navigation</a>, <a href="Conventions.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Les conventions suivantes seront utilisées pour un code homogène. +</p> +<a name="En_C" id="En_C"></a><h2> <span class="mw-headline"> En C </span></h2> +<ul><li> L'indentation se fait à 4 espaces par tabulation. +</li><li> Pas de transformation des espaces en tabulation. +</li><li> <code>nomsDeVariables</code> +</li><li> <code>NOMS_DE_CONSTANTE</code> +</li><li> Fonctions : +</li></ul> +<p><code> +</p> +<pre>type_retour nom_fonction(type_param_1 param_1, ..., type_param_n param_n) { +code; +} +</pre> +<p></code> +</p> +<ul><li> Boucles for, avec déclaration locale à la boucle de l'itérateur s'il n'a pas lieu d'être à l'extérieur (int i=a) : +</li></ul> +<p><code> +</p> +<pre>for (int i=a; i<b; i++) { +code; +} +</pre> +<p></code> +</p> +<a name="En_assembleur" id="En_assembleur"></a><h2> <span class="mw-headline"> En assembleur </span></h2> +<p>On utilisera la syntaxe Gas, car elle est compatible avec le compilateur GCC +</p> +<!-- +NewPP limit report +Preprocessor node count: 3/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:3-0!1!0!!fr!2!edit=0 and timestamp 20230503142406 --> +<div class="printfooter"> +Récupérée de « <a href="Conventions.html">https://wiki.gruntnetwork.com/Conventions</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Conventions.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Conventions&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Conventions&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Conventions&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Conventions.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Conventions.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Conventions.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Conventions.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Conventions&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Conventions&oldid=31.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 8 février 2009 à 17:02.<br /></li> + <li id="viewcount">Cette page a été consultée 1 920 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.307 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Conventions.orig b/wget/https/wiki.gruntnetwork.com/Conventions.orig @@ -0,0 +1,200 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Conventions" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Conventions&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Conventions - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Conventions"; + var wgTitle = "Conventions"; + var wgAction = "view"; + var wgArticleId = "3"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 31; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Conventions skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Conventions</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Les conventions suivantes seront utilisées pour un code homogène. +</p> +<a name="En_C" id="En_C"></a><h2> <span class="mw-headline"> En C </span></h2> +<ul><li> L'indentation se fait à 4 espaces par tabulation. +</li><li> Pas de transformation des espaces en tabulation. +</li><li> <code>nomsDeVariables</code> +</li><li> <code>NOMS_DE_CONSTANTE</code> +</li><li> Fonctions : +</li></ul> +<p><code> +</p> +<pre>type_retour nom_fonction(type_param_1 param_1, ..., type_param_n param_n) { +code; +} +</pre> +<p></code> +</p> +<ul><li> Boucles for, avec déclaration locale à la boucle de l'itérateur s'il n'a pas lieu d'être à l'extérieur (int i=a) : +</li></ul> +<p><code> +</p> +<pre>for (int i=a; i<b; i++) { +code; +} +</pre> +<p></code> +</p> +<a name="En_assembleur" id="En_assembleur"></a><h2> <span class="mw-headline"> En assembleur </span></h2> +<p>On utilisera la syntaxe Gas, car elle est compatible avec le compilateur GCC +</p> +<!-- +NewPP limit report +Preprocessor node count: 3/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:3-0!1!0!!fr!2!edit=0 and timestamp 20230503142406 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Conventions">https://wiki.gruntnetwork.com/Conventions</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Conventions" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Conventions&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Conventions&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Conventions&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Conventions" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Conventions">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Conventions" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Conventions" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Conventions&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Conventions&oldid=31" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 8 février 2009 à 17:02.<br /></li> + <li id="viewcount">Cette page a été consultée 1 920 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.307 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Discussion:Accueil.html b/wget/https/wiki.gruntnetwork.com/Discussion:Accueil.html @@ -0,0 +1,172 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Discussion:Accueil" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="./index.php5%3Ftitle=Discussion:Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Discussion:Accueil - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = "22"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11736; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./Discussion:Accueil.html#column-one">Navigation</a>, <a href="./Discussion:Accueil.html#searchInput">rechercher</a></div> <!-- start content --> + <p>comment5 <a href="http://www.spanjeforum.nl/zakelijk/thread-247479.html" class="external free" title="http://www.spanjeforum.nl/zakelijk/thread-247479.html" rel="nofollow">http://www.spanjeforum.nl/zakelijk/thread-247479.html</a> order flovent cheap overnight +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:22-0!1!0!!fr!2!edit=0 and timestamp 20230503144109 --> +<div class="printfooter"> +Récupérée de « <a href="./Discussion:Accueil.html">https://wiki.gruntnetwork.com/Discussion:Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="index.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="./Discussion:Accueil.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="./index.php5%3Ftitle=Discussion:Accueil&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="./index.php5%3Ftitle=Discussion:Accueil&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Accueil.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Discussion:Accueil.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Discussion:Accueil.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="./index.php5%3Ftitle=Discussion:Accueil&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="./index.php5%3Ftitle=Discussion:Accueil&oldid=11736.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 19 juin 2011 à 07:17.<br /></li> + <li id="viewcount">Cette page a été consultée 148 155 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.343 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Discussion:Accueil.orig b/wget/https/wiki.gruntnetwork.com/Discussion:Accueil.orig @@ -0,0 +1,172 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Discussion:Accueil" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Discussion:Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Discussion:Accueil - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = "22"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11736; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>comment5 <a href="http://www.spanjeforum.nl/zakelijk/thread-247479.html" class="external free" title="http://www.spanjeforum.nl/zakelijk/thread-247479.html" rel="nofollow">http://www.spanjeforum.nl/zakelijk/thread-247479.html</a> order flovent cheap overnight +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:22-0!1!0!!fr!2!edit=0 and timestamp 20230503144109 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Discussion:Accueil">https://wiki.gruntnetwork.com/Discussion:Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="/Accueil" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="/Discussion:Accueil" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Discussion:Accueil&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Discussion:Accueil&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Accueil" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Accueil">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Discussion:Accueil" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Discussion:Accueil&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Discussion:Accueil&oldid=11736" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 19 juin 2011 à 07:17.<br /></li> + <li id="viewcount">Cette page a été consultée 148 155 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.343 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Discussion:Liens.html b/wget/https/wiki.gruntnetwork.com/Discussion:Liens.html @@ -0,0 +1,171 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Discussion:Liens" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="./index.php5%3Ftitle=Discussion:Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Discussion:Liens - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = "21"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 74; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./Discussion:Liens.html#column-one">Navigation</a>, <a href="./Discussion:Liens.html#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:21-0!1!0!!fr!2!edit=0 and timestamp 20230503144201 --> +<div class="printfooter"> +Récupérée de « <a href="./Discussion:Liens.html">https://wiki.gruntnetwork.com/Discussion:Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="Liens.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="./Discussion:Liens.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="./index.php5%3Ftitle=Discussion:Liens&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="./index.php5%3Ftitle=Discussion:Liens&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Liens.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Liens.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Discussion:Liens.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Discussion:Liens.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="./index.php5%3Ftitle=Discussion:Liens&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="./index.php5%3Ftitle=Discussion:Liens&oldid=74.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 31 décembre 2009 à 01:17.<br /></li> + <li id="viewcount">Cette page a été consultée 1 866 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.305 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Discussion:Liens.orig b/wget/https/wiki.gruntnetwork.com/Discussion:Liens.orig @@ -0,0 +1,171 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Discussion:Liens" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Discussion:Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Discussion:Liens - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = "21"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 74; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:21-0!1!0!!fr!2!edit=0 and timestamp 20230503144201 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Discussion:Liens">https://wiki.gruntnetwork.com/Discussion:Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="/Liens" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="/Discussion:Liens" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Discussion:Liens&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Discussion:Liens&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Discussion:Liens" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Discussion:Liens&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Discussion:Liens&oldid=74" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 31 décembre 2009 à 01:17.<br /></li> + <li id="viewcount">Cette page a été consultée 1 866 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.305 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Environnement_de_programmation.html b/wget/https/wiki.gruntnetwork.com/Environnement_de_programmation.html @@ -0,0 +1,202 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Environnement de programmation,GRUB" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Environnement_de_programmation&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Environnement de programmation - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Environnement_de_programmation"; + var wgTitle = "Environnement de programmation"; + var wgAction = "view"; + var wgArticleId = "8"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 27; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Environnement_de_programmation skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Environnement de programmation</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="Environnement_de_programmation.html#column-one">Navigation</a>, <a href="Environnement_de_programmation.html#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="Environnement_de_programmation.html#.C3.89diteur"><span class="tocnumber">1</span> <span class="toctext">Éditeur</span></a></li> +<li class="toclevel-1"><a href="Environnement_de_programmation.html#Gestion_des_versions"><span class="tocnumber">2</span> <span class="toctext">Gestion des versions</span></a></li> +<li class="toclevel-1"><a href="Environnement_de_programmation.html#Compilateur"><span class="tocnumber">3</span> <span class="toctext">Compilateur</span></a></li> +<li class="toclevel-1"><a href="Environnement_de_programmation.html#Tests"><span class="tocnumber">4</span> <span class="toctext">Tests</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name=".C3.89diteur" id=".C3.89diteur"></a><h2> <span class="mw-headline"> Éditeur </span></h2> +<p>Votre préféré :) Personne ne vous oblige à quoi que ce soit. Prévoyez-en un avec indentation et coloration syntaxique quand même, nano et cat sont un peu rudimentaires de ce point de vue… +</p> +<a name="Gestion_des_versions" id="Gestion_des_versions"></a><h2> <span class="mw-headline"> Gestion des versions </span></h2> +<p>SVN sera utilisé pour la gestion des versions. +</p><p><code> +</p> +<pre>svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme +svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications +</pre> +<p></code> +</p><p>Voir <a href="http://faq.tuxfamily.org/SVN/Fr" class="external text" title="http://faq.tuxfamily.org/SVN/Fr" rel="nofollow">la faq de TuxFamily</a> pour plus d'infos sur l'utilisation. +</p> +<a name="Compilateur" id="Compilateur"></a><h2> <span class="mw-headline"> Compilateur </span></h2> +<p>Pour le C : <b>gcc</b>. Car c'est le plus courant sous linux, car il gère directement l'assembleur (syntaxe gas), car beaucoup de monde l'utilise donc on trouvera facilement de la documentation, car il est sous licence libre. +</p><p>On utilisera la version 4.3, de préférence 4.3.2 (c'est celle par défaut sous ubuntu, et sous debian testing/unstable). Si vous avez une autre version, pas de problème, mais en cas de bug bizarre, il vaudra mieux vérifier que c'est bien le code qui plante et non pas une version bugguée de gcc (c'est arrivé par le passé…) +</p> +<a name="Tests" id="Tests"></a><h2> <span class="mw-headline"> Tests </span></h2> +<p><b>NE TESTEZ JAMAIS gruntnetwork SUR UN PC RÉEL</b>, à moins que vous n'ayez pas peur d'un effacement de disque. +Je possède moi-même un PC avec un vieux disque dur vide de quelques Go, ça pourra servir pour faire des tests grandeur nature lorsque le projet sera viable. +</p><p>Pour les tests nous utiliserons <a href="http://bellard.org/qemu/" class="external text" title="http://bellard.org/qemu/" rel="nofollow">qemu</a>, un émulateur de PC libre, fonctionnant sous linux et windows, probablement sous mac aussi. Seule l'architecture x86 sera supportée pour l'instant. +</p><p>Lorsque nous en viendrons à écrire les drivers, il sera possible d'utiliser bochs pour voir si les bons drivers sont chargés lorsque la configuration matérielle (l'ensemble du matériel disponible sur un PC) change. +</p><p>Le démarrage (boot) sera assuré par <a href="GRUB.html" title="GRUB">GRUB</a>, installé sur une image de disquette vierge (un fichier de 1.44 Mo simulant une disquette sur laquelle seront présents GRUB, gruntnetwork et rien d'autre). Cette configuration simple évitera que d'autres facteurs de causent des bugs. +</p> +<!-- +NewPP limit report +Preprocessor node count: 5/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:8-0!1!0!!fr!2!edit=0 and timestamp 20230503142347 --> +<div class="printfooter"> +Récupérée de « <a href="Environnement_de_programmation.html">https://wiki.gruntnetwork.com/Environnement_de_programmation</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Environnement_de_programmation.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Environnement_de_programmation&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Environnement_de_programmation&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Environnement_de_programmation&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Environnement_de_programmation.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Environnement_de_programmation.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Environnement_de_programmation.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Environnement_de_programmation&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Environnement_de_programmation&oldid=27.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 6 janvier 2009 à 11:51.<br /></li> + <li id="viewcount">Cette page a été consultée 1 688 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.272 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Environnement_de_programmation.orig b/wget/https/wiki.gruntnetwork.com/Environnement_de_programmation.orig @@ -0,0 +1,202 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Environnement de programmation,GRUB" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Environnement_de_programmation&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Environnement de programmation - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Environnement_de_programmation"; + var wgTitle = "Environnement de programmation"; + var wgAction = "view"; + var wgArticleId = "8"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 27; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Environnement_de_programmation skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Environnement de programmation</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#.C3.89diteur"><span class="tocnumber">1</span> <span class="toctext">Éditeur</span></a></li> +<li class="toclevel-1"><a href="#Gestion_des_versions"><span class="tocnumber">2</span> <span class="toctext">Gestion des versions</span></a></li> +<li class="toclevel-1"><a href="#Compilateur"><span class="tocnumber">3</span> <span class="toctext">Compilateur</span></a></li> +<li class="toclevel-1"><a href="#Tests"><span class="tocnumber">4</span> <span class="toctext">Tests</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name=".C3.89diteur" id=".C3.89diteur"></a><h2> <span class="mw-headline"> Éditeur </span></h2> +<p>Votre préféré :) Personne ne vous oblige à quoi que ce soit. Prévoyez-en un avec indentation et coloration syntaxique quand même, nano et cat sont un peu rudimentaires de ce point de vue… +</p> +<a name="Gestion_des_versions" id="Gestion_des_versions"></a><h2> <span class="mw-headline"> Gestion des versions </span></h2> +<p>SVN sera utilisé pour la gestion des versions. +</p><p><code> +</p> +<pre>svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme +svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications +</pre> +<p></code> +</p><p>Voir <a href="http://faq.tuxfamily.org/SVN/Fr" class="external text" title="http://faq.tuxfamily.org/SVN/Fr" rel="nofollow">la faq de TuxFamily</a> pour plus d'infos sur l'utilisation. +</p> +<a name="Compilateur" id="Compilateur"></a><h2> <span class="mw-headline"> Compilateur </span></h2> +<p>Pour le C : <b>gcc</b>. Car c'est le plus courant sous linux, car il gère directement l'assembleur (syntaxe gas), car beaucoup de monde l'utilise donc on trouvera facilement de la documentation, car il est sous licence libre. +</p><p>On utilisera la version 4.3, de préférence 4.3.2 (c'est celle par défaut sous ubuntu, et sous debian testing/unstable). Si vous avez une autre version, pas de problème, mais en cas de bug bizarre, il vaudra mieux vérifier que c'est bien le code qui plante et non pas une version bugguée de gcc (c'est arrivé par le passé…) +</p> +<a name="Tests" id="Tests"></a><h2> <span class="mw-headline"> Tests </span></h2> +<p><b>NE TESTEZ JAMAIS gruntnetwork SUR UN PC RÉEL</b>, à moins que vous n'ayez pas peur d'un effacement de disque. +Je possède moi-même un PC avec un vieux disque dur vide de quelques Go, ça pourra servir pour faire des tests grandeur nature lorsque le projet sera viable. +</p><p>Pour les tests nous utiliserons <a href="http://bellard.org/qemu/" class="external text" title="http://bellard.org/qemu/" rel="nofollow">qemu</a>, un émulateur de PC libre, fonctionnant sous linux et windows, probablement sous mac aussi. Seule l'architecture x86 sera supportée pour l'instant. +</p><p>Lorsque nous en viendrons à écrire les drivers, il sera possible d'utiliser bochs pour voir si les bons drivers sont chargés lorsque la configuration matérielle (l'ensemble du matériel disponible sur un PC) change. +</p><p>Le démarrage (boot) sera assuré par <a href="/GRUB" title="GRUB">GRUB</a>, installé sur une image de disquette vierge (un fichier de 1.44 Mo simulant une disquette sur laquelle seront présents GRUB, gruntnetwork et rien d'autre). Cette configuration simple évitera que d'autres facteurs de causent des bugs. +</p> +<!-- +NewPP limit report +Preprocessor node count: 5/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:8-0!1!0!!fr!2!edit=0 and timestamp 20230503142347 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Environnement_de_programmation">https://wiki.gruntnetwork.com/Environnement_de_programmation</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Environnement_de_programmation" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Environnement_de_programmation&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Environnement_de_programmation&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Environnement_de_programmation&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Environnement_de_programmation" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Environnement_de_programmation">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Environnement_de_programmation" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Environnement_de_programmation&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Environnement_de_programmation&oldid=27" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 6 janvier 2009 à 11:51.<br /></li> + <li id="viewcount">Cette page a été consultée 1 688 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.272 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/GRUB.html b/wget/https/wiki.gruntnetwork.com/GRUB.html @@ -0,0 +1,173 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="GRUB" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=GRUB&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>GRUB - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "GRUB"; + var wgTitle = "GRUB"; + var wgAction = "view"; + var wgArticleId = "11"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 28; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-GRUB skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">GRUB</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="GRUB.html#column-one">Navigation</a>, <a href="GRUB.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Grub est le chargeur de démarrage utilisé par gruntnetwork. +</p><p>Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est exécuté. Sa tâche consiste alors à afficher un menu à l'écran permettant à l'utilisateur de choisir le système d'exploitation qu'il souhaite démarrer. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:11-0!1!0!!fr!2!edit=0 and timestamp 20230503144154 --> +<div class="printfooter"> +Récupérée de « <a href="GRUB.html">https://wiki.gruntnetwork.com/GRUB</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="GRUB.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:GRUB&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=GRUB&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=GRUB&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=GRUB.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=GRUB.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/GRUB.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/GRUB.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=GRUB&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=GRUB&oldid=28.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 6 janvier 2009 à 11:53.<br /></li> + <li id="viewcount">Cette page a été consultée 1 431 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.276 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/GRUB.orig b/wget/https/wiki.gruntnetwork.com/GRUB.orig @@ -0,0 +1,173 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="GRUB" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=GRUB&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>GRUB - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "GRUB"; + var wgTitle = "GRUB"; + var wgAction = "view"; + var wgArticleId = "11"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 28; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-GRUB skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">GRUB</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Grub est le chargeur de démarrage utilisé par gruntnetwork. +</p><p>Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est exécuté. Sa tâche consiste alors à afficher un menu à l'écran permettant à l'utilisateur de choisir le système d'exploitation qu'il souhaite démarrer. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:11-0!1!0!!fr!2!edit=0 and timestamp 20230503144154 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/GRUB">https://wiki.gruntnetwork.com/GRUB</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/GRUB" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:GRUB&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=GRUB&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=GRUB&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=GRUB" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=GRUB">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/GRUB" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/GRUB" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=GRUB&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=GRUB&oldid=28" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 6 janvier 2009 à 11:53.<br /></li> + <li id="viewcount">Cette page a été consultée 1 431 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.276 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Liens.html b/wget/https/wiki.gruntnetwork.com/Liens.html @@ -0,0 +1,274 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Liens,Affichage Graphique" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Liens - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = "4"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 73; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="Liens.html#column-one">Navigation</a>, <a href="Liens.html#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="Liens.html#Notions"><span class="tocnumber">1</span> <span class="toctext">Notions</span></a> +<ul> +<li class="toclevel-2"><a href="Liens.html#Assembleur"><span class="tocnumber">1.1</span> <span class="toctext">Assembleur</span></a></li> +<li class="toclevel-2"><a href="Liens.html#D.C3.A9marrage_.28boot.29"><span class="tocnumber">1.2</span> <span class="toctext">Démarrage (boot)</span></a></li> +<li class="toclevel-2"><a href="Liens.html#Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"><span class="tocnumber">1.3</span> <span class="toctext">Modes du processeur (réel, protégé, ...)</span></a></li> +<li class="toclevel-2"><a href="Liens.html#Affichage_Graphique"><span class="tocnumber">1.4</span> <span class="toctext">Affichage Graphique</span></a> +<ul> +<li class="toclevel-3"><a href="Liens.html#R.C3.A9f.C3.A9rences_VESA"><span class="tocnumber">1.4.1</span> <span class="toctext">Références VESA</span></a></li> +</ul> +</li> +<li class="toclevel-2"><a href="Liens.html#Drivers"><span class="tocnumber">1.5</span> <span class="toctext">Drivers</span></a> +<ul> +<li class="toclevel-3"><a href="Liens.html#Souris"><span class="tocnumber">1.5.1</span> <span class="toctext">Souris</span></a></li> +<li class="toclevel-3"><a href="Liens.html#Clavier"><span class="tocnumber">1.5.2</span> <span class="toctext">Clavier</span></a></li> +</ul> +</li> +</ul> +</li> +<li class="toclevel-1"><a href="Liens.html#Portails"><span class="tocnumber">2</span> <span class="toctext">Portails</span></a></li> +<li class="toclevel-1"><a href="Liens.html#Tutoriels"><span class="tocnumber">3</span> <span class="toctext">Tutoriels</span></a></li> +<li class="toclevel-1"><a href="Liens.html#Petits_syst.C3.A8mes_d.27exploitation"><span class="tocnumber">4</span> <span class="toctext">Petits systèmes d'exploitation</span></a></li> +<li class="toclevel-1"><a href="Liens.html#Divers"><span class="tocnumber">5</span> <span class="toctext">Divers</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Notions" id="Notions"></a><h2> <span class="mw-headline"> Notions </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" class="external text" title="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" rel="nofollow">BIOS</a> pour ceux qui ne savent pas ce que c'est +</li></ul> +<a name="Assembleur" id="Assembleur"></a><h3> <span class="mw-headline"> Assembleur </span></h3> +<ul><li> <a href="http://mark.masmcode.com/" class="external text" title="http://mark.masmcode.com/" rel="nofollow">Optimisation</a> +</li><li> <a href="http://www.asmcommunity.net/" class="external text" title="http://www.asmcommunity.net/" rel="nofollow">asmcommunity.net</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">Hacks SVGA</a> +</li><li> <a href="http://www.x86-guide.com/" class="external text" title="http://www.x86-guide.com/" rel="nofollow">Guide pour l'assembleur X86</a> +</li><li> <a href="http://asm.sourceforge.net/" class="external text" title="http://asm.sourceforge.net/" rel="nofollow">asm.sourceforge.net</a> +</li><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Interruptions du BIOS</a> +</li><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" rel="nofollow">Encore les interruptions</a> +</li><li> <a href="http://www.penguin.cz/~literakl/intel/intel.html" class="external text" title="http://www.penguin.cz/~literakl/intel/intel.html" rel="nofollow">80x86 instruction set</a> +</li></ul> +<a name="D.C3.A9marrage_.28boot.29" id="D.C3.A9marrage_.28boot.29"></a><h3> <span class="mw-headline"> Démarrage (boot) </span></h3> +<ul><li> <a href="http://susam.in/articles/boot-sector-code/" class="external text" title="http://susam.in/articles/boot-sector-code/" rel="nofollow">Secteur de boot</a> +</li><li> <a href="http://www.osdcom.info/content/view/33/39/" class="external text" title="http://www.osdcom.info/content/view/33/39/" rel="nofollow">Après GRUB (multiboot)</a> +</li><li> Premier boot de la première version de linux : <a href="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" rel="nofollow">[1]</a> et <a href="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" rel="nofollow">[2]</a> +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" rel="nofollow">Chargeurs de démarrage</a> sur le wiki X86_Assembly +</li><li> <a href="http://www.vnutz.com/content/program_a_bootstrap_loader" class="external text" title="http://www.vnutz.com/content/program_a_bootstrap_loader" rel="nofollow">Programmer un chargeur de démarrage</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">Organisation du disque dur</a> (secteur de boot et fichiers de grub) +</li><li> <a href="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" class="external text" title="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" rel="nofollow">Multiboot Specification</a> +</li><li> <a href="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" class="external text" title="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" rel="nofollow">Grub-0.97.tar.gz</a> (Téléchargement des sources) +</li></ul> +<a name="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29" id="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"></a><h3> <span class="mw-headline"> Modes du processeur (réel, protégé, ...) </span></h3> +<ul><li> <a href="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" class="external text" title="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" rel="nofollow">Protected Mode Basics</a> : Les bases, y entrer, en sortir <b>sur le processeur 80286</b> (donc pas pour nous) +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" rel="nofollow">X86 Assembly/Protected Mode</a> +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : du réel dans du protégé +</li><li> <a href="http://benoit.papillault.free.fr/c/l32/pm.asm" class="external text" title="http://benoit.papillault.free.fr/c/l32/pm.asm" rel="nofollow">pm.asm</a> : passage en mode protégé puis retour en mode réel + du V86 quelque part. +</li><li> <a href="http://www.sudleyplace.com/pmtorm.html" class="external text" title="http://www.sudleyplace.com/pmtorm.html" rel="nofollow">Transition from Protected Mode to Real Mode</a> +</li></ul> +<a name="Affichage_Graphique" id="Affichage_Graphique"></a><h3> <span class="mw-headline"> Affichage Graphique </span></h3> +<p>Voir l'article <a href="Affichage_Graphique.html" title="Affichage Graphique">Affichage Graphique</a>. +</p> +<ul><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" rel="nofollow">Table des caractères ascii</a> +</li><li> <a href="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" class="external text" title="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" rel="nofollow">SuperVGA/VESA programmer's notes</a> +</li><li> <a href="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" class="external text" title="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" rel="nofollow">VESA BIOS Extensions</a> sur wikipedia +</li><li> <a href="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" class="external text" title="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" rel="nofollow">Tutorial on VGA Graphics</a> : VGA, souris, bitmap +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : Utiliser le mode 8086 virtuel pour accéder aux fonctions VESA du BIOS +</li><li> <a href="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" class="external text" title="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" rel="nofollow">VESA Video Modes</a> Comment obtenir la liste des modes disponibles et des informations les concernant. +</li><li> <a href="http://www.student.cs.uwaterloo.ca/~cs452/grub/" class="external text" title="http://www.student.cs.uwaterloo.ca/~cs452/grub/" rel="nofollow">patch vbe</a> pour que grub nous passe en mode graphique +</li><li> <a href="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" class="external text" title="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" rel="nofollow">Utilisation de l'interface en mode protégé de VBE</a> +</li></ul> +<a name="R.C3.A9f.C3.A9rences_VESA" id="R.C3.A9f.C3.A9rences_VESA"></a><h4> <span class="mw-headline"> Références VESA </span></h4> +<ul><li> <a href="http://docs.ruudkoot.nl/vesasp12.txt" class="external text" title="http://docs.ruudkoot.nl/vesasp12.txt" rel="nofollow">VESA BIOS Extension 1.2</a> +</li><li> <a href="http://docs.ruudkoot.nl/vbe20.txt" class="external text" title="http://docs.ruudkoot.nl/vbe20.txt" rel="nofollow">VESA BIOS Extension 2.0</a> +</li><li> <a href="http://www.vesa.org/public/VBE/vbe3.pdf" class="external text" title="http://www.vesa.org/public/VBE/vbe3.pdf" rel="nofollow">VESA BIOS Extension 3.0</a> +</li></ul> +<a name="Drivers" id="Drivers"></a><h3> <span class="mw-headline"> Drivers </span></h3> +<a name="Souris" id="Souris"></a><h4> <span class="mw-headline"> Souris </span></h4> +<ul><li> <a href="http://wiki.osdev.org/Mouse_Input" class="external text" title="http://wiki.osdev.org/Mouse_Input" rel="nofollow">Mouse Input</a> : Comment configurer et écouter une souris PS/2 sur osdev.org +</li></ul> +<a name="Clavier" id="Clavier"></a><h4> <span class="mw-headline"> Clavier </span></h4> +<ul><li> <a href="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" class="external text" title="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" rel="nofollow">PS2 Keyboard</a> : driver sur osdev.org +</li><li> <a href="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" class="external text" title="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" rel="nofollow">Keyboard scancodes</a> Quel code envoyé par le clavier correspond à quel caractère. +</li></ul> +<a name="Portails" id="Portails"></a><h2> <span class="mw-headline"> Portails </span></h2> +<ul><li> <a href="http://www.osdev.org/" class="external text" title="http://www.osdev.org/" rel="nofollow">osdev.org</a> : Wiki + Forum sur le développement d'OS +</li><li> <a href="http://www.nondot.org/sabre/os/articles" class="external text" title="http://www.nondot.org/sabre/os/articles" rel="nofollow">OSRC</a> : Operating System Ressource Center +</li><li> <a href="http://www.osdever.net/" class="external text" title="http://www.osdever.net/" rel="nofollow">Bona Fide OS Development</a> +</li></ul> +<a name="Tutoriels" id="Tutoriels"></a><h2> <span class="mw-headline"> Tutoriels </span></h2> +<ul><li> <a href="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" class="external text" title="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" rel="nofollow">Pépin</a> : tuto du boot au shell, très complet. +</li><li> <a href="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" class="external text" title="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" rel="nofollow">AAProg</a> : Pas beaucoup de code mais de très bonnes explications +</li><li> Tutoriels sur <a href="http://www.osdever.net/tutorials.php?cat=0&sort=1" class="external text" title="http://www.osdever.net/tutorials.php?cat=0&sort=1" rel="nofollow">Bona Fide</a> +</li></ul> +<a name="Petits_syst.C3.A8mes_d.27exploitation" id="Petits_syst.C3.A8mes_d.27exploitation"></a><h2> <span class="mw-headline"> Petits systèmes d'exploitation </span></h2> +<p>Toujours pratique pour s'inspirer… +</p> +<ul><li> <a href="http://wiki.osdev.org/Projects" class="external text" title="http://wiki.osdev.org/Projects" rel="nofollow">Liste de projets d'OS</a> sur osdev.org +</li><li> <a href="http://www.dynatos.org/" class="external text" title="http://www.dynatos.org/" rel="nofollow">dynatos</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">UNIOS</a> +</li><li> <a href="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" class="external text" title="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" rel="nofollow">funos</a> +</li><li> <a href="http://www.ninj4.net/kinetic/" class="external text" title="http://www.ninj4.net/kinetic/" rel="nofollow">kinetic</a>, écrit en haskell. Ça vaut le coup d'oeuil. +</li></ul> +<a name="Divers" id="Divers"></a><h2> <span class="mw-headline"> Divers </span></h2> +<ul><li> <a href="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" class="external text" title="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" rel="nofollow">Sujet</a> sur le site du zéro, pas mal de liens +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 14/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:4-0!1!0!!fr!2!edit=0 and timestamp 20230503142447 --> +<div class="printfooter"> +Récupérée de « <a href="Liens.html">https://wiki.gruntnetwork.com/Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Liens.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="./Discussion:Liens.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Liens&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Liens&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Liens.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Liens.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Liens.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Liens.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Liens&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Liens&oldid=73.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 31 décembre 2009 à 01:15.<br /></li> + <li id="viewcount">Cette page a été consultée 3 582 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.358 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Liens.orig b/wget/https/wiki.gruntnetwork.com/Liens.orig @@ -0,0 +1,274 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Liens,Affichage Graphique" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Liens - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = "4"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 73; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#Notions"><span class="tocnumber">1</span> <span class="toctext">Notions</span></a> +<ul> +<li class="toclevel-2"><a href="#Assembleur"><span class="tocnumber">1.1</span> <span class="toctext">Assembleur</span></a></li> +<li class="toclevel-2"><a href="#D.C3.A9marrage_.28boot.29"><span class="tocnumber">1.2</span> <span class="toctext">Démarrage (boot)</span></a></li> +<li class="toclevel-2"><a href="#Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"><span class="tocnumber">1.3</span> <span class="toctext">Modes du processeur (réel, protégé, ...)</span></a></li> +<li class="toclevel-2"><a href="#Affichage_Graphique"><span class="tocnumber">1.4</span> <span class="toctext">Affichage Graphique</span></a> +<ul> +<li class="toclevel-3"><a href="#R.C3.A9f.C3.A9rences_VESA"><span class="tocnumber">1.4.1</span> <span class="toctext">Références VESA</span></a></li> +</ul> +</li> +<li class="toclevel-2"><a href="#Drivers"><span class="tocnumber">1.5</span> <span class="toctext">Drivers</span></a> +<ul> +<li class="toclevel-3"><a href="#Souris"><span class="tocnumber">1.5.1</span> <span class="toctext">Souris</span></a></li> +<li class="toclevel-3"><a href="#Clavier"><span class="tocnumber">1.5.2</span> <span class="toctext">Clavier</span></a></li> +</ul> +</li> +</ul> +</li> +<li class="toclevel-1"><a href="#Portails"><span class="tocnumber">2</span> <span class="toctext">Portails</span></a></li> +<li class="toclevel-1"><a href="#Tutoriels"><span class="tocnumber">3</span> <span class="toctext">Tutoriels</span></a></li> +<li class="toclevel-1"><a href="#Petits_syst.C3.A8mes_d.27exploitation"><span class="tocnumber">4</span> <span class="toctext">Petits systèmes d'exploitation</span></a></li> +<li class="toclevel-1"><a href="#Divers"><span class="tocnumber">5</span> <span class="toctext">Divers</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Notions" id="Notions"></a><h2> <span class="mw-headline"> Notions </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" class="external text" title="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" rel="nofollow">BIOS</a> pour ceux qui ne savent pas ce que c'est +</li></ul> +<a name="Assembleur" id="Assembleur"></a><h3> <span class="mw-headline"> Assembleur </span></h3> +<ul><li> <a href="http://mark.masmcode.com/" class="external text" title="http://mark.masmcode.com/" rel="nofollow">Optimisation</a> +</li><li> <a href="http://www.asmcommunity.net/" class="external text" title="http://www.asmcommunity.net/" rel="nofollow">asmcommunity.net</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">Hacks SVGA</a> +</li><li> <a href="http://www.x86-guide.com/" class="external text" title="http://www.x86-guide.com/" rel="nofollow">Guide pour l'assembleur X86</a> +</li><li> <a href="http://asm.sourceforge.net/" class="external text" title="http://asm.sourceforge.net/" rel="nofollow">asm.sourceforge.net</a> +</li><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Interruptions du BIOS</a> +</li><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" rel="nofollow">Encore les interruptions</a> +</li><li> <a href="http://www.penguin.cz/~literakl/intel/intel.html" class="external text" title="http://www.penguin.cz/~literakl/intel/intel.html" rel="nofollow">80x86 instruction set</a> +</li></ul> +<a name="D.C3.A9marrage_.28boot.29" id="D.C3.A9marrage_.28boot.29"></a><h3> <span class="mw-headline"> Démarrage (boot) </span></h3> +<ul><li> <a href="http://susam.in/articles/boot-sector-code/" class="external text" title="http://susam.in/articles/boot-sector-code/" rel="nofollow">Secteur de boot</a> +</li><li> <a href="http://www.osdcom.info/content/view/33/39/" class="external text" title="http://www.osdcom.info/content/view/33/39/" rel="nofollow">Après GRUB (multiboot)</a> +</li><li> Premier boot de la première version de linux : <a href="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" rel="nofollow">[1]</a> et <a href="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" rel="nofollow">[2]</a> +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" rel="nofollow">Chargeurs de démarrage</a> sur le wiki X86_Assembly +</li><li> <a href="http://www.vnutz.com/content/program_a_bootstrap_loader" class="external text" title="http://www.vnutz.com/content/program_a_bootstrap_loader" rel="nofollow">Programmer un chargeur de démarrage</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">Organisation du disque dur</a> (secteur de boot et fichiers de grub) +</li><li> <a href="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" class="external text" title="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" rel="nofollow">Multiboot Specification</a> +</li><li> <a href="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" class="external text" title="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" rel="nofollow">Grub-0.97.tar.gz</a> (Téléchargement des sources) +</li></ul> +<a name="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29" id="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"></a><h3> <span class="mw-headline"> Modes du processeur (réel, protégé, ...) </span></h3> +<ul><li> <a href="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" class="external text" title="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" rel="nofollow">Protected Mode Basics</a> : Les bases, y entrer, en sortir <b>sur le processeur 80286</b> (donc pas pour nous) +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" rel="nofollow">X86 Assembly/Protected Mode</a> +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : du réel dans du protégé +</li><li> <a href="http://benoit.papillault.free.fr/c/l32/pm.asm" class="external text" title="http://benoit.papillault.free.fr/c/l32/pm.asm" rel="nofollow">pm.asm</a> : passage en mode protégé puis retour en mode réel + du V86 quelque part. +</li><li> <a href="http://www.sudleyplace.com/pmtorm.html" class="external text" title="http://www.sudleyplace.com/pmtorm.html" rel="nofollow">Transition from Protected Mode to Real Mode</a> +</li></ul> +<a name="Affichage_Graphique" id="Affichage_Graphique"></a><h3> <span class="mw-headline"> Affichage Graphique </span></h3> +<p>Voir l'article <a href="/Affichage_Graphique" title="Affichage Graphique">Affichage Graphique</a>. +</p> +<ul><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" rel="nofollow">Table des caractères ascii</a> +</li><li> <a href="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" class="external text" title="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" rel="nofollow">SuperVGA/VESA programmer's notes</a> +</li><li> <a href="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" class="external text" title="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" rel="nofollow">VESA BIOS Extensions</a> sur wikipedia +</li><li> <a href="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" class="external text" title="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" rel="nofollow">Tutorial on VGA Graphics</a> : VGA, souris, bitmap +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : Utiliser le mode 8086 virtuel pour accéder aux fonctions VESA du BIOS +</li><li> <a href="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" class="external text" title="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" rel="nofollow">VESA Video Modes</a> Comment obtenir la liste des modes disponibles et des informations les concernant. +</li><li> <a href="http://www.student.cs.uwaterloo.ca/~cs452/grub/" class="external text" title="http://www.student.cs.uwaterloo.ca/~cs452/grub/" rel="nofollow">patch vbe</a> pour que grub nous passe en mode graphique +</li><li> <a href="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" class="external text" title="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" rel="nofollow">Utilisation de l'interface en mode protégé de VBE</a> +</li></ul> +<a name="R.C3.A9f.C3.A9rences_VESA" id="R.C3.A9f.C3.A9rences_VESA"></a><h4> <span class="mw-headline"> Références VESA </span></h4> +<ul><li> <a href="http://docs.ruudkoot.nl/vesasp12.txt" class="external text" title="http://docs.ruudkoot.nl/vesasp12.txt" rel="nofollow">VESA BIOS Extension 1.2</a> +</li><li> <a href="http://docs.ruudkoot.nl/vbe20.txt" class="external text" title="http://docs.ruudkoot.nl/vbe20.txt" rel="nofollow">VESA BIOS Extension 2.0</a> +</li><li> <a href="http://www.vesa.org/public/VBE/vbe3.pdf" class="external text" title="http://www.vesa.org/public/VBE/vbe3.pdf" rel="nofollow">VESA BIOS Extension 3.0</a> +</li></ul> +<a name="Drivers" id="Drivers"></a><h3> <span class="mw-headline"> Drivers </span></h3> +<a name="Souris" id="Souris"></a><h4> <span class="mw-headline"> Souris </span></h4> +<ul><li> <a href="http://wiki.osdev.org/Mouse_Input" class="external text" title="http://wiki.osdev.org/Mouse_Input" rel="nofollow">Mouse Input</a> : Comment configurer et écouter une souris PS/2 sur osdev.org +</li></ul> +<a name="Clavier" id="Clavier"></a><h4> <span class="mw-headline"> Clavier </span></h4> +<ul><li> <a href="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" class="external text" title="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" rel="nofollow">PS2 Keyboard</a> : driver sur osdev.org +</li><li> <a href="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" class="external text" title="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" rel="nofollow">Keyboard scancodes</a> Quel code envoyé par le clavier correspond à quel caractère. +</li></ul> +<a name="Portails" id="Portails"></a><h2> <span class="mw-headline"> Portails </span></h2> +<ul><li> <a href="http://www.osdev.org/" class="external text" title="http://www.osdev.org/" rel="nofollow">osdev.org</a> : Wiki + Forum sur le développement d'OS +</li><li> <a href="http://www.nondot.org/sabre/os/articles" class="external text" title="http://www.nondot.org/sabre/os/articles" rel="nofollow">OSRC</a> : Operating System Ressource Center +</li><li> <a href="http://www.osdever.net/" class="external text" title="http://www.osdever.net/" rel="nofollow">Bona Fide OS Development</a> +</li></ul> +<a name="Tutoriels" id="Tutoriels"></a><h2> <span class="mw-headline"> Tutoriels </span></h2> +<ul><li> <a href="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" class="external text" title="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" rel="nofollow">Pépin</a> : tuto du boot au shell, très complet. +</li><li> <a href="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" class="external text" title="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" rel="nofollow">AAProg</a> : Pas beaucoup de code mais de très bonnes explications +</li><li> Tutoriels sur <a href="http://www.osdever.net/tutorials.php?cat=0&sort=1" class="external text" title="http://www.osdever.net/tutorials.php?cat=0&sort=1" rel="nofollow">Bona Fide</a> +</li></ul> +<a name="Petits_syst.C3.A8mes_d.27exploitation" id="Petits_syst.C3.A8mes_d.27exploitation"></a><h2> <span class="mw-headline"> Petits systèmes d'exploitation </span></h2> +<p>Toujours pratique pour s'inspirer… +</p> +<ul><li> <a href="http://wiki.osdev.org/Projects" class="external text" title="http://wiki.osdev.org/Projects" rel="nofollow">Liste de projets d'OS</a> sur osdev.org +</li><li> <a href="http://www.dynatos.org/" class="external text" title="http://www.dynatos.org/" rel="nofollow">dynatos</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">UNIOS</a> +</li><li> <a href="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" class="external text" title="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" rel="nofollow">funos</a> +</li><li> <a href="http://www.ninj4.net/kinetic/" class="external text" title="http://www.ninj4.net/kinetic/" rel="nofollow">kinetic</a>, écrit en haskell. Ça vaut le coup d'oeuil. +</li></ul> +<a name="Divers" id="Divers"></a><h2> <span class="mw-headline"> Divers </span></h2> +<ul><li> <a href="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" class="external text" title="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" rel="nofollow">Sujet</a> sur le site du zéro, pas mal de liens +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 14/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:4-0!1!0!!fr!2!edit=0 and timestamp 20230503142447 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Liens">https://wiki.gruntnetwork.com/Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Liens" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="/Discussion:Liens" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Liens&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Liens&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Liens" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Liens" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Liens&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Liens&oldid=73" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 31 décembre 2009 à 01:15.<br /></li> + <li id="viewcount">Cette page a été consultée 3 582 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.358 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Notes.html b/wget/https/wiki.gruntnetwork.com/Notes.html @@ -0,0 +1,172 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Notes" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Notes&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Notes - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Notes"; + var wgTitle = "Notes"; + var wgAction = "view"; + var wgArticleId = "24"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11738; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Notes skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Notes</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="Notes.html#column-one">Navigation</a>, <a href="Notes.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être redéclarés tant que la construction a un effet. C'est une alternative à la possibilité de rajouter des variables "par nom" pour qu'elles soient utilisées par ex. par le code d'une fonction. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:24-0!1!0!!fr!2!edit=0 and timestamp 20230503142900 --> +<div class="printfooter"> +Récupérée de « <a href="Notes.html">https://wiki.gruntnetwork.com/Notes</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Notes.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Notes&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Notes&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Notes&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Notes.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Notes.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Notes.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Notes.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Notes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Notes&oldid=11738.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 21 juin 2011 à 11:27.<br /></li> + <li id="viewcount">Cette page a été consultée 1 473 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.300 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Notes.orig b/wget/https/wiki.gruntnetwork.com/Notes.orig @@ -0,0 +1,172 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Notes" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Notes&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Notes - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Notes"; + var wgTitle = "Notes"; + var wgAction = "view"; + var wgArticleId = "24"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11738; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Notes skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Notes</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être redéclarés tant que la construction a un effet. C'est une alternative à la possibilité de rajouter des variables "par nom" pour qu'elles soient utilisées par ex. par le code d'une fonction. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:24-0!1!0!!fr!2!edit=0 and timestamp 20230503142900 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Notes">https://wiki.gruntnetwork.com/Notes</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Notes" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Notes&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Notes&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Notes&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Notes" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Notes">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Notes" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Notes" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Notes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Notes&oldid=11738" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 21 juin 2011 à 11:27.<br /></li> + <li id="viewcount">Cette page a été consultée 1 473 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.300 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Prérequis.html b/wget/https/wiki.gruntnetwork.com/Prérequis.html @@ -0,0 +1,239 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Prérequis" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Prérequis&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Prérequis - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Prérequis"; + var wgTitle = "Prérequis"; + var wgAction = "view"; + var wgArticleId = "2"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 33; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Prérequis skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Prérequis</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./Spécial:Page_au_hasard.html#column-one">Navigation</a>, <a href="./Spécial:Page_au_hasard.html#searchInput">rechercher</a></div> <!-- start content --> + <p><b>Une chose à retenir</b> : Si vous êtes largués, si vous ne comprenez pas, si vous piétinez sur un bout de code qui compile pas : n'attendez pas le déluge pour vous signaler ! +Il y aura toujours quelqu'un pour vous aider à comprendre ce qui vous pose problème. +</p><p>Certaines pages lisées ici sont en anglais : si vous avez du mal, envoyez-moi un message et je ferai une traduction. +</p> +<table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="./Spécial:Page_au_hasard.html#Un_peu_de_lecture"><span class="tocnumber">1</span> <span class="toctext">Un peu de lecture</span></a> +<ul> +<li class="toclevel-2"><a href="./Spécial:Page_au_hasard.html#Conception_D.27OS_.28GNU.2FLinux_Magazine.29"><span class="tocnumber">1.1</span> <span class="toctext">Conception D'OS (GNU/Linux Magazine)</span></a></li> +<li class="toclevel-2"><a href="./Spécial:Page_au_hasard.html#a_Simple_Operating_System"><span class="tocnumber">1.2</span> <span class="toctext">a Simple Operating System</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="./Spécial:Page_au_hasard.html#Connaissance_du_C_et_de_l.27assembleur"><span class="tocnumber">2</span> <span class="toctext">Connaissance du C et de l'assembleur</span></a> +<ul> +<li class="toclevel-2"><a href="./Spécial:Page_au_hasard.html#Cours_de_C_:"><span class="tocnumber">2.1</span> <span class="toctext">Cours de C :</span></a></li> +<li class="toclevel-2"><a href="./Spécial:Page_au_hasard.html#Cours_d.27ASM_pour_plateforme_x86_:"><span class="tocnumber">2.2</span> <span class="toctext">Cours d'ASM pour plateforme x86 :</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="./Spécial:Page_au_hasard.html#Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"><span class="tocnumber">3</span> <span class="toctext">Compréhension de la procédure de démarrage (Boot)</span></a></li> +<li class="toclevel-1"><a href="./Spécial:Page_au_hasard.html#Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"><span class="tocnumber">4</span> <span class="toctext">Interruptions du BIOS (pages de référence)</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Un_peu_de_lecture" id="Un_peu_de_lecture"></a><h2> <span class="mw-headline"> Un peu de lecture </span></h2> +<a name="Conception_D.27OS_.28GNU.2FLinux_Magazine.29" id="Conception_D.27OS_.28GNU.2FLinux_Magazine.29"></a><h3> <span class="mw-headline"> Conception D'OS (GNU/Linux Magazine) </span></h3> +<p>Dans GNU/Linux Magazine France est paru il y a quelques années une série d'articles sur la conception de systèmes d'exploitation. Les articles expliquent, pas à pas, comment créer un système simple. Je recommande vivement à tout le monde d'avoir lu ces articles d'ici la mi-janvier, comme ça on saura tous de quoi on parle. +</p><p><a href="http://sos.enix.org/fr/SOSDownload" class="external text" title="http://sos.enix.org/fr/SOSDownload" rel="nofollow">Les articles</a> sont disponibles gratuitement sur internet. +</p><p>N°s des magazines : +</p> +<ul><li> 62 : Boot + Console +</li><li> 63 : Segmentation et Interruptions +</li><li> 65 : Pagination +</li><li> 68 : Multitâche et changement de contexte +</li><li> 69 : Threads +</li><li> 70 : Espaces d'adressage, appels système et applications utilisateur +</li><li> 72 : Gestion de l'espace virtuel utilisateur +</li><li> 74 : VFS (système de fichiers virtuel) +</li></ul> +<p>Vu que ce dernier numéro contient la deuxième partie d'un article très intéressant sur la compression de données, vous voudrez peut-être la première partie : n° 73. +Le site <a href="http://www.ed-diamond.com/" class="external text" title="http://www.ed-diamond.com/" rel="nofollow">ed-diamond</a> vous permet de commander ces anciens numéros. Il propose un « PowerPack x10 » à 25€, donc ça fait un bon cadeau de noël pour pas trop cher :) +</p> +<a name="a_Simple_Operating_System" id="a_Simple_Operating_System"></a><h3> <span class="mw-headline"> a Simple Operating System </span></h3> +<p>Un système d'exploitation simple : <a href="http://minso.free.fr/cavinfo/systeme/sos.html" class="external text" title="http://minso.free.fr/cavinfo/systeme/sos.html" rel="nofollow">sos</a> +</p> +<a name="Connaissance_du_C_et_de_l.27assembleur" id="Connaissance_du_C_et_de_l.27assembleur"></a><h2> <span class="mw-headline"> Connaissance du C et de l'assembleur </span></h2> +<a name="Cours_de_C_:" id="Cours_de_C_:"></a><h4> <span class="mw-headline"> Cours de C : </span></h4> +<ul><li> <a href="http://c.developpez.com/cours/" class="external free" title="http://c.developpez.com/cours/" rel="nofollow">http://c.developpez.com/cours/</a> +</li><li> <a href="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" class="external free" title="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" rel="nofollow">http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html</a> +</li><li> <a href="http://c.developpez.com/faq/" class="external free" title="http://c.developpez.com/faq/" rel="nofollow">http://c.developpez.com/faq/</a> +</li></ul> +<a name="Cours_d.27ASM_pour_plateforme_x86_:" id="Cours_d.27ASM_pour_plateforme_x86_:"></a><h4> <span class="mw-headline"> Cours d'ASM pour plateforme x86 : </span></h4> +<ul><li> <a href="http://benoit-m.developpez.com/assembleur/tutoriel/" class="external free" title="http://benoit-m.developpez.com/assembleur/tutoriel/" rel="nofollow">http://benoit-m.developpez.com/assembleur/tutoriel/</a> +</li><li> <a href="http://www.scribd.com/search?c=all&query=x86&commit=Search" class="external free" title="http://www.scribd.com/search?c=all&query=x86&commit=Search" rel="nofollow">http://www.scribd.com/search?c=all&query=x86&commit=Search</a> +</li></ul> +<a name="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29" id="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"></a><h2> <span class="mw-headline"> Compréhension de la procédure de démarrage (Boot) </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Master_boot_record" class="external text" title="http://fr.wikipedia.org/wiki/Master_boot_record" rel="nofollow">MBR</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">GRUB</a> +</li><li> (Une des) <a href="http://fr.wikipedia.org/wiki/Init" class="external text" title="http://fr.wikipedia.org/wiki/Init" rel="nofollow">procédure(s) d'initialisation</a> de GNU/Linux (Nous n'utiliserons probablement pas cette méthode, mais c'est bon à connaître). +</li></ul> +<p><br /> +Nous utiliserons Grub et le standard Multiboot plutôt que de programmer notre propre chargeur de démarrage, cependant les méchanismes du MBR et de GRUB sont à comprendre pour maîtriser la chose (et pour la soutenance orale...). +</p> +<a name="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29" id="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"></a><h2> <span class="mw-headline"> Interruptions du BIOS (pages de référence) </span></h2> +<ul><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Liste des interruptions</a> et de comment on s'en sert +</li><li> Les interruptions int 10h et int 13h seront utilisées. +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" rel="nofollow">int 10h</a> +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" rel="nofollow">int 13h (VGA)</a> +</li><li> <a href="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" class="external text" title="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" rel="nofollow">Modes VESA</a> +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 9/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:2-0!1!0!!fr!2!edit=0 and timestamp 20230503142416 --> +<div class="printfooter"> +Récupérée de « <a href="./Spécial:Page_au_hasard.html">https://wiki.gruntnetwork.com/Pr%C3%A9requis</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="./Spécial:Page_au_hasard.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Prérequis&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Prérequis&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Prérequis.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Prérequis.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Prérequis.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Prérequis.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Prérequis&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Prérequis&oldid=33.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 8 février 2009 à 17:15.<br /></li> + <li id="viewcount">Cette page a été consultée 2 002 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.309 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Prérequis.orig b/wget/https/wiki.gruntnetwork.com/Prérequis.orig @@ -0,0 +1,239 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Prérequis" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Pr%C3%A9requis&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Prérequis - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Prérequis"; + var wgTitle = "Prérequis"; + var wgAction = "view"; + var wgArticleId = "2"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 33; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Prérequis skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Prérequis</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p><b>Une chose à retenir</b> : Si vous êtes largués, si vous ne comprenez pas, si vous piétinez sur un bout de code qui compile pas : n'attendez pas le déluge pour vous signaler ! +Il y aura toujours quelqu'un pour vous aider à comprendre ce qui vous pose problème. +</p><p>Certaines pages lisées ici sont en anglais : si vous avez du mal, envoyez-moi un message et je ferai une traduction. +</p> +<table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#Un_peu_de_lecture"><span class="tocnumber">1</span> <span class="toctext">Un peu de lecture</span></a> +<ul> +<li class="toclevel-2"><a href="#Conception_D.27OS_.28GNU.2FLinux_Magazine.29"><span class="tocnumber">1.1</span> <span class="toctext">Conception D'OS (GNU/Linux Magazine)</span></a></li> +<li class="toclevel-2"><a href="#a_Simple_Operating_System"><span class="tocnumber">1.2</span> <span class="toctext">a Simple Operating System</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="#Connaissance_du_C_et_de_l.27assembleur"><span class="tocnumber">2</span> <span class="toctext">Connaissance du C et de l'assembleur</span></a> +<ul> +<li class="toclevel-2"><a href="#Cours_de_C_:"><span class="tocnumber">2.1</span> <span class="toctext">Cours de C :</span></a></li> +<li class="toclevel-2"><a href="#Cours_d.27ASM_pour_plateforme_x86_:"><span class="tocnumber">2.2</span> <span class="toctext">Cours d'ASM pour plateforme x86 :</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="#Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"><span class="tocnumber">3</span> <span class="toctext">Compréhension de la procédure de démarrage (Boot)</span></a></li> +<li class="toclevel-1"><a href="#Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"><span class="tocnumber">4</span> <span class="toctext">Interruptions du BIOS (pages de référence)</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Un_peu_de_lecture" id="Un_peu_de_lecture"></a><h2> <span class="mw-headline"> Un peu de lecture </span></h2> +<a name="Conception_D.27OS_.28GNU.2FLinux_Magazine.29" id="Conception_D.27OS_.28GNU.2FLinux_Magazine.29"></a><h3> <span class="mw-headline"> Conception D'OS (GNU/Linux Magazine) </span></h3> +<p>Dans GNU/Linux Magazine France est paru il y a quelques années une série d'articles sur la conception de systèmes d'exploitation. Les articles expliquent, pas à pas, comment créer un système simple. Je recommande vivement à tout le monde d'avoir lu ces articles d'ici la mi-janvier, comme ça on saura tous de quoi on parle. +</p><p><a href="http://sos.enix.org/fr/SOSDownload" class="external text" title="http://sos.enix.org/fr/SOSDownload" rel="nofollow">Les articles</a> sont disponibles gratuitement sur internet. +</p><p>N°s des magazines : +</p> +<ul><li> 62 : Boot + Console +</li><li> 63 : Segmentation et Interruptions +</li><li> 65 : Pagination +</li><li> 68 : Multitâche et changement de contexte +</li><li> 69 : Threads +</li><li> 70 : Espaces d'adressage, appels système et applications utilisateur +</li><li> 72 : Gestion de l'espace virtuel utilisateur +</li><li> 74 : VFS (système de fichiers virtuel) +</li></ul> +<p>Vu que ce dernier numéro contient la deuxième partie d'un article très intéressant sur la compression de données, vous voudrez peut-être la première partie : n° 73. +Le site <a href="http://www.ed-diamond.com/" class="external text" title="http://www.ed-diamond.com/" rel="nofollow">ed-diamond</a> vous permet de commander ces anciens numéros. Il propose un « PowerPack x10 » à 25€, donc ça fait un bon cadeau de noël pour pas trop cher :) +</p> +<a name="a_Simple_Operating_System" id="a_Simple_Operating_System"></a><h3> <span class="mw-headline"> a Simple Operating System </span></h3> +<p>Un système d'exploitation simple : <a href="http://minso.free.fr/cavinfo/systeme/sos.html" class="external text" title="http://minso.free.fr/cavinfo/systeme/sos.html" rel="nofollow">sos</a> +</p> +<a name="Connaissance_du_C_et_de_l.27assembleur" id="Connaissance_du_C_et_de_l.27assembleur"></a><h2> <span class="mw-headline"> Connaissance du C et de l'assembleur </span></h2> +<a name="Cours_de_C_:" id="Cours_de_C_:"></a><h4> <span class="mw-headline"> Cours de C : </span></h4> +<ul><li> <a href="http://c.developpez.com/cours/" class="external free" title="http://c.developpez.com/cours/" rel="nofollow">http://c.developpez.com/cours/</a> +</li><li> <a href="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" class="external free" title="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" rel="nofollow">http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html</a> +</li><li> <a href="http://c.developpez.com/faq/" class="external free" title="http://c.developpez.com/faq/" rel="nofollow">http://c.developpez.com/faq/</a> +</li></ul> +<a name="Cours_d.27ASM_pour_plateforme_x86_:" id="Cours_d.27ASM_pour_plateforme_x86_:"></a><h4> <span class="mw-headline"> Cours d'ASM pour plateforme x86 : </span></h4> +<ul><li> <a href="http://benoit-m.developpez.com/assembleur/tutoriel/" class="external free" title="http://benoit-m.developpez.com/assembleur/tutoriel/" rel="nofollow">http://benoit-m.developpez.com/assembleur/tutoriel/</a> +</li><li> <a href="http://www.scribd.com/search?c=all&query=x86&commit=Search" class="external free" title="http://www.scribd.com/search?c=all&query=x86&commit=Search" rel="nofollow">http://www.scribd.com/search?c=all&query=x86&commit=Search</a> +</li></ul> +<a name="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29" id="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"></a><h2> <span class="mw-headline"> Compréhension de la procédure de démarrage (Boot) </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Master_boot_record" class="external text" title="http://fr.wikipedia.org/wiki/Master_boot_record" rel="nofollow">MBR</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">GRUB</a> +</li><li> (Une des) <a href="http://fr.wikipedia.org/wiki/Init" class="external text" title="http://fr.wikipedia.org/wiki/Init" rel="nofollow">procédure(s) d'initialisation</a> de GNU/Linux (Nous n'utiliserons probablement pas cette méthode, mais c'est bon à connaître). +</li></ul> +<p><br /> +Nous utiliserons Grub et le standard Multiboot plutôt que de programmer notre propre chargeur de démarrage, cependant les méchanismes du MBR et de GRUB sont à comprendre pour maîtriser la chose (et pour la soutenance orale...). +</p> +<a name="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29" id="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"></a><h2> <span class="mw-headline"> Interruptions du BIOS (pages de référence) </span></h2> +<ul><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Liste des interruptions</a> et de comment on s'en sert +</li><li> Les interruptions int 10h et int 13h seront utilisées. +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" rel="nofollow">int 10h</a> +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" rel="nofollow">int 13h (VGA)</a> +</li><li> <a href="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" class="external text" title="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" rel="nofollow">Modes VESA</a> +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 9/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:2-0!1!0!!fr!2!edit=0 and timestamp 20230503142416 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Pr%C3%A9requis">https://wiki.gruntnetwork.com/Pr%C3%A9requis</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Pr%C3%A9requis" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Pr%C3%A9requis&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Pr%C3%A9requis&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Pr%C3%A9requis" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Pr%C3%A9requis">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Pr%C3%A9requis" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Pr%C3%A9requis&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Pr%C3%A9requis&oldid=33" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 8 février 2009 à 17:15.<br /></li> + <li id="viewcount">Cette page a été consultée 2 002 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.309 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Modifications_récentes.html b/wget/https/wiki.gruntnetwork.com/Spécial:Modifications_récentes.html @@ -0,0 +1,180 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Spécial:Modifications récentes" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Modifications récentes »" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Modifications récentes »" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Modifications récentes - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchanges"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Modifications_récentes"; + var wgTitle = "Modifications récentes"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Modifications_récentes skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Modifications récentes</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./Spécial:Modifications_récentes.html#column-one">Navigation</a>, <a href="./Spécial:Modifications_récentes.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Piste les changements les plus récents du wiki sur cette page. +</p><fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&limit=50" title="Spécial:Modifications récentes" style="font-weight: bold;">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&limit=100" title="Spécial:Modifications récentes">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&limit=250" title="Spécial:Modifications récentes">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&limit=500" title="Spécial:Modifications récentes">500</a> dernières modifications effectuées au cours des <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&days=1" title="Spécial:Modifications récentes">1</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&days=3" title="Spécial:Modifications récentes">3</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&days=7" title="Spécial:Modifications récentes" style="font-weight: bold;">7</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&days=14" title="Spécial:Modifications récentes">14</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&days=30" title="Spécial:Modifications récentes">30</a> derniers jours<br /><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&hideminor=1" title="Spécial:Modifications récentes">masquer</a> les modifications mineures | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&hidebots=0" title="Spécial:Modifications récentes">afficher</a> les bots | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&hideanons=1" title="Spécial:Modifications récentes">masquer</a> les utilisateurs anonymes | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&hideliu=1" title="Spécial:Modifications récentes">masquer</a> les utilisateurs inscrits | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&hidemyself=1" title="Spécial:Modifications récentes">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&from=20230504113659" title="Spécial:Modifications récentes">4 mai 2023 à 11:36</a>. +<hr /> +<form action="https://wiki.gruntnetwork.com/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Modifications récentes" /></form> +</fieldset> +<div class="printfooter"> +Récupérée de « <a href="./Spécial:Modifications_récentes.html">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Modifications_r%C3%A9centes</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./Spécial:Modifications_récentes.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Modifications_r%C3%A9centes">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.275 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Modifications_récentes.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Modifications_récentes.orig @@ -0,0 +1,180 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Spécial:Modifications récentes" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Modifications récentes »" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Modifications récentes »" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Modifications récentes - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchanges"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Modifications_récentes"; + var wgTitle = "Modifications récentes"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Modifications_récentes skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Modifications récentes</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Piste les changements les plus récents du wiki sur cette page. +</p><fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&limit=50" title="Spécial:Modifications récentes" style="font-weight: bold;">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&limit=100" title="Spécial:Modifications récentes">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&limit=250" title="Spécial:Modifications récentes">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&limit=500" title="Spécial:Modifications récentes">500</a> dernières modifications effectuées au cours des <a href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&days=1" title="Spécial:Modifications récentes">1</a> | <a href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&days=3" title="Spécial:Modifications récentes">3</a> | <a href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&days=7" title="Spécial:Modifications récentes" style="font-weight: bold;">7</a> | <a href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&days=14" title="Spécial:Modifications récentes">14</a> | <a href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&days=30" title="Spécial:Modifications récentes">30</a> derniers jours<br /><a href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&hideminor=1" title="Spécial:Modifications récentes">masquer</a> les modifications mineures | <a href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&hidebots=0" title="Spécial:Modifications récentes">afficher</a> les bots | <a href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&hideanons=1" title="Spécial:Modifications récentes">masquer</a> les utilisateurs anonymes | <a href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&hideliu=1" title="Spécial:Modifications récentes">masquer</a> les utilisateurs inscrits | <a href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&hidemyself=1" title="Spécial:Modifications récentes">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&from=20230504113659" title="Spécial:Modifications récentes">4 mai 2023 à 11:36</a>. +<hr /> +<form action="/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Modifications récentes" /></form> +</fieldset> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Modifications_r%C3%A9centes">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Modifications_r%C3%A9centes</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Modifications_r%C3%A9centes">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.275 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Page_au_hasard.html b/wget/https/wiki.gruntnetwork.com/Spécial:Page_au_hasard.html @@ -0,0 +1,239 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Prérequis" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Prérequis&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Prérequis - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Prérequis"; + var wgTitle = "Prérequis"; + var wgAction = "view"; + var wgArticleId = "2"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 33; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Prérequis skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Prérequis</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./Spécial:Page_au_hasard.html#column-one">Navigation</a>, <a href="./Spécial:Page_au_hasard.html#searchInput">rechercher</a></div> <!-- start content --> + <p><b>Une chose à retenir</b> : Si vous êtes largués, si vous ne comprenez pas, si vous piétinez sur un bout de code qui compile pas : n'attendez pas le déluge pour vous signaler ! +Il y aura toujours quelqu'un pour vous aider à comprendre ce qui vous pose problème. +</p><p>Certaines pages lisées ici sont en anglais : si vous avez du mal, envoyez-moi un message et je ferai une traduction. +</p> +<table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="./Spécial:Page_au_hasard.html#Un_peu_de_lecture"><span class="tocnumber">1</span> <span class="toctext">Un peu de lecture</span></a> +<ul> +<li class="toclevel-2"><a href="./Spécial:Page_au_hasard.html#Conception_D.27OS_.28GNU.2FLinux_Magazine.29"><span class="tocnumber">1.1</span> <span class="toctext">Conception D'OS (GNU/Linux Magazine)</span></a></li> +<li class="toclevel-2"><a href="./Spécial:Page_au_hasard.html#a_Simple_Operating_System"><span class="tocnumber">1.2</span> <span class="toctext">a Simple Operating System</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="./Spécial:Page_au_hasard.html#Connaissance_du_C_et_de_l.27assembleur"><span class="tocnumber">2</span> <span class="toctext">Connaissance du C et de l'assembleur</span></a> +<ul> +<li class="toclevel-2"><a href="./Spécial:Page_au_hasard.html#Cours_de_C_:"><span class="tocnumber">2.1</span> <span class="toctext">Cours de C :</span></a></li> +<li class="toclevel-2"><a href="./Spécial:Page_au_hasard.html#Cours_d.27ASM_pour_plateforme_x86_:"><span class="tocnumber">2.2</span> <span class="toctext">Cours d'ASM pour plateforme x86 :</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="./Spécial:Page_au_hasard.html#Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"><span class="tocnumber">3</span> <span class="toctext">Compréhension de la procédure de démarrage (Boot)</span></a></li> +<li class="toclevel-1"><a href="./Spécial:Page_au_hasard.html#Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"><span class="tocnumber">4</span> <span class="toctext">Interruptions du BIOS (pages de référence)</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Un_peu_de_lecture" id="Un_peu_de_lecture"></a><h2> <span class="mw-headline"> Un peu de lecture </span></h2> +<a name="Conception_D.27OS_.28GNU.2FLinux_Magazine.29" id="Conception_D.27OS_.28GNU.2FLinux_Magazine.29"></a><h3> <span class="mw-headline"> Conception D'OS (GNU/Linux Magazine) </span></h3> +<p>Dans GNU/Linux Magazine France est paru il y a quelques années une série d'articles sur la conception de systèmes d'exploitation. Les articles expliquent, pas à pas, comment créer un système simple. Je recommande vivement à tout le monde d'avoir lu ces articles d'ici la mi-janvier, comme ça on saura tous de quoi on parle. +</p><p><a href="http://sos.enix.org/fr/SOSDownload" class="external text" title="http://sos.enix.org/fr/SOSDownload" rel="nofollow">Les articles</a> sont disponibles gratuitement sur internet. +</p><p>N°s des magazines : +</p> +<ul><li> 62 : Boot + Console +</li><li> 63 : Segmentation et Interruptions +</li><li> 65 : Pagination +</li><li> 68 : Multitâche et changement de contexte +</li><li> 69 : Threads +</li><li> 70 : Espaces d'adressage, appels système et applications utilisateur +</li><li> 72 : Gestion de l'espace virtuel utilisateur +</li><li> 74 : VFS (système de fichiers virtuel) +</li></ul> +<p>Vu que ce dernier numéro contient la deuxième partie d'un article très intéressant sur la compression de données, vous voudrez peut-être la première partie : n° 73. +Le site <a href="http://www.ed-diamond.com/" class="external text" title="http://www.ed-diamond.com/" rel="nofollow">ed-diamond</a> vous permet de commander ces anciens numéros. Il propose un « PowerPack x10 » à 25€, donc ça fait un bon cadeau de noël pour pas trop cher :) +</p> +<a name="a_Simple_Operating_System" id="a_Simple_Operating_System"></a><h3> <span class="mw-headline"> a Simple Operating System </span></h3> +<p>Un système d'exploitation simple : <a href="http://minso.free.fr/cavinfo/systeme/sos.html" class="external text" title="http://minso.free.fr/cavinfo/systeme/sos.html" rel="nofollow">sos</a> +</p> +<a name="Connaissance_du_C_et_de_l.27assembleur" id="Connaissance_du_C_et_de_l.27assembleur"></a><h2> <span class="mw-headline"> Connaissance du C et de l'assembleur </span></h2> +<a name="Cours_de_C_:" id="Cours_de_C_:"></a><h4> <span class="mw-headline"> Cours de C : </span></h4> +<ul><li> <a href="http://c.developpez.com/cours/" class="external free" title="http://c.developpez.com/cours/" rel="nofollow">http://c.developpez.com/cours/</a> +</li><li> <a href="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" class="external free" title="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" rel="nofollow">http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html</a> +</li><li> <a href="http://c.developpez.com/faq/" class="external free" title="http://c.developpez.com/faq/" rel="nofollow">http://c.developpez.com/faq/</a> +</li></ul> +<a name="Cours_d.27ASM_pour_plateforme_x86_:" id="Cours_d.27ASM_pour_plateforme_x86_:"></a><h4> <span class="mw-headline"> Cours d'ASM pour plateforme x86 : </span></h4> +<ul><li> <a href="http://benoit-m.developpez.com/assembleur/tutoriel/" class="external free" title="http://benoit-m.developpez.com/assembleur/tutoriel/" rel="nofollow">http://benoit-m.developpez.com/assembleur/tutoriel/</a> +</li><li> <a href="http://www.scribd.com/search?c=all&query=x86&commit=Search" class="external free" title="http://www.scribd.com/search?c=all&query=x86&commit=Search" rel="nofollow">http://www.scribd.com/search?c=all&query=x86&commit=Search</a> +</li></ul> +<a name="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29" id="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"></a><h2> <span class="mw-headline"> Compréhension de la procédure de démarrage (Boot) </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Master_boot_record" class="external text" title="http://fr.wikipedia.org/wiki/Master_boot_record" rel="nofollow">MBR</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">GRUB</a> +</li><li> (Une des) <a href="http://fr.wikipedia.org/wiki/Init" class="external text" title="http://fr.wikipedia.org/wiki/Init" rel="nofollow">procédure(s) d'initialisation</a> de GNU/Linux (Nous n'utiliserons probablement pas cette méthode, mais c'est bon à connaître). +</li></ul> +<p><br /> +Nous utiliserons Grub et le standard Multiboot plutôt que de programmer notre propre chargeur de démarrage, cependant les méchanismes du MBR et de GRUB sont à comprendre pour maîtriser la chose (et pour la soutenance orale...). +</p> +<a name="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29" id="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"></a><h2> <span class="mw-headline"> Interruptions du BIOS (pages de référence) </span></h2> +<ul><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Liste des interruptions</a> et de comment on s'en sert +</li><li> Les interruptions int 10h et int 13h seront utilisées. +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" rel="nofollow">int 10h</a> +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" rel="nofollow">int 13h (VGA)</a> +</li><li> <a href="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" class="external text" title="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" rel="nofollow">Modes VESA</a> +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 9/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:2-0!1!0!!fr!2!edit=0 and timestamp 20230503142416 --> +<div class="printfooter"> +Récupérée de « <a href="./Spécial:Page_au_hasard.html">https://wiki.gruntnetwork.com/Pr%C3%A9requis</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="./Spécial:Page_au_hasard.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Prérequis&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Prérequis&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Prérequis.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Prérequis.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Prérequis.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Prérequis.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Prérequis&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Prérequis&oldid=33.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 8 février 2009 à 17:15.<br /></li> + <li id="viewcount">Cette page a été consultée 2 003 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.303 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Page_au_hasard.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Page_au_hasard.orig @@ -0,0 +1,239 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Prérequis" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Pr%C3%A9requis&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Prérequis - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Prérequis"; + var wgTitle = "Prérequis"; + var wgAction = "view"; + var wgArticleId = "2"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 33; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Prérequis skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Prérequis</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p><b>Une chose à retenir</b> : Si vous êtes largués, si vous ne comprenez pas, si vous piétinez sur un bout de code qui compile pas : n'attendez pas le déluge pour vous signaler ! +Il y aura toujours quelqu'un pour vous aider à comprendre ce qui vous pose problème. +</p><p>Certaines pages lisées ici sont en anglais : si vous avez du mal, envoyez-moi un message et je ferai une traduction. +</p> +<table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#Un_peu_de_lecture"><span class="tocnumber">1</span> <span class="toctext">Un peu de lecture</span></a> +<ul> +<li class="toclevel-2"><a href="#Conception_D.27OS_.28GNU.2FLinux_Magazine.29"><span class="tocnumber">1.1</span> <span class="toctext">Conception D'OS (GNU/Linux Magazine)</span></a></li> +<li class="toclevel-2"><a href="#a_Simple_Operating_System"><span class="tocnumber">1.2</span> <span class="toctext">a Simple Operating System</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="#Connaissance_du_C_et_de_l.27assembleur"><span class="tocnumber">2</span> <span class="toctext">Connaissance du C et de l'assembleur</span></a> +<ul> +<li class="toclevel-2"><a href="#Cours_de_C_:"><span class="tocnumber">2.1</span> <span class="toctext">Cours de C :</span></a></li> +<li class="toclevel-2"><a href="#Cours_d.27ASM_pour_plateforme_x86_:"><span class="tocnumber">2.2</span> <span class="toctext">Cours d'ASM pour plateforme x86 :</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="#Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"><span class="tocnumber">3</span> <span class="toctext">Compréhension de la procédure de démarrage (Boot)</span></a></li> +<li class="toclevel-1"><a href="#Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"><span class="tocnumber">4</span> <span class="toctext">Interruptions du BIOS (pages de référence)</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Un_peu_de_lecture" id="Un_peu_de_lecture"></a><h2> <span class="mw-headline"> Un peu de lecture </span></h2> +<a name="Conception_D.27OS_.28GNU.2FLinux_Magazine.29" id="Conception_D.27OS_.28GNU.2FLinux_Magazine.29"></a><h3> <span class="mw-headline"> Conception D'OS (GNU/Linux Magazine) </span></h3> +<p>Dans GNU/Linux Magazine France est paru il y a quelques années une série d'articles sur la conception de systèmes d'exploitation. Les articles expliquent, pas à pas, comment créer un système simple. Je recommande vivement à tout le monde d'avoir lu ces articles d'ici la mi-janvier, comme ça on saura tous de quoi on parle. +</p><p><a href="http://sos.enix.org/fr/SOSDownload" class="external text" title="http://sos.enix.org/fr/SOSDownload" rel="nofollow">Les articles</a> sont disponibles gratuitement sur internet. +</p><p>N°s des magazines : +</p> +<ul><li> 62 : Boot + Console +</li><li> 63 : Segmentation et Interruptions +</li><li> 65 : Pagination +</li><li> 68 : Multitâche et changement de contexte +</li><li> 69 : Threads +</li><li> 70 : Espaces d'adressage, appels système et applications utilisateur +</li><li> 72 : Gestion de l'espace virtuel utilisateur +</li><li> 74 : VFS (système de fichiers virtuel) +</li></ul> +<p>Vu que ce dernier numéro contient la deuxième partie d'un article très intéressant sur la compression de données, vous voudrez peut-être la première partie : n° 73. +Le site <a href="http://www.ed-diamond.com/" class="external text" title="http://www.ed-diamond.com/" rel="nofollow">ed-diamond</a> vous permet de commander ces anciens numéros. Il propose un « PowerPack x10 » à 25€, donc ça fait un bon cadeau de noël pour pas trop cher :) +</p> +<a name="a_Simple_Operating_System" id="a_Simple_Operating_System"></a><h3> <span class="mw-headline"> a Simple Operating System </span></h3> +<p>Un système d'exploitation simple : <a href="http://minso.free.fr/cavinfo/systeme/sos.html" class="external text" title="http://minso.free.fr/cavinfo/systeme/sos.html" rel="nofollow">sos</a> +</p> +<a name="Connaissance_du_C_et_de_l.27assembleur" id="Connaissance_du_C_et_de_l.27assembleur"></a><h2> <span class="mw-headline"> Connaissance du C et de l'assembleur </span></h2> +<a name="Cours_de_C_:" id="Cours_de_C_:"></a><h4> <span class="mw-headline"> Cours de C : </span></h4> +<ul><li> <a href="http://c.developpez.com/cours/" class="external free" title="http://c.developpez.com/cours/" rel="nofollow">http://c.developpez.com/cours/</a> +</li><li> <a href="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" class="external free" title="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" rel="nofollow">http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html</a> +</li><li> <a href="http://c.developpez.com/faq/" class="external free" title="http://c.developpez.com/faq/" rel="nofollow">http://c.developpez.com/faq/</a> +</li></ul> +<a name="Cours_d.27ASM_pour_plateforme_x86_:" id="Cours_d.27ASM_pour_plateforme_x86_:"></a><h4> <span class="mw-headline"> Cours d'ASM pour plateforme x86 : </span></h4> +<ul><li> <a href="http://benoit-m.developpez.com/assembleur/tutoriel/" class="external free" title="http://benoit-m.developpez.com/assembleur/tutoriel/" rel="nofollow">http://benoit-m.developpez.com/assembleur/tutoriel/</a> +</li><li> <a href="http://www.scribd.com/search?c=all&query=x86&commit=Search" class="external free" title="http://www.scribd.com/search?c=all&query=x86&commit=Search" rel="nofollow">http://www.scribd.com/search?c=all&query=x86&commit=Search</a> +</li></ul> +<a name="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29" id="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"></a><h2> <span class="mw-headline"> Compréhension de la procédure de démarrage (Boot) </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Master_boot_record" class="external text" title="http://fr.wikipedia.org/wiki/Master_boot_record" rel="nofollow">MBR</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">GRUB</a> +</li><li> (Une des) <a href="http://fr.wikipedia.org/wiki/Init" class="external text" title="http://fr.wikipedia.org/wiki/Init" rel="nofollow">procédure(s) d'initialisation</a> de GNU/Linux (Nous n'utiliserons probablement pas cette méthode, mais c'est bon à connaître). +</li></ul> +<p><br /> +Nous utiliserons Grub et le standard Multiboot plutôt que de programmer notre propre chargeur de démarrage, cependant les méchanismes du MBR et de GRUB sont à comprendre pour maîtriser la chose (et pour la soutenance orale...). +</p> +<a name="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29" id="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"></a><h2> <span class="mw-headline"> Interruptions du BIOS (pages de référence) </span></h2> +<ul><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Liste des interruptions</a> et de comment on s'en sert +</li><li> Les interruptions int 10h et int 13h seront utilisées. +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" rel="nofollow">int 10h</a> +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" rel="nofollow">int 13h (VGA)</a> +</li><li> <a href="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" class="external text" title="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" rel="nofollow">Modes VESA</a> +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 9/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:2-0!1!0!!fr!2!edit=0 and timestamp 20230503142416 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Pr%C3%A9requis">https://wiki.gruntnetwork.com/Pr%C3%A9requis</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Pr%C3%A9requis" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Pr%C3%A9requis&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Pr%C3%A9requis&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Pr%C3%A9requis" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Pr%C3%A9requis">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Pr%C3%A9requis" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Pr%C3%A9requis&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Pr%C3%A9requis&oldid=33" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 8 février 2009 à 17:15.<br /></li> + <li id="viewcount">Cette page a été consultée 2 003 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.303 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Accueil.html b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Accueil.html @@ -0,0 +1,178 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Pages qui pointent vers « Accueil » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Accueil »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&redirect=no" title="Accueil">Accueil</a></div> + <div id="jump-to-nav">Aller à : <a href="Accueil.html#column-one">Navigation</a>, <a href="Accueil.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Accueil" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Accueil&hidetrans=1" title="Spécial:Pages liées/Accueil">masquer les inclusions</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Accueil&hidelinks=1" title="Spécial:Pages liées/Accueil">masquer les liens</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Accueil&hideredirs=1" title="Spécial:Pages liées/Accueil">masquer les redirections</a> +</fieldset> +<p>Aucune page ne contient de lien vers <b><a href="../index.html" title="Accueil">Accueil</a></b>. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="Accueil.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.265 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Accueil.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Accueil.orig @@ -0,0 +1,178 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Pages qui pointent vers « Accueil » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Accueil »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Accueil&redirect=no" title="Accueil">Accueil</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Accueil" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Accueil&hidetrans=1" title="Spécial:Pages liées/Accueil">masquer les inclusions</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Accueil&hidelinks=1" title="Spécial:Pages liées/Accueil">masquer les liens</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Accueil&hideredirs=1" title="Spécial:Pages liées/Accueil">masquer les redirections</a> +</fieldset> +<p>Aucune page ne contient de lien vers <b><a href="/Accueil" title="Accueil">Accueil</a></b>. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Accueil" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.265 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Affichage_Graphique.html b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Affichage_Graphique.html @@ -0,0 +1,179 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Pages qui pointent vers « Affichage Graphique » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Affichage Graphique »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&redirect=no" title="Affichage Graphique">Affichage Graphique</a></div> + <div id="jump-to-nav">Aller à : <a href="Affichage_Graphique.html#column-one">Navigation</a>, <a href="Affichage_Graphique.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Affichage Graphique" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&hidetrans=1" title="Spécial:Pages liées/Affichage Graphique">masquer les inclusions</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&hidelinks=1" title="Spécial:Pages liées/Affichage Graphique">masquer les liens</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&hideredirs=1" title="Spécial:Pages liées/Affichage Graphique">masquer les redirections</a> +</fieldset> +<p>Les pages ci-dessous contiennent un lien vers <b><a href="../Affichage_Graphique.html" title="Affichage Graphique">Affichage Graphique</a></b> : +</p>Voir (50 précédentes) (50 suivantes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=20" title="Spécial:Pages liées/Affichage Graphique">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=50" title="Spécial:Pages liées/Affichage Graphique">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=100" title="Spécial:Pages liées/Affichage Graphique">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=250" title="Spécial:Pages liées/Affichage Graphique">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=500" title="Spécial:Pages liées/Affichage Graphique">500</a>).<ul id="mw-whatlinkshere-list"><li><a href="../Liens.html" title="Liens">Liens</a> <span class="mw-whatlinkshere-tools">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Liens" title="Spécial:Pages liées">← liens</a>)</span></li> +</ul>Voir (50 précédentes) (50 suivantes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=20" title="Spécial:Pages liées/Affichage Graphique">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=50" title="Spécial:Pages liées/Affichage Graphique">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=100" title="Spécial:Pages liées/Affichage Graphique">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=250" title="Spécial:Pages liées/Affichage Graphique">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=500" title="Spécial:Pages liées/Affichage Graphique">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="Affichage_Graphique.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.289 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Affichage_Graphique.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Affichage_Graphique.orig @@ -0,0 +1,179 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Pages qui pointent vers « Affichage Graphique » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Affichage Graphique »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Affichage_Graphique&redirect=no" title="Affichage Graphique">Affichage Graphique</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Affichage Graphique" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&hidetrans=1" title="Spécial:Pages liées/Affichage Graphique">masquer les inclusions</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&hidelinks=1" title="Spécial:Pages liées/Affichage Graphique">masquer les liens</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&hideredirs=1" title="Spécial:Pages liées/Affichage Graphique">masquer les redirections</a> +</fieldset> +<p>Les pages ci-dessous contiennent un lien vers <b><a href="/Affichage_Graphique" title="Affichage Graphique">Affichage Graphique</a></b> : +</p>Voir (50 précédentes) (50 suivantes) (<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=20" title="Spécial:Pages liées/Affichage Graphique">20</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=50" title="Spécial:Pages liées/Affichage Graphique">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=100" title="Spécial:Pages liées/Affichage Graphique">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=250" title="Spécial:Pages liées/Affichage Graphique">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=500" title="Spécial:Pages liées/Affichage Graphique">500</a>).<ul id="mw-whatlinkshere-list"><li><a href="/Liens" title="Liens">Liens</a> <span class="mw-whatlinkshere-tools">(<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Liens" title="Spécial:Pages liées">← liens</a>)</span></li> +</ul>Voir (50 précédentes) (50 suivantes) (<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=20" title="Spécial:Pages liées/Affichage Graphique">20</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=50" title="Spécial:Pages liées/Affichage Graphique">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=100" title="Spécial:Pages liées/Affichage Graphique">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=250" title="Spécial:Pages liées/Affichage Graphique">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique&limit=500" title="Spécial:Pages liées/Affichage Graphique">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.289 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Conventions.html b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Conventions.html @@ -0,0 +1,180 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Pages qui pointent vers « Conventions » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Conventions »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&redirect=no" title="Conventions">Conventions</a></div> + <div id="jump-to-nav">Aller à : <a href="Conventions.html#column-one">Navigation</a>, <a href="Conventions.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Conventions" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&hidetrans=1" title="Spécial:Pages liées/Conventions">masquer les inclusions</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&hidelinks=1" title="Spécial:Pages liées/Conventions">masquer les liens</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&hideredirs=1" title="Spécial:Pages liées/Conventions">masquer les redirections</a> +</fieldset> +<p>Les pages ci-dessous contiennent un lien vers <b><a href="../Conventions.html" title="Conventions">Conventions</a></b> : +</p>Voir (50 précédentes) (50 suivantes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=20" title="Spécial:Pages liées/Conventions">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=50" title="Spécial:Pages liées/Conventions">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=100" title="Spécial:Pages liées/Conventions">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=250" title="Spécial:Pages liées/Conventions">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=500" title="Spécial:Pages liées/Conventions">500</a>).<ul id="mw-whatlinkshere-list"><li><a href="../index.html" title="Accueil">Accueil</a> <span class="mw-whatlinkshere-tools">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Accueil" title="Spécial:Pages liées">← liens</a>)</span></li> +<li><a href="https://wiki.gruntnetwork.com/Nouveau_D%C3%A9veloppeur" title="Nouveau Développeur">Nouveau Développeur</a> <span class="mw-whatlinkshere-tools">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Nouveau_D%C3%A9veloppeur" title="Spécial:Pages liées">← liens</a>)</span></li> +</ul>Voir (50 précédentes) (50 suivantes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=20" title="Spécial:Pages liées/Conventions">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=50" title="Spécial:Pages liées/Conventions">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=100" title="Spécial:Pages liées/Conventions">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=250" title="Spécial:Pages liées/Conventions">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=500" title="Spécial:Pages liées/Conventions">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="Conventions.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.249 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Conventions.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Conventions.orig @@ -0,0 +1,180 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Pages qui pointent vers « Conventions » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Conventions »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Conventions&redirect=no" title="Conventions">Conventions</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Conventions" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&hidetrans=1" title="Spécial:Pages liées/Conventions">masquer les inclusions</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&hidelinks=1" title="Spécial:Pages liées/Conventions">masquer les liens</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&hideredirs=1" title="Spécial:Pages liées/Conventions">masquer les redirections</a> +</fieldset> +<p>Les pages ci-dessous contiennent un lien vers <b><a href="/Conventions" title="Conventions">Conventions</a></b> : +</p>Voir (50 précédentes) (50 suivantes) (<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=20" title="Spécial:Pages liées/Conventions">20</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=50" title="Spécial:Pages liées/Conventions">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=100" title="Spécial:Pages liées/Conventions">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=250" title="Spécial:Pages liées/Conventions">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=500" title="Spécial:Pages liées/Conventions">500</a>).<ul id="mw-whatlinkshere-list"><li><a href="/Accueil" title="Accueil">Accueil</a> <span class="mw-whatlinkshere-tools">(<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Accueil" title="Spécial:Pages liées">← liens</a>)</span></li> +<li><a href="/Nouveau_D%C3%A9veloppeur" title="Nouveau Développeur">Nouveau Développeur</a> <span class="mw-whatlinkshere-tools">(<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Nouveau_D%C3%A9veloppeur" title="Spécial:Pages liées">← liens</a>)</span></li> +</ul>Voir (50 précédentes) (50 suivantes) (<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=20" title="Spécial:Pages liées/Conventions">20</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=50" title="Spécial:Pages liées/Conventions">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=100" title="Spécial:Pages liées/Conventions">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=250" title="Spécial:Pages liées/Conventions">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Conventions&limit=500" title="Spécial:Pages liées/Conventions">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Conventions" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.249 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Accueil.html b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Accueil.html @@ -0,0 +1,178 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Pages qui pointent vers « Discussion:Accueil » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Discussion:Accueil »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&redirect=no" title="Discussion:Accueil">Discussion:Accueil</a></div> + <div id="jump-to-nav">Aller à : <a href="./Discussion:Accueil.html#column-one">Navigation</a>, <a href="./Discussion:Accueil.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Discussion:Accueil" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil&hidetrans=1" title="Spécial:Pages liées/Discussion:Accueil">masquer les inclusions</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil&hidelinks=1" title="Spécial:Pages liées/Discussion:Accueil">masquer les liens</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil&hideredirs=1" title="Spécial:Pages liées/Discussion:Accueil">masquer les redirections</a> +</fieldset> +<p>Aucune page ne contient de lien vers <b><a href="../Discussion:Accueil.html" title="Discussion:Accueil">Discussion:Accueil</a></b>. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./Discussion:Accueil.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.223 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Accueil.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Accueil.orig @@ -0,0 +1,178 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Pages qui pointent vers « Discussion:Accueil » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Discussion:Accueil »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Discussion:Accueil&redirect=no" title="Discussion:Accueil">Discussion:Accueil</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Discussion:Accueil" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil&hidetrans=1" title="Spécial:Pages liées/Discussion:Accueil">masquer les inclusions</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil&hidelinks=1" title="Spécial:Pages liées/Discussion:Accueil">masquer les liens</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil&hideredirs=1" title="Spécial:Pages liées/Discussion:Accueil">masquer les redirections</a> +</fieldset> +<p>Aucune page ne contient de lien vers <b><a href="/Discussion:Accueil" title="Discussion:Accueil">Discussion:Accueil</a></b>. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.223 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Liens.html b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Liens.html @@ -0,0 +1,178 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Pages qui pointent vers « Discussion:Liens » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Discussion:Liens »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&redirect=no" title="Discussion:Liens">Discussion:Liens</a></div> + <div id="jump-to-nav">Aller à : <a href="./Discussion:Liens.html#column-one">Navigation</a>, <a href="./Discussion:Liens.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Discussion:Liens" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens&hidetrans=1" title="Spécial:Pages liées/Discussion:Liens">masquer les inclusions</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens&hidelinks=1" title="Spécial:Pages liées/Discussion:Liens">masquer les liens</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens&hideredirs=1" title="Spécial:Pages liées/Discussion:Liens">masquer les redirections</a> +</fieldset> +<p>Aucune page ne contient de lien vers <b><a href="../Discussion:Liens.html" title="Discussion:Liens">Discussion:Liens</a></b>. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./Discussion:Liens.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.229 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Liens.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Liens.orig @@ -0,0 +1,178 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Pages qui pointent vers « Discussion:Liens » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Discussion:Liens »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Discussion:Liens&redirect=no" title="Discussion:Liens">Discussion:Liens</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Discussion:Liens" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens&hidetrans=1" title="Spécial:Pages liées/Discussion:Liens">masquer les inclusions</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens&hidelinks=1" title="Spécial:Pages liées/Discussion:Liens">masquer les liens</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens&hideredirs=1" title="Spécial:Pages liées/Discussion:Liens">masquer les redirections</a> +</fieldset> +<p>Aucune page ne contient de lien vers <b><a href="/Discussion:Liens" title="Discussion:Liens">Discussion:Liens</a></b>. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.229 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Environnement_de_programmation.html b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Environnement_de_programmation.html @@ -0,0 +1,180 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Pages qui pointent vers « Environnement de programmation » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Environnement de programmation »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&redirect=no" title="Environnement de programmation">Environnement de programmation</a></div> + <div id="jump-to-nav">Aller à : <a href="Environnement_de_programmation.html#column-one">Navigation</a>, <a href="Environnement_de_programmation.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Environnement de programmation" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&hidetrans=1" title="Spécial:Pages liées/Environnement de programmation">masquer les inclusions</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&hidelinks=1" title="Spécial:Pages liées/Environnement de programmation">masquer les liens</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&hideredirs=1" title="Spécial:Pages liées/Environnement de programmation">masquer les redirections</a> +</fieldset> +<p>Les pages ci-dessous contiennent un lien vers <b><a href="../Environnement_de_programmation.html" title="Environnement de programmation">Environnement de programmation</a></b> : +</p>Voir (50 précédentes) (50 suivantes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=20" title="Spécial:Pages liées/Environnement de programmation">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=50" title="Spécial:Pages liées/Environnement de programmation">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=100" title="Spécial:Pages liées/Environnement de programmation">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=250" title="Spécial:Pages liées/Environnement de programmation">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=500" title="Spécial:Pages liées/Environnement de programmation">500</a>).<ul id="mw-whatlinkshere-list"><li><a href="../index.html" title="Accueil">Accueil</a> <span class="mw-whatlinkshere-tools">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Accueil" title="Spécial:Pages liées">← liens</a>)</span></li> +<li><a href="https://wiki.gruntnetwork.com/Nouveau_D%C3%A9veloppeur" title="Nouveau Développeur">Nouveau Développeur</a> <span class="mw-whatlinkshere-tools">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Nouveau_D%C3%A9veloppeur" title="Spécial:Pages liées">← liens</a>)</span></li> +</ul>Voir (50 précédentes) (50 suivantes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=20" title="Spécial:Pages liées/Environnement de programmation">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=50" title="Spécial:Pages liées/Environnement de programmation">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=100" title="Spécial:Pages liées/Environnement de programmation">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=250" title="Spécial:Pages liées/Environnement de programmation">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=500" title="Spécial:Pages liées/Environnement de programmation">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="Environnement_de_programmation.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.233 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Environnement_de_programmation.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Environnement_de_programmation.orig @@ -0,0 +1,180 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Pages qui pointent vers « Environnement de programmation » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Environnement de programmation »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Environnement_de_programmation&redirect=no" title="Environnement de programmation">Environnement de programmation</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Environnement de programmation" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&hidetrans=1" title="Spécial:Pages liées/Environnement de programmation">masquer les inclusions</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&hidelinks=1" title="Spécial:Pages liées/Environnement de programmation">masquer les liens</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&hideredirs=1" title="Spécial:Pages liées/Environnement de programmation">masquer les redirections</a> +</fieldset> +<p>Les pages ci-dessous contiennent un lien vers <b><a href="/Environnement_de_programmation" title="Environnement de programmation">Environnement de programmation</a></b> : +</p>Voir (50 précédentes) (50 suivantes) (<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=20" title="Spécial:Pages liées/Environnement de programmation">20</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=50" title="Spécial:Pages liées/Environnement de programmation">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=100" title="Spécial:Pages liées/Environnement de programmation">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=250" title="Spécial:Pages liées/Environnement de programmation">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=500" title="Spécial:Pages liées/Environnement de programmation">500</a>).<ul id="mw-whatlinkshere-list"><li><a href="/Accueil" title="Accueil">Accueil</a> <span class="mw-whatlinkshere-tools">(<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Accueil" title="Spécial:Pages liées">← liens</a>)</span></li> +<li><a href="/Nouveau_D%C3%A9veloppeur" title="Nouveau Développeur">Nouveau Développeur</a> <span class="mw-whatlinkshere-tools">(<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Nouveau_D%C3%A9veloppeur" title="Spécial:Pages liées">← liens</a>)</span></li> +</ul>Voir (50 précédentes) (50 suivantes) (<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=20" title="Spécial:Pages liées/Environnement de programmation">20</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=50" title="Spécial:Pages liées/Environnement de programmation">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=100" title="Spécial:Pages liées/Environnement de programmation">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=250" title="Spécial:Pages liées/Environnement de programmation">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation&limit=500" title="Spécial:Pages liées/Environnement de programmation">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.233 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/GRUB.html b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/GRUB.html @@ -0,0 +1,179 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Pages qui pointent vers « GRUB » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « GRUB »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&redirect=no" title="GRUB">GRUB</a></div> + <div id="jump-to-nav">Aller à : <a href="GRUB.html#column-one">Navigation</a>, <a href="GRUB.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="GRUB" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&hidetrans=1" title="Spécial:Pages liées/GRUB">masquer les inclusions</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&hidelinks=1" title="Spécial:Pages liées/GRUB">masquer les liens</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&hideredirs=1" title="Spécial:Pages liées/GRUB">masquer les redirections</a> +</fieldset> +<p>Les pages ci-dessous contiennent un lien vers <b><a href="../GRUB.html" title="GRUB">GRUB</a></b> : +</p>Voir (50 précédentes) (50 suivantes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=20" title="Spécial:Pages liées/GRUB">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=50" title="Spécial:Pages liées/GRUB">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=100" title="Spécial:Pages liées/GRUB">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=250" title="Spécial:Pages liées/GRUB">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=500" title="Spécial:Pages liées/GRUB">500</a>).<ul id="mw-whatlinkshere-list"><li><a href="../Environnement_de_programmation.html" title="Environnement de programmation">Environnement de programmation</a> <span class="mw-whatlinkshere-tools">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Environnement_de_programmation" title="Spécial:Pages liées">← liens</a>)</span></li> +</ul>Voir (50 précédentes) (50 suivantes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=20" title="Spécial:Pages liées/GRUB">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=50" title="Spécial:Pages liées/GRUB">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=100" title="Spécial:Pages liées/GRUB">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=250" title="Spécial:Pages liées/GRUB">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=500" title="Spécial:Pages liées/GRUB">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="GRUB.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.234 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/GRUB.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/GRUB.orig @@ -0,0 +1,179 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Pages qui pointent vers « GRUB » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « GRUB »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=GRUB&redirect=no" title="GRUB">GRUB</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="GRUB" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&hidetrans=1" title="Spécial:Pages liées/GRUB">masquer les inclusions</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&hidelinks=1" title="Spécial:Pages liées/GRUB">masquer les liens</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&hideredirs=1" title="Spécial:Pages liées/GRUB">masquer les redirections</a> +</fieldset> +<p>Les pages ci-dessous contiennent un lien vers <b><a href="/GRUB" title="GRUB">GRUB</a></b> : +</p>Voir (50 précédentes) (50 suivantes) (<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=20" title="Spécial:Pages liées/GRUB">20</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=50" title="Spécial:Pages liées/GRUB">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=100" title="Spécial:Pages liées/GRUB">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=250" title="Spécial:Pages liées/GRUB">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=500" title="Spécial:Pages liées/GRUB">500</a>).<ul id="mw-whatlinkshere-list"><li><a href="/Environnement_de_programmation" title="Environnement de programmation">Environnement de programmation</a> <span class="mw-whatlinkshere-tools">(<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Environnement_de_programmation" title="Spécial:Pages liées">← liens</a>)</span></li> +</ul>Voir (50 précédentes) (50 suivantes) (<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=20" title="Spécial:Pages liées/GRUB">20</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=50" title="Spécial:Pages liées/GRUB">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=100" title="Spécial:Pages liées/GRUB">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=250" title="Spécial:Pages liées/GRUB">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/GRUB&limit=500" title="Spécial:Pages liées/GRUB">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/GRUB" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.234 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Liens.html b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Liens.html @@ -0,0 +1,180 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Pages qui pointent vers « Liens » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Liens »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Liens&redirect=no" title="Liens">Liens</a></div> + <div id="jump-to-nav">Aller à : <a href="Liens.html#column-one">Navigation</a>, <a href="Liens.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Liens" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&hidetrans=1" title="Spécial:Pages liées/Liens">masquer les inclusions</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&hidelinks=1" title="Spécial:Pages liées/Liens">masquer les liens</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&hideredirs=1" title="Spécial:Pages liées/Liens">masquer les redirections</a> +</fieldset> +<p>Les pages ci-dessous contiennent un lien vers <b><a href="../Liens.html" title="Liens">Liens</a></b> : +</p>Voir (50 précédentes) (50 suivantes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=20" title="Spécial:Pages liées/Liens">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=50" title="Spécial:Pages liées/Liens">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=100" title="Spécial:Pages liées/Liens">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=250" title="Spécial:Pages liées/Liens">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=500" title="Spécial:Pages liées/Liens">500</a>).<ul id="mw-whatlinkshere-list"><li><a href="../index.html" title="Accueil">Accueil</a> <span class="mw-whatlinkshere-tools">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Accueil" title="Spécial:Pages liées">← liens</a>)</span></li> +<li><a href="https://wiki.gruntnetwork.com/Nouveau_D%C3%A9veloppeur" title="Nouveau Développeur">Nouveau Développeur</a> <span class="mw-whatlinkshere-tools">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Nouveau_D%C3%A9veloppeur" title="Spécial:Pages liées">← liens</a>)</span></li> +</ul>Voir (50 précédentes) (50 suivantes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=20" title="Spécial:Pages liées/Liens">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=50" title="Spécial:Pages liées/Liens">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=100" title="Spécial:Pages liées/Liens">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=250" title="Spécial:Pages liées/Liens">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=500" title="Spécial:Pages liées/Liens">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="Liens.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.238 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Liens.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Liens.orig @@ -0,0 +1,180 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Pages qui pointent vers « Liens » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Liens »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Liens&redirect=no" title="Liens">Liens</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Liens" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&hidetrans=1" title="Spécial:Pages liées/Liens">masquer les inclusions</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&hidelinks=1" title="Spécial:Pages liées/Liens">masquer les liens</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&hideredirs=1" title="Spécial:Pages liées/Liens">masquer les redirections</a> +</fieldset> +<p>Les pages ci-dessous contiennent un lien vers <b><a href="/Liens" title="Liens">Liens</a></b> : +</p>Voir (50 précédentes) (50 suivantes) (<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=20" title="Spécial:Pages liées/Liens">20</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=50" title="Spécial:Pages liées/Liens">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=100" title="Spécial:Pages liées/Liens">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=250" title="Spécial:Pages liées/Liens">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=500" title="Spécial:Pages liées/Liens">500</a>).<ul id="mw-whatlinkshere-list"><li><a href="/Accueil" title="Accueil">Accueil</a> <span class="mw-whatlinkshere-tools">(<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Accueil" title="Spécial:Pages liées">← liens</a>)</span></li> +<li><a href="/Nouveau_D%C3%A9veloppeur" title="Nouveau Développeur">Nouveau Développeur</a> <span class="mw-whatlinkshere-tools">(<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Nouveau_D%C3%A9veloppeur" title="Spécial:Pages liées">← liens</a>)</span></li> +</ul>Voir (50 précédentes) (50 suivantes) (<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=20" title="Spécial:Pages liées/Liens">20</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=50" title="Spécial:Pages liées/Liens">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=100" title="Spécial:Pages liées/Liens">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=250" title="Spécial:Pages liées/Liens">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Liens&limit=500" title="Spécial:Pages liées/Liens">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Liens" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.238 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Notes.html b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Notes.html @@ -0,0 +1,179 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Pages qui pointent vers « Notes » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Notes »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Notes&redirect=no" title="Notes">Notes</a></div> + <div id="jump-to-nav">Aller à : <a href="Notes.html#column-one">Navigation</a>, <a href="Notes.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Notes" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&hidetrans=1" title="Spécial:Pages liées/Notes">masquer les inclusions</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&hidelinks=1" title="Spécial:Pages liées/Notes">masquer les liens</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&hideredirs=1" title="Spécial:Pages liées/Notes">masquer les redirections</a> +</fieldset> +<p>Les pages ci-dessous contiennent un lien vers <b><a href="../Notes.html" title="Notes">Notes</a></b> : +</p>Voir (50 précédentes) (50 suivantes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=20" title="Spécial:Pages liées/Notes">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=50" title="Spécial:Pages liées/Notes">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=100" title="Spécial:Pages liées/Notes">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=250" title="Spécial:Pages liées/Notes">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=500" title="Spécial:Pages liées/Notes">500</a>).<ul id="mw-whatlinkshere-list"><li><a href="../index.html" title="Accueil">Accueil</a> <span class="mw-whatlinkshere-tools">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Accueil" title="Spécial:Pages liées">← liens</a>)</span></li> +</ul>Voir (50 précédentes) (50 suivantes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=20" title="Spécial:Pages liées/Notes">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=50" title="Spécial:Pages liées/Notes">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=100" title="Spécial:Pages liées/Notes">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=250" title="Spécial:Pages liées/Notes">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=500" title="Spécial:Pages liées/Notes">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="Notes.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.224 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Notes.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Notes.orig @@ -0,0 +1,179 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Pages qui pointent vers « Notes » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Notes »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Notes&redirect=no" title="Notes">Notes</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Notes" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&hidetrans=1" title="Spécial:Pages liées/Notes">masquer les inclusions</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&hidelinks=1" title="Spécial:Pages liées/Notes">masquer les liens</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&hideredirs=1" title="Spécial:Pages liées/Notes">masquer les redirections</a> +</fieldset> +<p>Les pages ci-dessous contiennent un lien vers <b><a href="/Notes" title="Notes">Notes</a></b> : +</p>Voir (50 précédentes) (50 suivantes) (<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=20" title="Spécial:Pages liées/Notes">20</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=50" title="Spécial:Pages liées/Notes">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=100" title="Spécial:Pages liées/Notes">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=250" title="Spécial:Pages liées/Notes">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=500" title="Spécial:Pages liées/Notes">500</a>).<ul id="mw-whatlinkshere-list"><li><a href="/Accueil" title="Accueil">Accueil</a> <span class="mw-whatlinkshere-tools">(<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Accueil" title="Spécial:Pages liées">← liens</a>)</span></li> +</ul>Voir (50 précédentes) (50 suivantes) (<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=20" title="Spécial:Pages liées/Notes">20</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=50" title="Spécial:Pages liées/Notes">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=100" title="Spécial:Pages liées/Notes">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=250" title="Spécial:Pages liées/Notes">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Notes&limit=500" title="Spécial:Pages liées/Notes">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Notes" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.224 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Prérequis.html b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Prérequis.html @@ -0,0 +1,180 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Pages qui pointent vers « Prérequis » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Prérequis »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&redirect=no" title="Prérequis">Prérequis</a></div> + <div id="jump-to-nav">Aller à : <a href="Prérequis.html#column-one">Navigation</a>, <a href="Prérequis.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Prérequis" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&hidetrans=1" title="Spécial:Pages liées/Prérequis">masquer les inclusions</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&hidelinks=1" title="Spécial:Pages liées/Prérequis">masquer les liens</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&hideredirs=1" title="Spécial:Pages liées/Prérequis">masquer les redirections</a> +</fieldset> +<p>Les pages ci-dessous contiennent un lien vers <b><a href="../Spécial:Page_au_hasard.html" title="Prérequis">Prérequis</a></b> : +</p>Voir (50 précédentes) (50 suivantes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=20" title="Spécial:Pages liées/Prérequis">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=50" title="Spécial:Pages liées/Prérequis">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=100" title="Spécial:Pages liées/Prérequis">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=250" title="Spécial:Pages liées/Prérequis">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=500" title="Spécial:Pages liées/Prérequis">500</a>).<ul id="mw-whatlinkshere-list"><li><a href="../index.html" title="Accueil">Accueil</a> <span class="mw-whatlinkshere-tools">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Accueil" title="Spécial:Pages liées">← liens</a>)</span></li> +<li><a href="https://wiki.gruntnetwork.com/Nouveau_D%C3%A9veloppeur" title="Nouveau Développeur">Nouveau Développeur</a> <span class="mw-whatlinkshere-tools">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Nouveau_D%C3%A9veloppeur" title="Spécial:Pages liées">← liens</a>)</span></li> +</ul>Voir (50 précédentes) (50 suivantes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=20" title="Spécial:Pages liées/Prérequis">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=50" title="Spécial:Pages liées/Prérequis">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=100" title="Spécial:Pages liées/Prérequis">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=250" title="Spécial:Pages liées/Prérequis">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=500" title="Spécial:Pages liées/Prérequis">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="Prérequis.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.232 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Prérequis.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_liées/Prérequis.orig @@ -0,0 +1,180 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Pages qui pointent vers « Prérequis » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Whatlinkshere"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_liées"; + var wgTitle = "Pages liées"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_liées skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages qui pointent vers « Prérequis »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Pr%C3%A9requis&redirect=no" title="Prérequis">Prérequis</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5"><input name="title" type="hidden" value="Spécial:Pages liées" /><fieldset> +<legend>Pages liées</legend> +<label for="mw-whatlinkshere-target">Page :</label> <input name="target" size="40" value="Prérequis" id="mw-whatlinkshere-target" /> <label for="namespace">Espace de noms :</label> <select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input type="submit" value="Lister" /></fieldset></form> +<fieldset> +<legend>Filtres</legend> +<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&hidetrans=1" title="Spécial:Pages liées/Prérequis">masquer les inclusions</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&hidelinks=1" title="Spécial:Pages liées/Prérequis">masquer les liens</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&hideredirs=1" title="Spécial:Pages liées/Prérequis">masquer les redirections</a> +</fieldset> +<p>Les pages ci-dessous contiennent un lien vers <b><a href="/Pr%C3%A9requis" title="Prérequis">Prérequis</a></b> : +</p>Voir (50 précédentes) (50 suivantes) (<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=20" title="Spécial:Pages liées/Prérequis">20</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=50" title="Spécial:Pages liées/Prérequis">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=100" title="Spécial:Pages liées/Prérequis">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=250" title="Spécial:Pages liées/Prérequis">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=500" title="Spécial:Pages liées/Prérequis">500</a>).<ul id="mw-whatlinkshere-list"><li><a href="/Accueil" title="Accueil">Accueil</a> <span class="mw-whatlinkshere-tools">(<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Accueil" title="Spécial:Pages liées">← liens</a>)</span></li> +<li><a href="/Nouveau_D%C3%A9veloppeur" title="Nouveau Développeur">Nouveau Développeur</a> <span class="mw-whatlinkshere-tools">(<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es&target=Nouveau_D%C3%A9veloppeur" title="Spécial:Pages liées">← liens</a>)</span></li> +</ul>Voir (50 précédentes) (50 suivantes) (<a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=20" title="Spécial:Pages liées/Prérequis">20</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=50" title="Spécial:Pages liées/Prérequis">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=100" title="Spécial:Pages liées/Prérequis">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=250" title="Spécial:Pages liées/Prérequis">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis&limit=500" title="Spécial:Pages liées/Prérequis">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_li%C3%A9es" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_li%C3%A9es">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.232 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_spéciales.html b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_spéciales.html @@ -0,0 +1,250 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Pages spéciales - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Specialpages"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_spéciales"; + var wgTitle = "Pages spéciales"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_spéciales skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages spéciales</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./Spécial:Pages_spéciales.html#column-one">Navigation</a>, <a href="./Spécial:Pages_spéciales.html#searchInput">rechercher</a></div> <!-- start content --> + <a name="Rapports_de_maintenance" id="Rapports_de_maintenance"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Rapports de maintenance</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Cat%C3%A9gories_inutilis%C3%A9es" title="Spécial:Catégories inutilisées">Catégories inutilisées</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Cat%C3%A9gories_demand%C3%A9es" title="Spécial:Catégories demandées">Catégories les plus demandées</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Cat%C3%A9gories_sans_cat%C3%A9gorie" title="Spécial:Catégories sans catégorie">Catégories non catégorisées</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Doubles_redirections" title="Spécial:Doubles redirections">Doubles redirections</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Fichiers_demand%C3%A9s" title="Spécial:Fichiers demandés">Fichiers les plus désirés</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Images_sans_cat%C3%A9gorie" title="Spécial:Images sans catégorie">Fichiers non catégorisés</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Images_inutilis%C3%A9es" title="Spécial:Images inutilisées">Fichiers orphelins</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Mod%C3%A8les_demand%C3%A9s" title="Spécial:Modèles demandés">Modèles demandés</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Mod%C3%A8les_inutilis%C3%A9s" title="Spécial:Modèles inutilisés">Modèles inutilisés</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Mod%C3%A8les_sans_cat%C3%A9gorie" title="Spécial:Modèles sans catégorie">Modèles sans catégorie</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_courtes" title="Spécial:Pages courtes">Pages courtes</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_en_impasse" title="Spécial:Pages en impasse">Pages en impasse</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Articles_les_moins_modifi%C3%A9s" title="Spécial:Articles les moins modifiés">Pages les moins modifiées</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Anciennes_pages" title="Spécial:Anciennes pages">Pages les plus anciennement modifiées</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_demand%C3%A9es" title="Spécial:Pages demandées">Pages les plus demandées</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_longues" title="Spécial:Pages longues">Pages longues</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_sans_cat%C3%A9gorie" title="Spécial:Pages sans catégorie">Pages non catégorisées</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_orphelines" title="Spécial:Pages orphelines">Pages orphelines</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_prot%C3%A9g%C3%A9es" title="Spécial:Pages protégées">Pages protégées</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Sans_interwiki" title="Spécial:Sans interwiki">Pages sans liens inter-langues</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Redirections_cass%C3%A9es" title="Spécial:Redirections cassées">Redirections cassées</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Titres_prot%C3%A9g%C3%A9s" title="Spécial:Titres protégés">Titres protégés</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Listes_de_pages" id="Listes_de_pages"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Listes de pages</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Cat%C3%A9gories" title="Spécial:Catégories">Catégories</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Liste_des_redirections" title="Spécial:Liste des redirections">Liste des redirections</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Homonymie" title="Spécial:Homonymie">Pages d’homonymie</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Toutes_les_pages" title="Spécial:Toutes les pages">Toutes les pages</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Index" title="Spécial:Index">Toutes les pages débutant par...</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="S.E2.80.99identifier_.2F_s.E2.80.99inscrire" id="S.E2.80.99identifier_.2F_s.E2.80.99inscrire"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">S’identifier / s’inscrire</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">Créer un compte ou se connecter</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Utilisateurs_et_droits_rattach.C3.A9s" id="Utilisateurs_et_droits_rattach.C3.A9s"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Utilisateurs et droits rattachés</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Utilisateurs_bloqu%C3%A9s" title="Spécial:Utilisateurs bloqués">Adresses IP et utilisateurs bloqués</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:R%C3%A9initialisation_du_mot_de_passe" title="Spécial:Réinitialisation du mot de passe">Changer le mot de passe</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions" title="Spécial:Contributions">Contributions de l’utilisateur</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Liste_des_groupes_utilisateur" title="Spécial:Liste des groupes utilisateur">Droits des groupes d’utilisateurs</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Liste_des_utilisateurs" title="Spécial:Liste des utilisateurs">Liste des utilisateurs</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pr%C3%A9f%C3%A9rences" title="Spécial:Préférences">Préférences</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Modifications_r.C3.A9centes_et_journaux" id="Modifications_r.C3.A9centes_et_journaux"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Modifications récentes et journaux</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Tags" title="Spécial:Tags">Balises des modifications valides</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Nouvelles_images" title="Spécial:Nouvelles images">Galerie des nouveaux fichiers</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Journal" title="Spécial:Journal">Journaux d’opérations</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Liste_de_suivi" title="Spécial:Liste de suivi">Liste de suivi</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="./Spécial:Modifications_récentes.html" title="Spécial:Modifications récentes">Modifications récentes</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Nouvelles_pages" title="Spécial:Nouvelles pages">Nouvelles pages</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens" title="Spécial:Suivi des liens">Suivi des pages liées</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Rapports_et_t.C3.A9l.C3.A9versements_de_fichiers_m.C3.A9dias" id="Rapports_et_t.C3.A9l.C3.A9versements_de_fichiers_m.C3.A9dias"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Rapports et téléversements de fichiers médias</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Chemin_du_fichier" title="Spécial:Chemin du fichier">Chemin d’accès du fichier</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Liste_des_images" title="Spécial:Liste des images">Liste de fichiers</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Recherche_fichier_en_double" title="Spécial:Recherche fichier en double">Recherche des copies de fichiers identiques</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Recherche_MIME" title="Spécial:Recherche MIME">Recherche par type de contenu MIME</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:T%C3%A9l%C3%A9chargement" title="Spécial:Téléchargement">Téléverser un fichier</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Donn.C3.A9es_du_wiki_et_outils" id="Donn.C3.A9es_du_wiki_et_outils"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Données du wiki et outils</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Messages_syst%C3%A8me" title="Spécial:Messages système">Messages système</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_les_plus_visit%C3%A9es" title="Spécial:Pages les plus visitées">Pages les plus consultées</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Statistiques" title="Spécial:Statistiques">Statistiques</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Version" title="Spécial:Version">Version</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Pages_sp.C3.A9ciales_redirig.C3.A9es" id="Pages_sp.C3.A9ciales_redirig.C3.A9es"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Pages spéciales redirigées</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Recherche_de_liens" title="Spécial:Recherche de liens">Liens externes</a></li> +<li><a href="./Spécial:Page_au_hasard.html" title="Spécial:Page au hasard">Page au hasard</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Redirection_au_hasard" title="Spécial:Redirection au hasard">Page de redirection au hasard</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Recherche" title="Spécial:Recherche">Rechercher</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Pages_d.E2.80.99utilisation_intensive" id="Pages_d.E2.80.99utilisation_intensive"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Pages d’utilisation intensive</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Cat%C3%A9gories_les_plus_utilis%C3%A9es" title="Spécial:Catégories les plus utilisées">Catégories les plus utilisées</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Images_les_plus_utilis%C3%A9es" title="Spécial:Images les plus utilisées">Fichiers les plus utilisés</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Mod%C3%A8les_les_plus_utilis%C3%A9s" title="Spécial:Modèles les plus utilisés">Modèles les plus utilisés</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_les_plus_li%C3%A9es" title="Spécial:Pages les plus liées">Pages les plus liées</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Articles_les_plus_modifi%C3%A9s" title="Spécial:Articles les plus modifiés">Pages les plus modifiées</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Plus_categoris%C3%A9es" title="Spécial:Plus categorisées">Pages utilisant le plus de catégories</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Outils_pour_les_pages" id="Outils_pour_les_pages"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Outils pour les pages</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Exporter" title="Spécial:Exporter">Exporter des pages</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es" title="Spécial:Pages liées">Pages liées</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Autres_pages_sp.C3.A9ciales" id="Autres_pages_sp.C3.A9ciales"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Autres pages spéciales</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">Convertisseur OpenID</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Ouvrages_de_r%C3%A9f%C3%A9rence" title="Spécial:Ouvrages de référence">Ouvrages de référence</a></li> +<li><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin" title="Spécial:OpenIDLogin">Se connecter avec OpenID</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<div class="printfooter"> +Récupérée de « <a href="./Spécial:Pages_spéciales.html">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_sp%C3%A9ciales</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./Spécial:Pages_spéciales.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_sp%C3%A9ciales">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.415 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Pages_spéciales.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Pages_spéciales.orig @@ -0,0 +1,250 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Pages spéciales - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Specialpages"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Pages_spéciales"; + var wgTitle = "Pages spéciales"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Pages_spéciales skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Pages spéciales</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <a name="Rapports_de_maintenance" id="Rapports_de_maintenance"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Rapports de maintenance</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="/Sp%C3%A9cial:Cat%C3%A9gories_inutilis%C3%A9es" title="Spécial:Catégories inutilisées">Catégories inutilisées</a></li> +<li><a href="/Sp%C3%A9cial:Cat%C3%A9gories_demand%C3%A9es" title="Spécial:Catégories demandées">Catégories les plus demandées</a></li> +<li><a href="/Sp%C3%A9cial:Cat%C3%A9gories_sans_cat%C3%A9gorie" title="Spécial:Catégories sans catégorie">Catégories non catégorisées</a></li> +<li><a href="/Sp%C3%A9cial:Doubles_redirections" title="Spécial:Doubles redirections">Doubles redirections</a></li> +<li><a href="/Sp%C3%A9cial:Fichiers_demand%C3%A9s" title="Spécial:Fichiers demandés">Fichiers les plus désirés</a></li> +<li><a href="/Sp%C3%A9cial:Images_sans_cat%C3%A9gorie" title="Spécial:Images sans catégorie">Fichiers non catégorisés</a></li> +<li><a href="/Sp%C3%A9cial:Images_inutilis%C3%A9es" title="Spécial:Images inutilisées">Fichiers orphelins</a></li> +<li><a href="/Sp%C3%A9cial:Mod%C3%A8les_demand%C3%A9s" title="Spécial:Modèles demandés">Modèles demandés</a></li> +<li><a href="/Sp%C3%A9cial:Mod%C3%A8les_inutilis%C3%A9s" title="Spécial:Modèles inutilisés">Modèles inutilisés</a></li> +<li><a href="/Sp%C3%A9cial:Mod%C3%A8les_sans_cat%C3%A9gorie" title="Spécial:Modèles sans catégorie">Modèles sans catégorie</a></li> +<li><a href="/Sp%C3%A9cial:Pages_courtes" title="Spécial:Pages courtes">Pages courtes</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="/Sp%C3%A9cial:Pages_en_impasse" title="Spécial:Pages en impasse">Pages en impasse</a></li> +<li><a href="/Sp%C3%A9cial:Articles_les_moins_modifi%C3%A9s" title="Spécial:Articles les moins modifiés">Pages les moins modifiées</a></li> +<li><a href="/Sp%C3%A9cial:Anciennes_pages" title="Spécial:Anciennes pages">Pages les plus anciennement modifiées</a></li> +<li><a href="/Sp%C3%A9cial:Pages_demand%C3%A9es" title="Spécial:Pages demandées">Pages les plus demandées</a></li> +<li><a href="/Sp%C3%A9cial:Pages_longues" title="Spécial:Pages longues">Pages longues</a></li> +<li><a href="/Sp%C3%A9cial:Pages_sans_cat%C3%A9gorie" title="Spécial:Pages sans catégorie">Pages non catégorisées</a></li> +<li><a href="/Sp%C3%A9cial:Pages_orphelines" title="Spécial:Pages orphelines">Pages orphelines</a></li> +<li><a href="/Sp%C3%A9cial:Pages_prot%C3%A9g%C3%A9es" title="Spécial:Pages protégées">Pages protégées</a></li> +<li><a href="/Sp%C3%A9cial:Sans_interwiki" title="Spécial:Sans interwiki">Pages sans liens inter-langues</a></li> +<li><a href="/Sp%C3%A9cial:Redirections_cass%C3%A9es" title="Spécial:Redirections cassées">Redirections cassées</a></li> +<li><a href="/Sp%C3%A9cial:Titres_prot%C3%A9g%C3%A9s" title="Spécial:Titres protégés">Titres protégés</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Listes_de_pages" id="Listes_de_pages"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Listes de pages</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="/Sp%C3%A9cial:Cat%C3%A9gories" title="Spécial:Catégories">Catégories</a></li> +<li><a href="/Sp%C3%A9cial:Liste_des_redirections" title="Spécial:Liste des redirections">Liste des redirections</a></li> +<li><a href="/Sp%C3%A9cial:Homonymie" title="Spécial:Homonymie">Pages d’homonymie</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="/Sp%C3%A9cial:Toutes_les_pages" title="Spécial:Toutes les pages">Toutes les pages</a></li> +<li><a href="/Sp%C3%A9cial:Index" title="Spécial:Index">Toutes les pages débutant par...</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="S.E2.80.99identifier_.2F_s.E2.80.99inscrire" id="S.E2.80.99identifier_.2F_s.E2.80.99inscrire"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">S’identifier / s’inscrire</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">Créer un compte ou se connecter</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Utilisateurs_et_droits_rattach.C3.A9s" id="Utilisateurs_et_droits_rattach.C3.A9s"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Utilisateurs et droits rattachés</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="/Sp%C3%A9cial:Utilisateurs_bloqu%C3%A9s" title="Spécial:Utilisateurs bloqués">Adresses IP et utilisateurs bloqués</a></li> +<li><a href="/Sp%C3%A9cial:R%C3%A9initialisation_du_mot_de_passe" title="Spécial:Réinitialisation du mot de passe">Changer le mot de passe</a></li> +<li><a href="/Sp%C3%A9cial:Contributions" title="Spécial:Contributions">Contributions de l’utilisateur</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="/Sp%C3%A9cial:Liste_des_groupes_utilisateur" title="Spécial:Liste des groupes utilisateur">Droits des groupes d’utilisateurs</a></li> +<li><a href="/Sp%C3%A9cial:Liste_des_utilisateurs" title="Spécial:Liste des utilisateurs">Liste des utilisateurs</a></li> +<li><a href="/Sp%C3%A9cial:Pr%C3%A9f%C3%A9rences" title="Spécial:Préférences">Préférences</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Modifications_r.C3.A9centes_et_journaux" id="Modifications_r.C3.A9centes_et_journaux"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Modifications récentes et journaux</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="/Sp%C3%A9cial:Tags" title="Spécial:Tags">Balises des modifications valides</a></li> +<li><a href="/Sp%C3%A9cial:Nouvelles_images" title="Spécial:Nouvelles images">Galerie des nouveaux fichiers</a></li> +<li><a href="/Sp%C3%A9cial:Journal" title="Spécial:Journal">Journaux d’opérations</a></li> +<li><a href="/Sp%C3%A9cial:Liste_de_suivi" title="Spécial:Liste de suivi">Liste de suivi</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Spécial:Modifications récentes">Modifications récentes</a></li> +<li><a href="/Sp%C3%A9cial:Nouvelles_pages" title="Spécial:Nouvelles pages">Nouvelles pages</a></li> +<li><a href="/Sp%C3%A9cial:Suivi_des_liens" title="Spécial:Suivi des liens">Suivi des pages liées</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Rapports_et_t.C3.A9l.C3.A9versements_de_fichiers_m.C3.A9dias" id="Rapports_et_t.C3.A9l.C3.A9versements_de_fichiers_m.C3.A9dias"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Rapports et téléversements de fichiers médias</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="/Sp%C3%A9cial:Chemin_du_fichier" title="Spécial:Chemin du fichier">Chemin d’accès du fichier</a></li> +<li><a href="/Sp%C3%A9cial:Liste_des_images" title="Spécial:Liste des images">Liste de fichiers</a></li> +<li><a href="/Sp%C3%A9cial:Recherche_fichier_en_double" title="Spécial:Recherche fichier en double">Recherche des copies de fichiers identiques</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="/Sp%C3%A9cial:Recherche_MIME" title="Spécial:Recherche MIME">Recherche par type de contenu MIME</a></li> +<li><a href="/Sp%C3%A9cial:T%C3%A9l%C3%A9chargement" title="Spécial:Téléchargement">Téléverser un fichier</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Donn.C3.A9es_du_wiki_et_outils" id="Donn.C3.A9es_du_wiki_et_outils"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Données du wiki et outils</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="/Sp%C3%A9cial:Messages_syst%C3%A8me" title="Spécial:Messages système">Messages système</a></li> +<li><a href="/Sp%C3%A9cial:Pages_les_plus_visit%C3%A9es" title="Spécial:Pages les plus visitées">Pages les plus consultées</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="/Sp%C3%A9cial:Statistiques" title="Spécial:Statistiques">Statistiques</a></li> +<li><a href="/Sp%C3%A9cial:Version" title="Spécial:Version">Version</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Pages_sp.C3.A9ciales_redirig.C3.A9es" id="Pages_sp.C3.A9ciales_redirig.C3.A9es"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Pages spéciales redirigées</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="/Sp%C3%A9cial:Recherche_de_liens" title="Spécial:Recherche de liens">Liens externes</a></li> +<li><a href="/Sp%C3%A9cial:Page_au_hasard" title="Spécial:Page au hasard">Page au hasard</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="/Sp%C3%A9cial:Redirection_au_hasard" title="Spécial:Redirection au hasard">Page de redirection au hasard</a></li> +<li><a href="/Sp%C3%A9cial:Recherche" title="Spécial:Recherche">Rechercher</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Pages_d.E2.80.99utilisation_intensive" id="Pages_d.E2.80.99utilisation_intensive"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Pages d’utilisation intensive</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="/Sp%C3%A9cial:Cat%C3%A9gories_les_plus_utilis%C3%A9es" title="Spécial:Catégories les plus utilisées">Catégories les plus utilisées</a></li> +<li><a href="/Sp%C3%A9cial:Images_les_plus_utilis%C3%A9es" title="Spécial:Images les plus utilisées">Fichiers les plus utilisés</a></li> +<li><a href="/Sp%C3%A9cial:Mod%C3%A8les_les_plus_utilis%C3%A9s" title="Spécial:Modèles les plus utilisés">Modèles les plus utilisés</a></li> +</ul></td><td width='10%'></td><td width='30%' valign='top'><ul><li><a href="/Sp%C3%A9cial:Pages_les_plus_li%C3%A9es" title="Spécial:Pages les plus liées">Pages les plus liées</a></li> +<li><a href="/Sp%C3%A9cial:Articles_les_plus_modifi%C3%A9s" title="Spécial:Articles les plus modifiés">Pages les plus modifiées</a></li> +<li><a href="/Sp%C3%A9cial:Plus_categoris%C3%A9es" title="Spécial:Plus categorisées">Pages utilisant le plus de catégories</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Outils_pour_les_pages" id="Outils_pour_les_pages"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Outils pour les pages</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="/Sp%C3%A9cial:Exporter" title="Spécial:Exporter">Exporter des pages</a></li> +<li><a href="/Sp%C3%A9cial:Pages_li%C3%A9es" title="Spécial:Pages liées">Pages liées</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<a name="Autres_pages_sp.C3.A9ciales" id="Autres_pages_sp.C3.A9ciales"></a><h4 class="mw-specialpagesgroup"> <span class="mw-headline">Autres pages spéciales</span></h4> +<table style='width: 100%;' class='mw-specialpages-table'><tr><td width='30%' valign='top'><ul> +<li><a href="/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">Convertisseur OpenID</a></li> +<li><a href="/Sp%C3%A9cial:Ouvrages_de_r%C3%A9f%C3%A9rence" title="Spécial:Ouvrages de référence">Ouvrages de référence</a></li> +<li><a href="/Sp%C3%A9cial:OpenIDLogin" title="Spécial:OpenIDLogin">Se connecter avec OpenID</a></li> +</ul></td><td width='30%' valign='top'></td></tr></table> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_sp%C3%A9ciales">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_sp%C3%A9ciales</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Pages_sp%C3%A9ciales">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.415 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Accueil.html b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Accueil.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Accueil" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Accueil" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Suivi des pages associées à « Accueil » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Accueil »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&redirect=no" title="Accueil">Accueil</a></div> + <div id="jump-to-nav">Aller à : <a href="Accueil.html#column-one">Navigation</a>, <a href="Accueil.html#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Accueil" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Accueil" title="Spécial:Suivi des liens">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Accueil" title="Spécial:Suivi des liens">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Accueil" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Accueil" title="Spécial:Suivi des liens">1</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Accueil" title="Spécial:Suivi des liens">3</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Accueil" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Accueil" title="Spécial:Suivi des liens">14</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Accueil" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Accueil" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Accueil" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Accueil" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Accueil" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Accueil" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113701&target=Accueil" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="https://wiki.gruntnetwork.com/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Accueil" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="Accueil.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Accueil" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Accueil" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.347 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Accueil.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Accueil.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Accueil" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Accueil" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Suivi des pages associées à « Accueil » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Accueil »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Accueil&redirect=no" title="Accueil">Accueil</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Accueil" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Accueil" title="Spécial:Suivi des liens">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Accueil" title="Spécial:Suivi des liens">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Accueil" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Accueil" title="Spécial:Suivi des liens">1</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Accueil" title="Spécial:Suivi des liens">3</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Accueil" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Accueil" title="Spécial:Suivi des liens">14</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Accueil" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Accueil" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Accueil" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Accueil" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Accueil" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Accueil" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113701&target=Accueil" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Accueil" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Suivi_des_liens/Accueil" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Accueil" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Accueil" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.347 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Affichage_Graphique.html b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Affichage_Graphique.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Affichage_Graphique" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Affichage_Graphique" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Suivi des pages associées à « Affichage Graphique » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Affichage Graphique »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&redirect=no" title="Affichage Graphique">Affichage Graphique</a></div> + <div id="jump-to-nav">Aller à : <a href="Affichage_Graphique.html#column-one">Navigation</a>, <a href="Affichage_Graphique.html#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Affichage_Graphique" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Affichage_Graphique" title="Spécial:Suivi des liens">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Affichage_Graphique" title="Spécial:Suivi des liens">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Affichage_Graphique" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Affichage_Graphique" title="Spécial:Suivi des liens">1</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Affichage_Graphique" title="Spécial:Suivi des liens">3</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Affichage_Graphique" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Affichage_Graphique" title="Spécial:Suivi des liens">14</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Affichage_Graphique" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Affichage_Graphique" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Affichage_Graphique" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Affichage_Graphique" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Affichage_Graphique" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Affichage_Graphique" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113759&target=Affichage_Graphique" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="https://wiki.gruntnetwork.com/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Affichage Graphique" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="Affichage_Graphique.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Affichage_Graphique" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Affichage_Graphique" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.270 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Affichage_Graphique.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Affichage_Graphique.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Affichage_Graphique" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Affichage_Graphique" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Suivi des pages associées à « Affichage Graphique » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Affichage Graphique »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Affichage_Graphique&redirect=no" title="Affichage Graphique">Affichage Graphique</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Affichage_Graphique" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Affichage_Graphique" title="Spécial:Suivi des liens">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Affichage_Graphique" title="Spécial:Suivi des liens">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Affichage_Graphique" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Affichage_Graphique" title="Spécial:Suivi des liens">1</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Affichage_Graphique" title="Spécial:Suivi des liens">3</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Affichage_Graphique" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Affichage_Graphique" title="Spécial:Suivi des liens">14</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Affichage_Graphique" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Affichage_Graphique" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Affichage_Graphique" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Affichage_Graphique" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Affichage_Graphique" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Affichage_Graphique" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113759&target=Affichage_Graphique" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Affichage Graphique" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Suivi_des_liens/Affichage_Graphique" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Affichage_Graphique" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Affichage_Graphique" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.270 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Conventions.html b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Conventions.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Conventions" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Conventions" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Suivi des pages associées à « Conventions » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Conventions »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&redirect=no" title="Conventions">Conventions</a></div> + <div id="jump-to-nav">Aller à : <a href="Conventions.html#column-one">Navigation</a>, <a href="Conventions.html#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Conventions" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Conventions" title="Spécial:Suivi des liens">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Conventions" title="Spécial:Suivi des liens">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Conventions" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Conventions" title="Spécial:Suivi des liens">1</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Conventions" title="Spécial:Suivi des liens">3</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Conventions" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Conventions" title="Spécial:Suivi des liens">14</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Conventions" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Conventions" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Conventions" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Conventions" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Conventions" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Conventions" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113720&target=Conventions" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="https://wiki.gruntnetwork.com/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Conventions" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="Conventions.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Conventions" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Conventions" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.262 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Conventions.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Conventions.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Conventions" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Conventions" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Suivi des pages associées à « Conventions » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Conventions »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Conventions&redirect=no" title="Conventions">Conventions</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Conventions" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Conventions" title="Spécial:Suivi des liens">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Conventions" title="Spécial:Suivi des liens">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Conventions" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Conventions" title="Spécial:Suivi des liens">1</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Conventions" title="Spécial:Suivi des liens">3</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Conventions" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Conventions" title="Spécial:Suivi des liens">14</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Conventions" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Conventions" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Conventions" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Conventions" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Conventions" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Conventions" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113720&target=Conventions" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Conventions" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Suivi_des_liens/Conventions" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Conventions" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Conventions" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.262 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Accueil.html b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Accueil.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Discussion%3AAccueil" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Discussion%3AAccueil" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Suivi des pages associées à « Discussion:Accueil » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Discussion:Accueil »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&redirect=no" title="Discussion:Accueil">Discussion:Accueil</a></div> + <div id="jump-to-nav">Aller à : <a href="./Discussion:Accueil.html#column-one">Navigation</a>, <a href="./Discussion:Accueil.html#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Discussion%3AAccueil" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">1</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">3</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Discussion%3AAccueil" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">14</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113743&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="https://wiki.gruntnetwork.com/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Discussion:Accueil" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./Discussion:Accueil.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Discussion%3AAccueil" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Discussion%3AAccueil" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.256 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Accueil.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Accueil.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Discussion%3AAccueil" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Discussion%3AAccueil" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Suivi des pages associées à « Discussion:Accueil » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Discussion:Accueil »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Discussion:Accueil&redirect=no" title="Discussion:Accueil">Discussion:Accueil</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Discussion%3AAccueil" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">1</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">3</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Discussion%3AAccueil" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">14</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113743&target=Discussion%3AAccueil" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Discussion:Accueil" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Suivi_des_liens/Discussion:Accueil" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Discussion%3AAccueil" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Discussion%3AAccueil" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.256 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Liens.html b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Liens.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Discussion%3ALiens" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Discussion%3ALiens" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Suivi des pages associées à « Discussion:Liens » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Discussion:Liens »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&redirect=no" title="Discussion:Liens">Discussion:Liens</a></div> + <div id="jump-to-nav">Aller à : <a href="./Discussion:Liens.html#column-one">Navigation</a>, <a href="./Discussion:Liens.html#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Discussion%3ALiens" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Discussion%3ALiens" title="Spécial:Suivi des liens">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Discussion%3ALiens" title="Spécial:Suivi des liens">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Discussion%3ALiens" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Discussion%3ALiens" title="Spécial:Suivi des liens">1</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Discussion%3ALiens" title="Spécial:Suivi des liens">3</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Discussion%3ALiens" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Discussion%3ALiens" title="Spécial:Suivi des liens">14</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Discussion%3ALiens" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Discussion%3ALiens" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Discussion%3ALiens" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Discussion%3ALiens" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Discussion%3ALiens" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Discussion%3ALiens" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113803&target=Discussion%3ALiens" title="Spécial:Suivi des liens">4 mai 2023 à 11:38</a>. +<hr /> +<form action="https://wiki.gruntnetwork.com/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Discussion:Liens" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./Discussion:Liens.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Discussion%3ALiens" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Discussion%3ALiens" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.267 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Liens.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Liens.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Discussion%3ALiens" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Discussion%3ALiens" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Suivi des pages associées à « Discussion:Liens » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Discussion:Liens »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Discussion:Liens&redirect=no" title="Discussion:Liens">Discussion:Liens</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Discussion%3ALiens" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Discussion%3ALiens" title="Spécial:Suivi des liens">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Discussion%3ALiens" title="Spécial:Suivi des liens">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Discussion%3ALiens" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Discussion%3ALiens" title="Spécial:Suivi des liens">1</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Discussion%3ALiens" title="Spécial:Suivi des liens">3</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Discussion%3ALiens" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Discussion%3ALiens" title="Spécial:Suivi des liens">14</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Discussion%3ALiens" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Discussion%3ALiens" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Discussion%3ALiens" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Discussion%3ALiens" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Discussion%3ALiens" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Discussion%3ALiens" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113803&target=Discussion%3ALiens" title="Spécial:Suivi des liens">4 mai 2023 à 11:38</a>. +<hr /> +<form action="/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Discussion:Liens" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Suivi_des_liens/Discussion:Liens" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Discussion%3ALiens" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Discussion%3ALiens" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.267 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Environnement_de_programmation.html b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Environnement_de_programmation.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Environnement_de_programmation" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Environnement_de_programmation" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Suivi des pages associées à « Environnement de programmation » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Environnement de programmation »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&redirect=no" title="Environnement de programmation">Environnement de programmation</a></div> + <div id="jump-to-nav">Aller à : <a href="Environnement_de_programmation.html#column-one">Navigation</a>, <a href="Environnement_de_programmation.html#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Environnement_de_programmation" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Environnement_de_programmation" title="Spécial:Suivi des liens">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Environnement_de_programmation" title="Spécial:Suivi des liens">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Environnement_de_programmation" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Environnement_de_programmation" title="Spécial:Suivi des liens">1</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Environnement_de_programmation" title="Spécial:Suivi des liens">3</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Environnement_de_programmation" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Environnement_de_programmation" title="Spécial:Suivi des liens">14</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Environnement_de_programmation" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Environnement_de_programmation" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Environnement_de_programmation" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Environnement_de_programmation" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Environnement_de_programmation" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Environnement_de_programmation" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113727&target=Environnement_de_programmation" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="https://wiki.gruntnetwork.com/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Environnement de programmation" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="Environnement_de_programmation.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Environnement_de_programmation" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Environnement_de_programmation" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.250 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Environnement_de_programmation.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Environnement_de_programmation.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Environnement_de_programmation" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Environnement_de_programmation" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Suivi des pages associées à « Environnement de programmation » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Environnement de programmation »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Environnement_de_programmation&redirect=no" title="Environnement de programmation">Environnement de programmation</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Environnement_de_programmation" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Environnement_de_programmation" title="Spécial:Suivi des liens">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Environnement_de_programmation" title="Spécial:Suivi des liens">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Environnement_de_programmation" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Environnement_de_programmation" title="Spécial:Suivi des liens">1</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Environnement_de_programmation" title="Spécial:Suivi des liens">3</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Environnement_de_programmation" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Environnement_de_programmation" title="Spécial:Suivi des liens">14</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Environnement_de_programmation" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Environnement_de_programmation" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Environnement_de_programmation" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Environnement_de_programmation" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Environnement_de_programmation" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Environnement_de_programmation" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113727&target=Environnement_de_programmation" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Environnement de programmation" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Suivi_des_liens/Environnement_de_programmation" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Environnement_de_programmation" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Environnement_de_programmation" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.250 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/GRUB.html b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/GRUB.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=GRUB" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=GRUB" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Suivi des pages associées à « GRUB » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « GRUB »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&redirect=no" title="GRUB">GRUB</a></div> + <div id="jump-to-nav">Aller à : <a href="GRUB.html#column-one">Navigation</a>, <a href="GRUB.html#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=GRUB" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=GRUB" title="Spécial:Suivi des liens">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=GRUB" title="Spécial:Suivi des liens">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=GRUB" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=GRUB" title="Spécial:Suivi des liens">1</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=GRUB" title="Spécial:Suivi des liens">3</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=GRUB" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=GRUB" title="Spécial:Suivi des liens">14</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=GRUB" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=GRUB" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=GRUB" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=GRUB" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=GRUB" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=GRUB" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113753&target=GRUB" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="https://wiki.gruntnetwork.com/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="GRUB" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="GRUB.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=GRUB" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=GRUB" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.256 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/GRUB.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/GRUB.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=GRUB" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=GRUB" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Suivi des pages associées à « GRUB » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « GRUB »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=GRUB&redirect=no" title="GRUB">GRUB</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=GRUB" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=GRUB" title="Spécial:Suivi des liens">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=GRUB" title="Spécial:Suivi des liens">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=GRUB" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=GRUB" title="Spécial:Suivi des liens">1</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=GRUB" title="Spécial:Suivi des liens">3</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=GRUB" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=GRUB" title="Spécial:Suivi des liens">14</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=GRUB" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=GRUB" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=GRUB" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=GRUB" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=GRUB" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=GRUB" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113753&target=GRUB" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="GRUB" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Suivi_des_liens/GRUB" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=GRUB" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=GRUB" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.256 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Liens.html b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Liens.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Liens" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Liens" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Suivi des pages associées à « Liens » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Liens »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Liens&redirect=no" title="Liens">Liens</a></div> + <div id="jump-to-nav">Aller à : <a href="Liens.html#column-one">Navigation</a>, <a href="Liens.html#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Liens" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Liens" title="Spécial:Suivi des liens">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Liens" title="Spécial:Suivi des liens">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Liens" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Liens" title="Spécial:Suivi des liens">1</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Liens" title="Spécial:Suivi des liens">3</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Liens" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Liens" title="Spécial:Suivi des liens">14</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Liens" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Liens" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Liens" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Liens" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Liens" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Liens" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113733&target=Liens" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="https://wiki.gruntnetwork.com/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Liens" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="Liens.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Liens" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Liens" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.258 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Liens.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Liens.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Liens" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Liens" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Suivi des pages associées à « Liens » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Liens »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Liens&redirect=no" title="Liens">Liens</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Liens" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Liens" title="Spécial:Suivi des liens">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Liens" title="Spécial:Suivi des liens">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Liens" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Liens" title="Spécial:Suivi des liens">1</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Liens" title="Spécial:Suivi des liens">3</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Liens" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Liens" title="Spécial:Suivi des liens">14</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Liens" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Liens" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Liens" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Liens" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Liens" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Liens" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113733&target=Liens" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Liens" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Suivi_des_liens/Liens" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Liens" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Liens" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.258 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Notes.html b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Notes.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Notes" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Notes" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Suivi des pages associées à « Notes » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Notes »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Notes&redirect=no" title="Notes">Notes</a></div> + <div id="jump-to-nav">Aller à : <a href="Notes.html#column-one">Navigation</a>, <a href="Notes.html#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Notes" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Notes" title="Spécial:Suivi des liens">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Notes" title="Spécial:Suivi des liens">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Notes" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Notes" title="Spécial:Suivi des liens">1</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Notes" title="Spécial:Suivi des liens">3</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Notes" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Notes" title="Spécial:Suivi des liens">14</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Notes" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Notes" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Notes" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Notes" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Notes" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Notes" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113739&target=Notes" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="https://wiki.gruntnetwork.com/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Notes" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="Notes.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Notes" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Notes" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.361 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Notes.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Notes.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Notes" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Notes" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Suivi des pages associées à « Notes » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Notes »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Notes&redirect=no" title="Notes">Notes</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Notes" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Notes" title="Spécial:Suivi des liens">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Notes" title="Spécial:Suivi des liens">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Notes" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Notes" title="Spécial:Suivi des liens">1</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Notes" title="Spécial:Suivi des liens">3</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Notes" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Notes" title="Spécial:Suivi des liens">14</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Notes" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Notes" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Notes" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Notes" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Notes" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Notes" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113739&target=Notes" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Notes" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Suivi_des_liens/Notes" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Notes" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Notes" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.361 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Prérequis.html b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Prérequis.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="../opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Pr%C3%A9requis" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Pr%C3%A9requis" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="../index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Suivi des pages associées à « Prérequis » - Gruntnetwork</title> + <link rel="stylesheet" href="../skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="../skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="../index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="../skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="../skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="../index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Prérequis »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&redirect=no" title="Prérequis">Prérequis</a></div> + <div id="jump-to-nav">Aller à : <a href="Prérequis.html#column-one">Navigation</a>, <a href="Prérequis.html#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Pr%C3%A9requis" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">1</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">3</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Pr%C3%A9requis" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">14</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113713&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="https://wiki.gruntnetwork.com/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Prérequis" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="Prérequis.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(../skins/common/images/wiki.png);" href="../index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="../index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="../Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="../Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Pr%C3%A9requis" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Pr%C3%A9requis" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="../Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="../skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="../skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.289 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Prérequis.orig b/wget/https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Prérequis.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Pr%C3%A9requis" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Spécial:Suivi des liens »" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Pr%C3%A9requis" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Suivi des pages associées à « Prérequis » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Recentchangeslinked"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Suivi_des_liens"; + var wgTitle = "Suivi des liens"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Suivi_des_liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Suivi des pages associées à « Prérequis »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">← <a href="/index.php5?title=Pr%C3%A9requis&redirect=no" title="Prérequis">Prérequis</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <div class="mw-specialpage-summary"> +Cette page spéciale montre les modifications récentes sur les pages qui sont liées. Les pages de votre liste de suivi sont <b>en gras</b>.</div> +<fieldset class="rcoptions"> +<legend>Options des modifications récentes</legend> +Afficher les <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=50&target=Pr%C3%A9requis" title="Spécial:Suivi des liens" style="font-weight: bold;">50</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=100&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">100</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=250&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">250</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&limit=500&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">500</a> dernières modifications effectuées au cours des <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=1&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">1</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=3&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">3</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=7&target=Pr%C3%A9requis" title="Spécial:Suivi des liens" style="font-weight: bold;">7</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=14&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">14</a> | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&days=30&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">30</a> derniers jours<br /><a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideminor=1&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">masquer</a> les modifications mineures | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidebots=0&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">afficher</a> les bots | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideanons=1&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">masquer</a> les utilisateurs anonymes | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hideliu=1&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">masquer</a> les utilisateurs inscrits | <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&hidemyself=1&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">masquer</a> mes modifications.<br />Afficher les nouvelles modifications depuis le <a href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&from=20230504113713&target=Pr%C3%A9requis" title="Spécial:Suivi des liens">4 mai 2023 à 11:37</a>. +<hr /> +<form action="/index.php5"><table class="mw-recentchanges-table"><tr><td class="mw-label"><label for="namespace">Espace de noms :</label></td><td class="mw-input"><select id="namespace" name="namespace" class="namespaceselector"> +<option value="" selected="selected">Tous</option> +<option value="0">(Principal)</option> +<option value="1">Discussion</option> +<option value="2">Utilisateur</option> +<option value="3">Discussion utilisateur</option> +<option value="4">Gruntnetwork</option> +<option value="5">Discussion Gruntnetwork</option> +<option value="6">Fichier</option> +<option value="7">Discussion fichier</option> +<option value="8">MediaWiki</option> +<option value="9">Discussion MediaWiki</option> +<option value="10">Modèle</option> +<option value="11">Discussion modèle</option> +<option value="12">Aide</option> +<option value="13">Discussion aide</option> +<option value="14">Catégorie</option> +<option value="15">Discussion catégorie</option> +</select> <input name="invert" type="checkbox" value="1" id="nsinvert" /> <label for="nsinvert">Inverser la sélection</label></td></tr><tr><td class="mw-label">Nom de la page :</td><td class="mw-input"><input name="target" size="40" value="Prérequis" /><input name="showlinkedto" type="checkbox" value="1" id="showlinkedto" /> <label for="showlinkedto">Afficher les modifications des pages qui comportent un lien vers la page donnée plutôt que l’inverse</label> <input type="submit" value="Lister" /></td></tr></table><input name="title" type="hidden" value="Spécial:Suivi des liens" /></form> +</fieldset> +<p>Il n’y a pas de modification sur les pages liées pendant la période choisie. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/Sp%C3%A9cial:Suivi_des_liens/Pr%C3%A9requis" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Suivi_des_liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Suivi_des_liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=rss&target=Pr%C3%A9requis" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Sp%C3%A9cial:Suivi_des_liens&feed=atom&target=Pr%C3%A9requis" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.289 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.html b/wget/https/wiki.gruntnetwork.com/index.html @@ -0,0 +1,194 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Accueil,Conventions,Environnement de programmation,Liens,Notes,Prérequis" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = "1"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11737; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.html#column-one">Navigation</a>, <a href="index.html#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="index.html#gruntnetwork"><span class="tocnumber">1</span> <span class="toctext">gruntnetwork</span></a></li> +<li class="toclevel-1"><a href="index.html#Nouveau_D.C3.A9veloppeur_.3F"><span class="tocnumber">2</span> <span class="toctext">Nouveau Développeur ?</span></a></li> +<li class="toclevel-1"><a href="index.html#S.27inscrire"><span class="tocnumber">3</span> <span class="toctext">S'inscrire</span></a></li> +<li class="toclevel-1"><a href="index.html#.C3.80_lire"><span class="tocnumber">4</span> <span class="toctext">À lire</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="gruntnetwork" id="gruntnetwork"></a><h2> <span class="mw-headline"> gruntnetwork </span></h2> +<p>gruntnetwork est un système d'exploitation sous licence Affero GPL. Actuellement il est en phase de développement, dans le cadre d'un projet pédagogique à l'Université Montpellier 2. +</p> +<a name="Nouveau_D.C3.A9veloppeur_.3F" id="Nouveau_D.C3.A9veloppeur_.3F"></a><h2> <span class="mw-headline"> Nouveau Développeur ? </span></h2> +<a name="S.27inscrire" id="S.27inscrire"></a><h2> <span class="mw-headline"> S'inscrire </span></h2> +<ul><li> Créez-vous un compte sur <a href="http://tuxfamily.org/fr/subscribe" class="external text" title="http://tuxfamily.org/fr/subscribe" rel="nofollow">TuxFmaily</a> et adhérez au projet gruntnetwork +</li><li> Créez-vous un compte sur le <a href="../../http/wiki.gruntnetwork.com/index.php5%3Ftitle=Special:Connexion&type=signup&returnto=Nouveau_Développeur.html" class="external text" title="http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur" rel="nofollow">wiki</a> +</li><li> Créez-vous un compte sur le <a href="http://tracker.gruntnetwork.com/index.php?do=register" class="external text" title="http://tracker.gruntnetwork.com/index.php?do=register" rel="nofollow">tracker</a> +</li></ul> +<a name=".C3.80_lire" id=".C3.80_lire"></a><h2> <span class="mw-headline"> À lire </span></h2> +<ul><li> <a href="./Spécial:Page_au_hasard.html" title="Prérequis">Prérequis</a> : Un peu de lecture pour les vacances. Si vous ne savez rien sur les sujets listés dans cette page, vous risquez d'être à la traîne. +</li><li> <a href="Conventions.html" title="Conventions">Conventions</a> : À respecter, pour un code homogène. Si vous avez quoi que ce soit à redire dessus, faites-le vite, avant qu'on ait des centaines de lignes à reformater :) +</li><li> <a href="Environnement_de_programmation.html" title="Environnement de programmation">Environnement de programmation</a> : Avec quoi on travaille (Emacs ou Vim + gcc + qemu ou bochs). +</li><li> <a href="http://tracker.gruntnetwork.com/roadmap" class="external text" title="http://tracker.gruntnetwork.com/roadmap" rel="nofollow">Feuille de route</a> : Qui fait quoi, Quand, dans Quel ordre. +</li><li> <a href="Liens.html" title="Liens">Liens</a> : Quand vous ne saurez plus comment faire un truc en assembleur :) +</li></ul> +<p><a href="Notes.html" title="Notes">notes</a> +</p> +<!-- +NewPP limit report +Preprocessor node count: 7/1000000 +Post-expand include size: 1061/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:1-0!1!0!!fr!2!edit=0 and timestamp 20230504062015 --> +<div class="printfooter"> +Récupérée de « <a href="index.html">https://wiki.gruntnetwork.com/Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="index.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="./Discussion:Accueil.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Accueil&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Accueil&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-login"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Accueil.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Accueil.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Accueil.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Accueil.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Accueil&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Accueil&oldid=11737.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 21 juin 2011 à 11:25.<br /></li> + <li id="viewcount">Cette page a été consultée 212 772 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.862 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.html.orig b/wget/https/wiki.gruntnetwork.com/index.html.orig @@ -0,0 +1,194 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="keywords" content="Accueil,Conventions,Environnement de programmation,Liens,Notes,Prérequis" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = "1"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11737; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#gruntnetwork"><span class="tocnumber">1</span> <span class="toctext">gruntnetwork</span></a></li> +<li class="toclevel-1"><a href="#Nouveau_D.C3.A9veloppeur_.3F"><span class="tocnumber">2</span> <span class="toctext">Nouveau Développeur ?</span></a></li> +<li class="toclevel-1"><a href="#S.27inscrire"><span class="tocnumber">3</span> <span class="toctext">S'inscrire</span></a></li> +<li class="toclevel-1"><a href="#.C3.80_lire"><span class="tocnumber">4</span> <span class="toctext">À lire</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="gruntnetwork" id="gruntnetwork"></a><h2> <span class="mw-headline"> gruntnetwork </span></h2> +<p>gruntnetwork est un système d'exploitation sous licence Affero GPL. Actuellement il est en phase de développement, dans le cadre d'un projet pédagogique à l'Université Montpellier 2. +</p> +<a name="Nouveau_D.C3.A9veloppeur_.3F" id="Nouveau_D.C3.A9veloppeur_.3F"></a><h2> <span class="mw-headline"> Nouveau Développeur ? </span></h2> +<a name="S.27inscrire" id="S.27inscrire"></a><h2> <span class="mw-headline"> S'inscrire </span></h2> +<ul><li> Créez-vous un compte sur <a href="http://tuxfamily.org/fr/subscribe" class="external text" title="http://tuxfamily.org/fr/subscribe" rel="nofollow">TuxFmaily</a> et adhérez au projet gruntnetwork +</li><li> Créez-vous un compte sur le <a href="http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur" class="external text" title="http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur" rel="nofollow">wiki</a> +</li><li> Créez-vous un compte sur le <a href="http://tracker.gruntnetwork.com/index.php?do=register" class="external text" title="http://tracker.gruntnetwork.com/index.php?do=register" rel="nofollow">tracker</a> +</li></ul> +<a name=".C3.80_lire" id=".C3.80_lire"></a><h2> <span class="mw-headline"> À lire </span></h2> +<ul><li> <a href="/Pr%C3%A9requis" title="Prérequis">Prérequis</a> : Un peu de lecture pour les vacances. Si vous ne savez rien sur les sujets listés dans cette page, vous risquez d'être à la traîne. +</li><li> <a href="/Conventions" title="Conventions">Conventions</a> : À respecter, pour un code homogène. Si vous avez quoi que ce soit à redire dessus, faites-le vite, avant qu'on ait des centaines de lignes à reformater :) +</li><li> <a href="/Environnement_de_programmation" title="Environnement de programmation">Environnement de programmation</a> : Avec quoi on travaille (Emacs ou Vim + gcc + qemu ou bochs). +</li><li> <a href="http://tracker.gruntnetwork.com/roadmap" class="external text" title="http://tracker.gruntnetwork.com/roadmap" rel="nofollow">Feuille de route</a> : Qui fait quoi, Quand, dans Quel ordre. +</li><li> <a href="/Liens" title="Liens">Liens</a> : Quand vous ne saurez plus comment faire un truc en assembleur :) +</li></ul> +<p><a href="/Notes" title="Notes">notes</a> +</p> +<!-- +NewPP limit report +Preprocessor node count: 7/1000000 +Post-expand include size: 1061/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:1-0!1!0!!fr!2!edit=0 and timestamp 20230504062015 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Accueil">https://wiki.gruntnetwork.com/Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Accueil" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="/Discussion:Accueil" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Accueil&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Accueil&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-login"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Accueil" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Accueil">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Accueil" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Accueil" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Accueil&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Accueil&oldid=11737" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 21 juin 2011 à 11:25.<br /></li> + <li id="viewcount">Cette page a été consultée 212 772 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.862 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=-&action=raw&gen=js&useskin=monobook b/wget/https/wiki.gruntnetwork.com/index.php5?title=-&action=raw&gen=js&useskin=monobook @@ -0,0 +1,9 @@ +/* generated javascript */ +var skin = 'monobook'; +var stylepath = '/skins'; + +/* MediaWiki:Common.js */ +/* Tout JavaScript ici sera chargé avec chaque page accédée par n’importe quel utilisateur. */ + +/* MediaWiki:Monobook.js */ +/* Tout JavaScript ici sera chargé avec les pages accédées par les utilisateurs de l’habillage MonoBook uniquement. */ +\ No newline at end of file diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=-&action=raw&maxage=18000&gen=css.css b/wget/https/wiki.gruntnetwork.com/index.php5?title=-&action=raw&maxage=18000&gen=css.css @@ -0,0 +1,2 @@ +/* generated user stylesheet */ +a.new, #quickbar a.new { color: #CC2200; } diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=creativecommons b/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=creativecommons @@ -0,0 +1,25 @@ +<?xml version='1.0' encoding="UTF-8" ?> +<rdf:RDF xmlns:cc="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <cc:Work rdf:about="https://wiki.gruntnetwork.com/Accueil"> + <dc:title>Accueil</dc:title> + <dc:publisher>Gruntnetwork</dc:publisher> + <dc:language>fr</dc:language> + <dc:type>Text</dc:type> + <dc:format>text/html</dc:format> + <dc:identifier>https://wiki.gruntnetwork.com/Accueil</dc:identifier> + <dc:date>2011-06-21</dc:date> + <dc:creator>Utilisateur non enregistré sur Gruntnetwork</dc:creator> + <dc:rights rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + <cc:license rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + </cc:Work> + <cc:License rdf:about="http://www.gnu.org/copyleft/fdl.html"> + <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> +</rdf:RDF> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=edit.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=edit.html @@ -0,0 +1,177 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Accueil,Utilisateurs" /> + <link rel="next" href="index.html" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Accueil"; + var wgTitle = "Accueil"; + var wgAction = "edit"; + var wgArticleId = "1"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11737; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/edit.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="index.html" title="Accueil">Accueil</a></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Accueil&action=edit.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Accueil&action=edit.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="https://wiki.gruntnetwork.com/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">== gruntnetwork == + +gruntnetwork est un système d'exploitation sous licence Affero GPL. Actuellement il est en phase de développement, dans le cadre d'un projet pédagogique à l'Université Montpellier 2. + +== Nouveau Développeur ? == +{{:Nouveau Développeur}} + +[[notes]]</textarea><div class='templatesUsed'> +<div class="mw-templatesUsedExplanation"><p>Modèles utilisés sur cette page : +</p></div><ul> +<li><a href="https://wiki.gruntnetwork.com/Nouveau_D%C3%A9veloppeur" title="Nouveau Développeur">Nouveau Développeur</a> (<a href="https://wiki.gruntnetwork.com/index.php5?title=Nouveau_D%C3%A9veloppeur&action=edit" title="Nouveau Développeur">voir la source</a>) </li></ul> +</div> +<p>Revenir à la page <a href="index.html" title="Accueil">Accueil</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="index.html">https://wiki.gruntnetwork.com/Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="index.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="./Discussion:Accueil.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="index.php5%3Ftitle=Accueil&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Accueil&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Accueil.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Accueil.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Accueil.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Accueil.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.288 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=edit.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=edit.orig @@ -0,0 +1,177 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Accueil,Utilisateurs" /> + <link rel="next" href="https://wiki.gruntnetwork.com/Accueil" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Accueil"; + var wgTitle = "Accueil"; + var wgAction = "edit"; + var wgArticleId = "1"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11737; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/edit.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="/Accueil" title="Accueil">Accueil</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">== gruntnetwork == + +gruntnetwork est un système d'exploitation sous licence Affero GPL. Actuellement il est en phase de développement, dans le cadre d'un projet pédagogique à l'Université Montpellier 2. + +== Nouveau Développeur ? == +{{:Nouveau Développeur}} + +[[notes]]</textarea><div class='templatesUsed'> +<div class="mw-templatesUsedExplanation"><p>Modèles utilisés sur cette page : +</p></div><ul> +<li><a href="/Nouveau_D%C3%A9veloppeur" title="Nouveau Développeur">Nouveau Développeur</a> (<a href="/index.php5?title=Nouveau_D%C3%A9veloppeur&action=edit" title="Nouveau Développeur">voir la source</a>) </li></ul> +</div> +<p>Revenir à la page <a href="/Accueil" title="Accueil">Accueil</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Accueil">https://wiki.gruntnetwork.com/Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Accueil" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="/Discussion:Accueil" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="/index.php5?title=Accueil&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Accueil&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Accueil" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Accueil">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Accueil" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Accueil" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.288 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=history.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=history.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Accueil »" href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Accueil »" href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Historique des versions de « Accueil » - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Accueil"; + var wgTitle = "Accueil"; + var wgAction = "history"; + var wgArticleId = "1"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11737; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/history.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Accueil »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Journal&page=Accueil" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Accueil&action=history.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Accueil&action=history.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Accueil" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&limit=20&action=history" title="Accueil" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&limit=50&action=history" title="Accueil" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&limit=100&action=history" title="Accueil" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&limit=250&action=history" title="Accueil" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&limit=500&action=history" title="Accueil" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="https://wiki.gruntnetwork.com/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Accueil" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="index.php5%3Ftitle=Accueil&oldid=11737.html" title="Accueil">21 juin 2011 à 11:25</a> <span class='history-user'><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/193.239.192.194" title="Spécial:Contributions/193.239.192.194" class="mw-userlink">193.239.192.194</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:193.239.192.194&action=edit&redlink=1" class="new" title="Discussion utilisateur:193.239.192.194 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(274 octets)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&limit=20&action=history" title="Accueil" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&limit=50&action=history" title="Accueil" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&limit=100&action=history" title="Accueil" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&limit=250&action=history" title="Accueil" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&limit=500&action=history" title="Accueil" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="index.html">https://wiki.gruntnetwork.com/Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="index.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="./Discussion:Accueil.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Accueil&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="index.php5%3Ftitle=Accueil&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Accueil.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Accueil.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Accueil.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Accueil.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.306 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=history.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=history.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Accueil »" href="/index.php5?title=Accueil&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Accueil »" href="/index.php5?title=Accueil&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Historique des versions de « Accueil » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Accueil"; + var wgTitle = "Accueil"; + var wgAction = "history"; + var wgArticleId = "1"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11737; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/history.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Accueil »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="/index.php5?title=Sp%C3%A9cial:Journal&page=Accueil" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Accueil" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Accueil&limit=20&action=history" title="Accueil" class="mw-numlink">20</a> | <a href="/index.php5?title=Accueil&limit=50&action=history" title="Accueil" class="mw-numlink">50</a> | <a href="/index.php5?title=Accueil&limit=100&action=history" title="Accueil" class="mw-numlink">100</a> | <a href="/index.php5?title=Accueil&limit=250&action=history" title="Accueil" class="mw-numlink">250</a> | <a href="/index.php5?title=Accueil&limit=500&action=history" title="Accueil" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Accueil" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="/index.php5?title=Accueil&oldid=11737" title="Accueil">21 juin 2011 à 11:25</a> <span class='history-user'><a href="/Sp%C3%A9cial:Contributions/193.239.192.194" title="Spécial:Contributions/193.239.192.194" class="mw-userlink">193.239.192.194</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:193.239.192.194&action=edit&redlink=1" class="new" title="Discussion utilisateur:193.239.192.194 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(274 octets)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Accueil&limit=20&action=history" title="Accueil" class="mw-numlink">20</a> | <a href="/index.php5?title=Accueil&limit=50&action=history" title="Accueil" class="mw-numlink">50</a> | <a href="/index.php5?title=Accueil&limit=100&action=history" title="Accueil" class="mw-numlink">100</a> | <a href="/index.php5?title=Accueil&limit=250&action=history" title="Accueil" class="mw-numlink">250</a> | <a href="/index.php5?title=Accueil&limit=500&action=history" title="Accueil" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Accueil">https://wiki.gruntnetwork.com/Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Accueil" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="/Discussion:Accueil" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Accueil&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="/index.php5?title=Accueil&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Accueil" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Accueil">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Accueil" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Accueil" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Accueil&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Accueil&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.306 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&oldid=11737.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&oldid=11737.html @@ -0,0 +1,199 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Accueil,Conventions,Environnement de programmation,Liens,Notes,Prérequis" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = 1; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11737; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 21 juin 2011 à 11:25 par <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/193.239.192.194" title="Spécial:Contributions/193.239.192.194" class="mw-userlink">193.239.192.194</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:193.239.192.194&action=edit&redlink=1" class="new" title="Discussion utilisateur:193.239.192.194 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Accueil&oldid=11737.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Accueil&oldid=11737.html#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Accueil&oldid=11737.html#gruntnetwork"><span class="tocnumber">1</span> <span class="toctext">gruntnetwork</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Accueil&oldid=11737.html#Nouveau_D.C3.A9veloppeur_.3F"><span class="tocnumber">2</span> <span class="toctext">Nouveau Développeur ?</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Accueil&oldid=11737.html#S.27inscrire"><span class="tocnumber">3</span> <span class="toctext">S'inscrire</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Accueil&oldid=11737.html#.C3.80_lire"><span class="tocnumber">4</span> <span class="toctext">À lire</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="gruntnetwork" id="gruntnetwork"></a><h2> <span class="mw-headline"> gruntnetwork </span></h2> +<p>gruntnetwork est un système d'exploitation sous licence Affero GPL. Actuellement il est en phase de développement, dans le cadre d'un projet pédagogique à l'Université Montpellier 2. +</p> +<a name="Nouveau_D.C3.A9veloppeur_.3F" id="Nouveau_D.C3.A9veloppeur_.3F"></a><h2> <span class="mw-headline"> Nouveau Développeur ? </span></h2> +<a name="S.27inscrire" id="S.27inscrire"></a><h2> <span class="mw-headline"> S'inscrire </span></h2> +<ul><li> Créez-vous un compte sur <a href="http://tuxfamily.org/fr/subscribe" class="external text" title="http://tuxfamily.org/fr/subscribe" rel="nofollow">TuxFmaily</a> et adhérez au projet gruntnetwork +</li><li> Créez-vous un compte sur le <a href="../../http/wiki.gruntnetwork.com/index.php5%3Ftitle=Special:Connexion&type=signup&returnto=Nouveau_Développeur.html" class="external text" title="http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur" rel="nofollow">wiki</a> +</li><li> Créez-vous un compte sur le <a href="http://tracker.gruntnetwork.com/index.php?do=register" class="external text" title="http://tracker.gruntnetwork.com/index.php?do=register" rel="nofollow">tracker</a> +</li></ul> +<a name=".C3.80_lire" id=".C3.80_lire"></a><h2> <span class="mw-headline"> À lire </span></h2> +<ul><li> <a href="./Spécial:Page_au_hasard.html" title="Prérequis">Prérequis</a> : Un peu de lecture pour les vacances. Si vous ne savez rien sur les sujets listés dans cette page, vous risquez d'être à la traîne. +</li><li> <a href="Conventions.html" title="Conventions">Conventions</a> : À respecter, pour un code homogène. Si vous avez quoi que ce soit à redire dessus, faites-le vite, avant qu'on ait des centaines de lignes à reformater :) +</li><li> <a href="Environnement_de_programmation.html" title="Environnement de programmation">Environnement de programmation</a> : Avec quoi on travaille (Emacs ou Vim + gcc + qemu ou bochs). +</li><li> <a href="http://tracker.gruntnetwork.com/roadmap" class="external text" title="http://tracker.gruntnetwork.com/roadmap" rel="nofollow">Feuille de route</a> : Qui fait quoi, Quand, dans Quel ordre. +</li><li> <a href="Liens.html" title="Liens">Liens</a> : Quand vous ne saurez plus comment faire un truc en assembleur :) +</li></ul> +<p><a href="Notes.html" title="Notes">notes</a> +</p> +<!-- +NewPP limit report +Preprocessor node count: 7/1000000 +Post-expand include size: 1061/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:1-0!1!0!!fr!2!edit=0 and timestamp 20230504062015 --> +<div class="printfooter"> +Récupérée de « <a href="index.html">https://wiki.gruntnetwork.com/Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="index.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="./Discussion:Accueil.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Accueil&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Accueil&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Accueil.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Accueil.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Accueil.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Accueil.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="https://wiki.gruntnetwork.com/index.php5?title=Accueil&oldid=11737&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Accueil&oldid=11737.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.295 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&oldid=11737.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&oldid=11737.orig @@ -0,0 +1,199 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Accueil,Conventions,Environnement de programmation,Liens,Notes,Prérequis" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = 1; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11737; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 21 juin 2011 à 11:25 par <a href="/Sp%C3%A9cial:Contributions/193.239.192.194" title="Spécial:Contributions/193.239.192.194" class="mw-userlink">193.239.192.194</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:193.239.192.194&action=edit&redlink=1" class="new" title="Discussion utilisateur:193.239.192.194 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#gruntnetwork"><span class="tocnumber">1</span> <span class="toctext">gruntnetwork</span></a></li> +<li class="toclevel-1"><a href="#Nouveau_D.C3.A9veloppeur_.3F"><span class="tocnumber">2</span> <span class="toctext">Nouveau Développeur ?</span></a></li> +<li class="toclevel-1"><a href="#S.27inscrire"><span class="tocnumber">3</span> <span class="toctext">S'inscrire</span></a></li> +<li class="toclevel-1"><a href="#.C3.80_lire"><span class="tocnumber">4</span> <span class="toctext">À lire</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="gruntnetwork" id="gruntnetwork"></a><h2> <span class="mw-headline"> gruntnetwork </span></h2> +<p>gruntnetwork est un système d'exploitation sous licence Affero GPL. Actuellement il est en phase de développement, dans le cadre d'un projet pédagogique à l'Université Montpellier 2. +</p> +<a name="Nouveau_D.C3.A9veloppeur_.3F" id="Nouveau_D.C3.A9veloppeur_.3F"></a><h2> <span class="mw-headline"> Nouveau Développeur ? </span></h2> +<a name="S.27inscrire" id="S.27inscrire"></a><h2> <span class="mw-headline"> S'inscrire </span></h2> +<ul><li> Créez-vous un compte sur <a href="http://tuxfamily.org/fr/subscribe" class="external text" title="http://tuxfamily.org/fr/subscribe" rel="nofollow">TuxFmaily</a> et adhérez au projet gruntnetwork +</li><li> Créez-vous un compte sur le <a href="http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur" class="external text" title="http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur" rel="nofollow">wiki</a> +</li><li> Créez-vous un compte sur le <a href="http://tracker.gruntnetwork.com/index.php?do=register" class="external text" title="http://tracker.gruntnetwork.com/index.php?do=register" rel="nofollow">tracker</a> +</li></ul> +<a name=".C3.80_lire" id=".C3.80_lire"></a><h2> <span class="mw-headline"> À lire </span></h2> +<ul><li> <a href="/Pr%C3%A9requis" title="Prérequis">Prérequis</a> : Un peu de lecture pour les vacances. Si vous ne savez rien sur les sujets listés dans cette page, vous risquez d'être à la traîne. +</li><li> <a href="/Conventions" title="Conventions">Conventions</a> : À respecter, pour un code homogène. Si vous avez quoi que ce soit à redire dessus, faites-le vite, avant qu'on ait des centaines de lignes à reformater :) +</li><li> <a href="/Environnement_de_programmation" title="Environnement de programmation">Environnement de programmation</a> : Avec quoi on travaille (Emacs ou Vim + gcc + qemu ou bochs). +</li><li> <a href="http://tracker.gruntnetwork.com/roadmap" class="external text" title="http://tracker.gruntnetwork.com/roadmap" rel="nofollow">Feuille de route</a> : Qui fait quoi, Quand, dans Quel ordre. +</li><li> <a href="/Liens" title="Liens">Liens</a> : Quand vous ne saurez plus comment faire un truc en assembleur :) +</li></ul> +<p><a href="/Notes" title="Notes">notes</a> +</p> +<!-- +NewPP limit report +Preprocessor node count: 7/1000000 +Post-expand include size: 1061/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:1-0!1!0!!fr!2!edit=0 and timestamp 20230504062015 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Accueil">https://wiki.gruntnetwork.com/Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Accueil" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="/Discussion:Accueil" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Accueil&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Accueil&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Accueil" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Accueil">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Accueil" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Accueil" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Accueil&oldid=11737&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Accueil&oldid=11737" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.295 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes&printable=yes.html @@ -0,0 +1,191 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Accueil,Conventions,Environnement de programmation,Liens,Notes,Prérequis" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = "1"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11737; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Accueil&printable=yes&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Accueil&printable=yes&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Accueil&printable=yes&printable=yes.html#gruntnetwork"><span class="tocnumber">1</span> <span class="toctext">gruntnetwork</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Accueil&printable=yes&printable=yes.html#Nouveau_D.C3.A9veloppeur_.3F"><span class="tocnumber">2</span> <span class="toctext">Nouveau Développeur ?</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Accueil&printable=yes&printable=yes.html#S.27inscrire"><span class="tocnumber">3</span> <span class="toctext">S'inscrire</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Accueil&printable=yes&printable=yes.html#.C3.80_lire"><span class="tocnumber">4</span> <span class="toctext">À lire</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="gruntnetwork" id="gruntnetwork"></a><h2> <span class="mw-headline"> gruntnetwork </span></h2> +<p>gruntnetwork est un système d'exploitation sous licence Affero GPL. Actuellement il est en phase de développement, dans le cadre d'un projet pédagogique à l'Université Montpellier 2. +</p> +<a name="Nouveau_D.C3.A9veloppeur_.3F" id="Nouveau_D.C3.A9veloppeur_.3F"></a><h2> <span class="mw-headline"> Nouveau Développeur ? </span></h2> +<a name="S.27inscrire" id="S.27inscrire"></a><h2> <span class="mw-headline"> S'inscrire </span></h2> +<ul><li> Créez-vous un compte sur <a href="http://tuxfamily.org/fr/subscribe" class="external text" title="http://tuxfamily.org/fr/subscribe" rel="nofollow">TuxFmaily</a> et adhérez au projet gruntnetwork +</li><li> Créez-vous un compte sur le <a href="../../http/wiki.gruntnetwork.com/index.php5%3Ftitle=Special:Connexion&type=signup&returnto=Nouveau_Développeur.html" class="external text" title="http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur" rel="nofollow">wiki</a> +</li><li> Créez-vous un compte sur le <a href="http://tracker.gruntnetwork.com/index.php?do=register" class="external text" title="http://tracker.gruntnetwork.com/index.php?do=register" rel="nofollow">tracker</a> +</li></ul> +<a name=".C3.80_lire" id=".C3.80_lire"></a><h2> <span class="mw-headline"> À lire </span></h2> +<ul><li> <a href="./Spécial:Page_au_hasard.html" title="Prérequis">Prérequis</a> : Un peu de lecture pour les vacances. Si vous ne savez rien sur les sujets listés dans cette page, vous risquez d'être à la traîne. +</li><li> <a href="Conventions.html" title="Conventions">Conventions</a> : À respecter, pour un code homogène. Si vous avez quoi que ce soit à redire dessus, faites-le vite, avant qu'on ait des centaines de lignes à reformater :) +</li><li> <a href="Environnement_de_programmation.html" title="Environnement de programmation">Environnement de programmation</a> : Avec quoi on travaille (Emacs ou Vim + gcc + qemu ou bochs). +</li><li> <a href="http://tracker.gruntnetwork.com/roadmap" class="external text" title="http://tracker.gruntnetwork.com/roadmap" rel="nofollow">Feuille de route</a> : Qui fait quoi, Quand, dans Quel ordre. +</li><li> <a href="Liens.html" title="Liens">Liens</a> : Quand vous ne saurez plus comment faire un truc en assembleur :) +</li></ul> +<p><a href="Notes.html" title="Notes">notes</a> +</p> +<!-- +NewPP limit report +Preprocessor node count: 7/1000000 +Post-expand include size: 1061/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:1-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144120 --> +<div class="printfooter"> +Récupérée de « <a href="index.html">https://wiki.gruntnetwork.com/Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="index.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="./Discussion:Accueil.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Accueil&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Accueil&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Accueil.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Accueil.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Accueil.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Accueil.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Accueil&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Accueil&oldid=11737.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 21 juin 2011 à 11:25.<br /></li> + <li id="viewcount">Cette page a été consultée 212 775 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.374 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes&printable=yes.orig @@ -0,0 +1,191 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Accueil,Conventions,Environnement de programmation,Liens,Notes,Prérequis" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = "1"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11737; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#gruntnetwork"><span class="tocnumber">1</span> <span class="toctext">gruntnetwork</span></a></li> +<li class="toclevel-1"><a href="#Nouveau_D.C3.A9veloppeur_.3F"><span class="tocnumber">2</span> <span class="toctext">Nouveau Développeur ?</span></a></li> +<li class="toclevel-1"><a href="#S.27inscrire"><span class="tocnumber">3</span> <span class="toctext">S'inscrire</span></a></li> +<li class="toclevel-1"><a href="#.C3.80_lire"><span class="tocnumber">4</span> <span class="toctext">À lire</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="gruntnetwork" id="gruntnetwork"></a><h2> <span class="mw-headline"> gruntnetwork </span></h2> +<p>gruntnetwork est un système d'exploitation sous licence Affero GPL. Actuellement il est en phase de développement, dans le cadre d'un projet pédagogique à l'Université Montpellier 2. +</p> +<a name="Nouveau_D.C3.A9veloppeur_.3F" id="Nouveau_D.C3.A9veloppeur_.3F"></a><h2> <span class="mw-headline"> Nouveau Développeur ? </span></h2> +<a name="S.27inscrire" id="S.27inscrire"></a><h2> <span class="mw-headline"> S'inscrire </span></h2> +<ul><li> Créez-vous un compte sur <a href="http://tuxfamily.org/fr/subscribe" class="external text" title="http://tuxfamily.org/fr/subscribe" rel="nofollow">TuxFmaily</a> et adhérez au projet gruntnetwork +</li><li> Créez-vous un compte sur le <a href="http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur" class="external text" title="http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur" rel="nofollow">wiki</a> +</li><li> Créez-vous un compte sur le <a href="http://tracker.gruntnetwork.com/index.php?do=register" class="external text" title="http://tracker.gruntnetwork.com/index.php?do=register" rel="nofollow">tracker</a> +</li></ul> +<a name=".C3.80_lire" id=".C3.80_lire"></a><h2> <span class="mw-headline"> À lire </span></h2> +<ul><li> <a href="/Pr%C3%A9requis" title="Prérequis">Prérequis</a> : Un peu de lecture pour les vacances. Si vous ne savez rien sur les sujets listés dans cette page, vous risquez d'être à la traîne. +</li><li> <a href="/Conventions" title="Conventions">Conventions</a> : À respecter, pour un code homogène. Si vous avez quoi que ce soit à redire dessus, faites-le vite, avant qu'on ait des centaines de lignes à reformater :) +</li><li> <a href="/Environnement_de_programmation" title="Environnement de programmation">Environnement de programmation</a> : Avec quoi on travaille (Emacs ou Vim + gcc + qemu ou bochs). +</li><li> <a href="http://tracker.gruntnetwork.com/roadmap" class="external text" title="http://tracker.gruntnetwork.com/roadmap" rel="nofollow">Feuille de route</a> : Qui fait quoi, Quand, dans Quel ordre. +</li><li> <a href="/Liens" title="Liens">Liens</a> : Quand vous ne saurez plus comment faire un truc en assembleur :) +</li></ul> +<p><a href="/Notes" title="Notes">notes</a> +</p> +<!-- +NewPP limit report +Preprocessor node count: 7/1000000 +Post-expand include size: 1061/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:1-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144120 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Accueil">https://wiki.gruntnetwork.com/Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Accueil" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="/Discussion:Accueil" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Accueil&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Accueil&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Accueil" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Accueil">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Accueil" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Accueil" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Accueil&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Accueil&oldid=11737" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 21 juin 2011 à 11:25.<br /></li> + <li id="viewcount">Cette page a été consultée 212 775 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.374 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes.html @@ -0,0 +1,191 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Accueil,Conventions,Environnement de programmation,Liens,Notes,Prérequis" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = "1"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11737; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Accueil&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Accueil&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Accueil&printable=yes.html#gruntnetwork"><span class="tocnumber">1</span> <span class="toctext">gruntnetwork</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Accueil&printable=yes.html#Nouveau_D.C3.A9veloppeur_.3F"><span class="tocnumber">2</span> <span class="toctext">Nouveau Développeur ?</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Accueil&printable=yes.html#S.27inscrire"><span class="tocnumber">3</span> <span class="toctext">S'inscrire</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Accueil&printable=yes.html#.C3.80_lire"><span class="tocnumber">4</span> <span class="toctext">À lire</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="gruntnetwork" id="gruntnetwork"></a><h2> <span class="mw-headline"> gruntnetwork </span></h2> +<p>gruntnetwork est un système d'exploitation sous licence Affero GPL. Actuellement il est en phase de développement, dans le cadre d'un projet pédagogique à l'Université Montpellier 2. +</p> +<a name="Nouveau_D.C3.A9veloppeur_.3F" id="Nouveau_D.C3.A9veloppeur_.3F"></a><h2> <span class="mw-headline"> Nouveau Développeur ? </span></h2> +<a name="S.27inscrire" id="S.27inscrire"></a><h2> <span class="mw-headline"> S'inscrire </span></h2> +<ul><li> Créez-vous un compte sur <a href="http://tuxfamily.org/fr/subscribe" class="external text" title="http://tuxfamily.org/fr/subscribe" rel="nofollow">TuxFmaily</a> et adhérez au projet gruntnetwork +</li><li> Créez-vous un compte sur le <a href="../../http/wiki.gruntnetwork.com/index.php5%3Ftitle=Special:Connexion&type=signup&returnto=Nouveau_Développeur.html" class="external text" title="http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur" rel="nofollow">wiki</a> +</li><li> Créez-vous un compte sur le <a href="http://tracker.gruntnetwork.com/index.php?do=register" class="external text" title="http://tracker.gruntnetwork.com/index.php?do=register" rel="nofollow">tracker</a> +</li></ul> +<a name=".C3.80_lire" id=".C3.80_lire"></a><h2> <span class="mw-headline"> À lire </span></h2> +<ul><li> <a href="./Spécial:Page_au_hasard.html" title="Prérequis">Prérequis</a> : Un peu de lecture pour les vacances. Si vous ne savez rien sur les sujets listés dans cette page, vous risquez d'être à la traîne. +</li><li> <a href="Conventions.html" title="Conventions">Conventions</a> : À respecter, pour un code homogène. Si vous avez quoi que ce soit à redire dessus, faites-le vite, avant qu'on ait des centaines de lignes à reformater :) +</li><li> <a href="Environnement_de_programmation.html" title="Environnement de programmation">Environnement de programmation</a> : Avec quoi on travaille (Emacs ou Vim + gcc + qemu ou bochs). +</li><li> <a href="http://tracker.gruntnetwork.com/roadmap" class="external text" title="http://tracker.gruntnetwork.com/roadmap" rel="nofollow">Feuille de route</a> : Qui fait quoi, Quand, dans Quel ordre. +</li><li> <a href="Liens.html" title="Liens">Liens</a> : Quand vous ne saurez plus comment faire un truc en assembleur :) +</li></ul> +<p><a href="Notes.html" title="Notes">notes</a> +</p> +<!-- +NewPP limit report +Preprocessor node count: 7/1000000 +Post-expand include size: 1061/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:1-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144120 --> +<div class="printfooter"> +Récupérée de « <a href="index.html">https://wiki.gruntnetwork.com/Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="index.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="./Discussion:Accueil.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Accueil&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Accueil&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Accueil.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Accueil.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Accueil.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Accueil.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Accueil&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Accueil&oldid=11737.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 21 juin 2011 à 11:25.<br /></li> + <li id="viewcount">Cette page a été consultée 212 773 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.270 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes.orig @@ -0,0 +1,191 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Accueil,Conventions,Environnement de programmation,Liens,Notes,Prérequis" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = "1"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11737; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#gruntnetwork"><span class="tocnumber">1</span> <span class="toctext">gruntnetwork</span></a></li> +<li class="toclevel-1"><a href="#Nouveau_D.C3.A9veloppeur_.3F"><span class="tocnumber">2</span> <span class="toctext">Nouveau Développeur ?</span></a></li> +<li class="toclevel-1"><a href="#S.27inscrire"><span class="tocnumber">3</span> <span class="toctext">S'inscrire</span></a></li> +<li class="toclevel-1"><a href="#.C3.80_lire"><span class="tocnumber">4</span> <span class="toctext">À lire</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="gruntnetwork" id="gruntnetwork"></a><h2> <span class="mw-headline"> gruntnetwork </span></h2> +<p>gruntnetwork est un système d'exploitation sous licence Affero GPL. Actuellement il est en phase de développement, dans le cadre d'un projet pédagogique à l'Université Montpellier 2. +</p> +<a name="Nouveau_D.C3.A9veloppeur_.3F" id="Nouveau_D.C3.A9veloppeur_.3F"></a><h2> <span class="mw-headline"> Nouveau Développeur ? </span></h2> +<a name="S.27inscrire" id="S.27inscrire"></a><h2> <span class="mw-headline"> S'inscrire </span></h2> +<ul><li> Créez-vous un compte sur <a href="http://tuxfamily.org/fr/subscribe" class="external text" title="http://tuxfamily.org/fr/subscribe" rel="nofollow">TuxFmaily</a> et adhérez au projet gruntnetwork +</li><li> Créez-vous un compte sur le <a href="http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur" class="external text" title="http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur" rel="nofollow">wiki</a> +</li><li> Créez-vous un compte sur le <a href="http://tracker.gruntnetwork.com/index.php?do=register" class="external text" title="http://tracker.gruntnetwork.com/index.php?do=register" rel="nofollow">tracker</a> +</li></ul> +<a name=".C3.80_lire" id=".C3.80_lire"></a><h2> <span class="mw-headline"> À lire </span></h2> +<ul><li> <a href="/Pr%C3%A9requis" title="Prérequis">Prérequis</a> : Un peu de lecture pour les vacances. Si vous ne savez rien sur les sujets listés dans cette page, vous risquez d'être à la traîne. +</li><li> <a href="/Conventions" title="Conventions">Conventions</a> : À respecter, pour un code homogène. Si vous avez quoi que ce soit à redire dessus, faites-le vite, avant qu'on ait des centaines de lignes à reformater :) +</li><li> <a href="/Environnement_de_programmation" title="Environnement de programmation">Environnement de programmation</a> : Avec quoi on travaille (Emacs ou Vim + gcc + qemu ou bochs). +</li><li> <a href="http://tracker.gruntnetwork.com/roadmap" class="external text" title="http://tracker.gruntnetwork.com/roadmap" rel="nofollow">Feuille de route</a> : Qui fait quoi, Quand, dans Quel ordre. +</li><li> <a href="/Liens" title="Liens">Liens</a> : Quand vous ne saurez plus comment faire un truc en assembleur :) +</li></ul> +<p><a href="/Notes" title="Notes">notes</a> +</p> +<!-- +NewPP limit report +Preprocessor node count: 7/1000000 +Post-expand include size: 1061/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:1-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144120 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Accueil">https://wiki.gruntnetwork.com/Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Accueil" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="/Discussion:Accueil" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Accueil&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Accueil&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Accueil" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Accueil">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Accueil" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Accueil" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Accueil&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Accueil&oldid=11737" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 21 juin 2011 à 11:25.<br /></li> + <li id="viewcount">Cette page a été consultée 212 773 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.270 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=creativecommons b/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=creativecommons @@ -0,0 +1,25 @@ +<?xml version='1.0' encoding="UTF-8" ?> +<rdf:RDF xmlns:cc="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <cc:Work rdf:about="https://wiki.gruntnetwork.com/Affichage_Graphique"> + <dc:title>Affichage Graphique</dc:title> + <dc:publisher>Gruntnetwork</dc:publisher> + <dc:language>fr</dc:language> + <dc:type>Text</dc:type> + <dc:format>text/html</dc:format> + <dc:identifier>https://wiki.gruntnetwork.com/Affichage_Graphique</dc:identifier> + <dc:date>2009-03-04</dc:date> + <dc:creator>Utilisateur Jsmaniac de Gruntnetwork</dc:creator> + <dc:rights rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + <cc:license rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + </cc:Work> + <cc:License rdf:about="http://www.gnu.org/copyleft/fdl.html"> + <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> +</rdf:RDF> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=edit.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=edit.html @@ -0,0 +1,168 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Affichage Graphique,Utilisateurs" /> + <link rel="next" href="Affichage_Graphique.html" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Erreur de permission - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Affichage_Graphique"; + var wgTitle = "Affichage Graphique"; + var wgAction = "edit"; + var wgArticleId = "12"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 67; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/edit.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Affichage_Graphique skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Erreur de permission</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Affichage_Graphique&action=edit.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Affichage_Graphique&action=edit.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="https://wiki.gruntnetwork.com/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly"></textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="Affichage_Graphique.html" title="Affichage Graphique">Affichage Graphique</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="Affichage_Graphique.html">https://wiki.gruntnetwork.com/Affichage_Graphique</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Affichage_Graphique.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Affichage_Graphique&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="index.php5%3Ftitle=Affichage_Graphique&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Affichage_Graphique&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Affichage_Graphique.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Affichage_Graphique.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Affichage_Graphique.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.259 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=edit.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=edit.orig @@ -0,0 +1,168 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Affichage Graphique,Utilisateurs" /> + <link rel="next" href="https://wiki.gruntnetwork.com/Affichage_Graphique" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Erreur de permission - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Affichage_Graphique"; + var wgTitle = "Affichage Graphique"; + var wgAction = "edit"; + var wgArticleId = "12"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 67; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/edit.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Affichage_Graphique skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Erreur de permission</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly"></textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="/Affichage_Graphique" title="Affichage Graphique">Affichage Graphique</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Affichage_Graphique">https://wiki.gruntnetwork.com/Affichage_Graphique</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Affichage_Graphique" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Affichage_Graphique&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="/index.php5?title=Affichage_Graphique&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Affichage_Graphique&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Affichage_Graphique" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Affichage_Graphique">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Affichage_Graphique" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.259 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=history.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=history.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Affichage_Graphique&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Affichage Graphique »" href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Affichage Graphique »" href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Historique des versions de « Affichage Graphique » - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Affichage_Graphique"; + var wgTitle = "Affichage Graphique"; + var wgAction = "history"; + var wgArticleId = "12"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 67; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/history.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Affichage_Graphique skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Affichage Graphique »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Journal&page=Affichage_Graphique" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Affichage_Graphique&action=history.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Affichage_Graphique&action=history.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Affichage_Graphique" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&limit=20&action=history" title="Affichage Graphique" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&limit=50&action=history" title="Affichage Graphique" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&limit=100&action=history" title="Affichage Graphique" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&limit=250&action=history" title="Affichage Graphique" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&limit=500&action=history" title="Affichage Graphique" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="https://wiki.gruntnetwork.com/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Affichage_Graphique" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="index.php5%3Ftitle=Affichage_Graphique&oldid=67.html" title="Affichage Graphique">4 mars 2009 à 15:14</a> <span class='history-user'><a href="https://wiki.gruntnetwork.com/index.php5?title=Utilisateur:Jsmaniac&action=edit&redlink=1" class="new mw-userlink" title="Utilisateur:Jsmaniac (page inexistante)">Jsmaniac</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:Jsmaniac&action=edit&redlink=1" class="new" title="Discussion utilisateur:Jsmaniac (page inexistante)">discuter</a> | <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/Jsmaniac" title="Spécial:Contributions/Jsmaniac">contributions</a>)</span></span> <span class="history-size">(vide)</span> <span class="comment">(correspond pas à ce qu'on a fait)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&limit=20&action=history" title="Affichage Graphique" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&limit=50&action=history" title="Affichage Graphique" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&limit=100&action=history" title="Affichage Graphique" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&limit=250&action=history" title="Affichage Graphique" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&limit=500&action=history" title="Affichage Graphique" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="Affichage_Graphique.html">https://wiki.gruntnetwork.com/Affichage_Graphique</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Affichage_Graphique.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Affichage_Graphique&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Affichage_Graphique&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="index.php5%3Ftitle=Affichage_Graphique&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Affichage_Graphique.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Affichage_Graphique.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Affichage_Graphique.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.299 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=history.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=history.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Affichage_Graphique&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Affichage Graphique »" href="/index.php5?title=Affichage_Graphique&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Affichage Graphique »" href="/index.php5?title=Affichage_Graphique&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Historique des versions de « Affichage Graphique » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Affichage_Graphique"; + var wgTitle = "Affichage Graphique"; + var wgAction = "history"; + var wgArticleId = "12"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 67; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/history.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Affichage_Graphique skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Affichage Graphique »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="/index.php5?title=Sp%C3%A9cial:Journal&page=Affichage_Graphique" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Affichage_Graphique" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Affichage_Graphique&limit=20&action=history" title="Affichage Graphique" class="mw-numlink">20</a> | <a href="/index.php5?title=Affichage_Graphique&limit=50&action=history" title="Affichage Graphique" class="mw-numlink">50</a> | <a href="/index.php5?title=Affichage_Graphique&limit=100&action=history" title="Affichage Graphique" class="mw-numlink">100</a> | <a href="/index.php5?title=Affichage_Graphique&limit=250&action=history" title="Affichage Graphique" class="mw-numlink">250</a> | <a href="/index.php5?title=Affichage_Graphique&limit=500&action=history" title="Affichage Graphique" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Affichage_Graphique" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="/index.php5?title=Affichage_Graphique&oldid=67" title="Affichage Graphique">4 mars 2009 à 15:14</a> <span class='history-user'><a href="/index.php5?title=Utilisateur:Jsmaniac&action=edit&redlink=1" class="new mw-userlink" title="Utilisateur:Jsmaniac (page inexistante)">Jsmaniac</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:Jsmaniac&action=edit&redlink=1" class="new" title="Discussion utilisateur:Jsmaniac (page inexistante)">discuter</a> | <a href="/Sp%C3%A9cial:Contributions/Jsmaniac" title="Spécial:Contributions/Jsmaniac">contributions</a>)</span></span> <span class="history-size">(vide)</span> <span class="comment">(correspond pas à ce qu'on a fait)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Affichage_Graphique&limit=20&action=history" title="Affichage Graphique" class="mw-numlink">20</a> | <a href="/index.php5?title=Affichage_Graphique&limit=50&action=history" title="Affichage Graphique" class="mw-numlink">50</a> | <a href="/index.php5?title=Affichage_Graphique&limit=100&action=history" title="Affichage Graphique" class="mw-numlink">100</a> | <a href="/index.php5?title=Affichage_Graphique&limit=250&action=history" title="Affichage Graphique" class="mw-numlink">250</a> | <a href="/index.php5?title=Affichage_Graphique&limit=500&action=history" title="Affichage Graphique" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Affichage_Graphique">https://wiki.gruntnetwork.com/Affichage_Graphique</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Affichage_Graphique" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Affichage_Graphique&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Affichage_Graphique&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="/index.php5?title=Affichage_Graphique&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Affichage_Graphique" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Affichage_Graphique">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Affichage_Graphique" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Affichage_Graphique&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Affichage_Graphique&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.299 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&oldid=67.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&oldid=67.html @@ -0,0 +1,174 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Affichage Graphique" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Affichage_Graphique&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Affichage Graphique - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Affichage_Graphique"; + var wgTitle = "Affichage Graphique"; + var wgAction = "view"; + var wgArticleId = 12; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 67; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Affichage_Graphique skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Affichage Graphique</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 4 mars 2009 à 15:14 par <a href="https://wiki.gruntnetwork.com/index.php5?title=Utilisateur:Jsmaniac&action=edit&redlink=1" class="new mw-userlink" title="Utilisateur:Jsmaniac (page inexistante)">Jsmaniac</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:Jsmaniac&action=edit&redlink=1" class="new" title="Discussion utilisateur:Jsmaniac (page inexistante)">discuter</a> | <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/Jsmaniac" title="Spécial:Contributions/Jsmaniac">contributions</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Affichage_Graphique&oldid=67.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Affichage_Graphique&oldid=67.html#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:12-0!1!0!!fr!2!edit=0 and timestamp 20230503181501 --> +<div class="printfooter"> +Récupérée de « <a href="Affichage_Graphique.html">https://wiki.gruntnetwork.com/Affichage_Graphique</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Affichage_Graphique.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Affichage_Graphique&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Affichage_Graphique&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Affichage_Graphique&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Affichage_Graphique.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Affichage_Graphique.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Affichage_Graphique.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&oldid=67&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Affichage_Graphique&oldid=67.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.302 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&oldid=67.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&oldid=67.orig @@ -0,0 +1,174 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Affichage Graphique" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Affichage_Graphique&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Affichage Graphique - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Affichage_Graphique"; + var wgTitle = "Affichage Graphique"; + var wgAction = "view"; + var wgArticleId = 12; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 67; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Affichage_Graphique skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Affichage Graphique</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 4 mars 2009 à 15:14 par <a href="/index.php5?title=Utilisateur:Jsmaniac&action=edit&redlink=1" class="new mw-userlink" title="Utilisateur:Jsmaniac (page inexistante)">Jsmaniac</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:Jsmaniac&action=edit&redlink=1" class="new" title="Discussion utilisateur:Jsmaniac (page inexistante)">discuter</a> | <a href="/Sp%C3%A9cial:Contributions/Jsmaniac" title="Spécial:Contributions/Jsmaniac">contributions</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:12-0!1!0!!fr!2!edit=0 and timestamp 20230503181501 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Affichage_Graphique">https://wiki.gruntnetwork.com/Affichage_Graphique</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Affichage_Graphique" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Affichage_Graphique&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Affichage_Graphique&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Affichage_Graphique&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Affichage_Graphique" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Affichage_Graphique">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Affichage_Graphique" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Affichage_Graphique&oldid=67&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Affichage_Graphique&oldid=67" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.302 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes&printable=yes.html @@ -0,0 +1,166 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Affichage Graphique" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Affichage_Graphique&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Affichage Graphique - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Affichage_Graphique"; + var wgTitle = "Affichage Graphique"; + var wgAction = "view"; + var wgArticleId = "12"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 67; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Affichage_Graphique skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Affichage Graphique</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Affichage_Graphique&printable=yes&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Affichage_Graphique&printable=yes&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:12-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144558 --> +<div class="printfooter"> +Récupérée de « <a href="Affichage_Graphique.html">https://wiki.gruntnetwork.com/Affichage_Graphique</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Affichage_Graphique.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Affichage_Graphique&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Affichage_Graphique&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Affichage_Graphique&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Affichage_Graphique.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Affichage_Graphique.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Affichage_Graphique.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Affichage_Graphique&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Affichage_Graphique&oldid=67.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 4 mars 2009 à 15:14.<br /></li> + <li id="viewcount">Cette page a été consultée 1 326 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.269 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes&printable=yes.orig @@ -0,0 +1,166 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Affichage Graphique" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Affichage_Graphique&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Affichage Graphique - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Affichage_Graphique"; + var wgTitle = "Affichage Graphique"; + var wgAction = "view"; + var wgArticleId = "12"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 67; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Affichage_Graphique skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Affichage Graphique</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:12-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144558 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Affichage_Graphique">https://wiki.gruntnetwork.com/Affichage_Graphique</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Affichage_Graphique" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Affichage_Graphique&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Affichage_Graphique&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Affichage_Graphique&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Affichage_Graphique" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Affichage_Graphique">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Affichage_Graphique" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Affichage_Graphique&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Affichage_Graphique&oldid=67" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 4 mars 2009 à 15:14.<br /></li> + <li id="viewcount">Cette page a été consultée 1 326 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.269 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes.html @@ -0,0 +1,166 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Affichage Graphique" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Affichage_Graphique&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Affichage Graphique - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Affichage_Graphique"; + var wgTitle = "Affichage Graphique"; + var wgAction = "view"; + var wgArticleId = "12"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 67; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Affichage_Graphique skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Affichage Graphique</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Affichage_Graphique&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Affichage_Graphique&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:12-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144558 --> +<div class="printfooter"> +Récupérée de « <a href="Affichage_Graphique.html">https://wiki.gruntnetwork.com/Affichage_Graphique</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Affichage_Graphique.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Affichage_Graphique&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Affichage_Graphique&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Affichage_Graphique&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Affichage_Graphique.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Affichage_Graphique.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Affichage_Graphique.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Affichage_Graphique&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Affichage_Graphique&oldid=67.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 4 mars 2009 à 15:14.<br /></li> + <li id="viewcount">Cette page a été consultée 1 324 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.281 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes.orig @@ -0,0 +1,166 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Affichage Graphique" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Affichage_Graphique&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Affichage Graphique - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Affichage_Graphique"; + var wgTitle = "Affichage Graphique"; + var wgAction = "view"; + var wgArticleId = "12"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 67; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Affichage_Graphique skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Affichage Graphique</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:12-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144558 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Affichage_Graphique">https://wiki.gruntnetwork.com/Affichage_Graphique</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Affichage_Graphique" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Affichage_Graphique&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Affichage_Graphique&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Affichage_Graphique&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Affichage_Graphique" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Affichage_Graphique">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Affichage_Graphique" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Affichage_Graphique&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Affichage_Graphique&oldid=67" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 4 mars 2009 à 15:14.<br /></li> + <li id="viewcount">Cette page a été consultée 1 324 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.281 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=creativecommons b/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=creativecommons @@ -0,0 +1,25 @@ +<?xml version='1.0' encoding="UTF-8" ?> +<rdf:RDF xmlns:cc="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <cc:Work rdf:about="https://wiki.gruntnetwork.com/Conventions"> + <dc:title>Conventions</dc:title> + <dc:publisher>Gruntnetwork</dc:publisher> + <dc:language>fr</dc:language> + <dc:type>Text</dc:type> + <dc:format>text/html</dc:format> + <dc:identifier>https://wiki.gruntnetwork.com/Conventions</dc:identifier> + <dc:date>2009-02-08</dc:date> + <dc:creator>Utilisateur non enregistré sur Gruntnetwork</dc:creator> + <dc:rights rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + <cc:license rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + </cc:Work> + <cc:License rdf:about="http://www.gnu.org/copyleft/fdl.html"> + <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> +</rdf:RDF> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=edit.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=edit.html @@ -0,0 +1,191 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Conventions,Utilisateurs" /> + <link rel="next" href="Conventions.html" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Conventions"; + var wgTitle = "Conventions"; + var wgAction = "edit"; + var wgArticleId = "3"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 31; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/edit.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Conventions skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="Conventions.html" title="Conventions">Conventions</a></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Conventions&action=edit.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Conventions&action=edit.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="https://wiki.gruntnetwork.com/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">Les conventions suivantes seront utilisées pour un code homogène. + +== En C == + +* L'indentation se fait à 4 espaces par tabulation. +* Pas de transformation des espaces en tabulation. +* <code>nomsDeVariables</code> +* <code>NOMS_DE_CONSTANTE</code> +* Fonctions : +<code> + type_retour nom_fonction(type_param_1 param_1, ..., type_param_n param_n) { + code; + } +</code> +* Boucles for, avec déclaration locale à la boucle de l'itérateur s'il n'a pas lieu d'être à l'extérieur (int i=a) : +<code> + for (int i=a; i<b; i++) { + code; + } +</code> + +== En assembleur == + +On utilisera la syntaxe Gas, car elle est compatible avec le compilateur GCC</textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="Conventions.html" title="Conventions">Conventions</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="Conventions.html">https://wiki.gruntnetwork.com/Conventions</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Conventions.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Conventions&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="index.php5%3Ftitle=Conventions&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Conventions&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Conventions.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Conventions.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Conventions.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Conventions.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.267 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=edit.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=edit.orig @@ -0,0 +1,191 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Conventions,Utilisateurs" /> + <link rel="next" href="https://wiki.gruntnetwork.com/Conventions" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Conventions"; + var wgTitle = "Conventions"; + var wgAction = "edit"; + var wgArticleId = "3"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 31; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/edit.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Conventions skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="/Conventions" title="Conventions">Conventions</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">Les conventions suivantes seront utilisées pour un code homogène. + +== En C == + +* L'indentation se fait à 4 espaces par tabulation. +* Pas de transformation des espaces en tabulation. +* <code>nomsDeVariables</code> +* <code>NOMS_DE_CONSTANTE</code> +* Fonctions : +<code> + type_retour nom_fonction(type_param_1 param_1, ..., type_param_n param_n) { + code; + } +</code> +* Boucles for, avec déclaration locale à la boucle de l'itérateur s'il n'a pas lieu d'être à l'extérieur (int i=a) : +<code> + for (int i=a; i<b; i++) { + code; + } +</code> + +== En assembleur == + +On utilisera la syntaxe Gas, car elle est compatible avec le compilateur GCC</textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="/Conventions" title="Conventions">Conventions</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Conventions">https://wiki.gruntnetwork.com/Conventions</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Conventions" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Conventions&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="/index.php5?title=Conventions&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Conventions&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Conventions" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Conventions">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Conventions" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Conventions" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.267 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=history.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=history.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Conventions&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Conventions »" href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Conventions »" href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Historique des versions de « Conventions » - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Conventions"; + var wgTitle = "Conventions"; + var wgAction = "history"; + var wgArticleId = "3"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 31; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/history.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Conventions skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Conventions »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Journal&page=Conventions" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Conventions&action=history.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Conventions&action=history.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Conventions" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&limit=20&action=history" title="Conventions" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&limit=50&action=history" title="Conventions" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&limit=100&action=history" title="Conventions" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&limit=250&action=history" title="Conventions" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&limit=500&action=history" title="Conventions" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="https://wiki.gruntnetwork.com/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Conventions" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="index.php5%3Ftitle=Conventions&oldid=31.html" title="Conventions">8 février 2009 à 17:02</a> <span class='history-user'><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/78.115.6.242" title="Spécial:Contributions/78.115.6.242" class="mw-userlink">78.115.6.242</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:78.115.6.242&action=edit&redlink=1" class="new" title="Discussion utilisateur:78.115.6.242 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(638 octets)</span> <span class="comment">(<span class="autocomment"><a href="Conventions.html#En_C" title="Conventions">→</a>En C</span>)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&limit=20&action=history" title="Conventions" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&limit=50&action=history" title="Conventions" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&limit=100&action=history" title="Conventions" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&limit=250&action=history" title="Conventions" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&limit=500&action=history" title="Conventions" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="Conventions.html">https://wiki.gruntnetwork.com/Conventions</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Conventions.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Conventions&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Conventions&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="index.php5%3Ftitle=Conventions&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Conventions.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Conventions.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Conventions.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Conventions.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.251 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=history.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=history.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Conventions&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Conventions »" href="/index.php5?title=Conventions&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Conventions »" href="/index.php5?title=Conventions&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Historique des versions de « Conventions » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Conventions"; + var wgTitle = "Conventions"; + var wgAction = "history"; + var wgArticleId = "3"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 31; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/history.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Conventions skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Conventions »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="/index.php5?title=Sp%C3%A9cial:Journal&page=Conventions" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Conventions" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Conventions&limit=20&action=history" title="Conventions" class="mw-numlink">20</a> | <a href="/index.php5?title=Conventions&limit=50&action=history" title="Conventions" class="mw-numlink">50</a> | <a href="/index.php5?title=Conventions&limit=100&action=history" title="Conventions" class="mw-numlink">100</a> | <a href="/index.php5?title=Conventions&limit=250&action=history" title="Conventions" class="mw-numlink">250</a> | <a href="/index.php5?title=Conventions&limit=500&action=history" title="Conventions" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Conventions" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="/index.php5?title=Conventions&oldid=31" title="Conventions">8 février 2009 à 17:02</a> <span class='history-user'><a href="/Sp%C3%A9cial:Contributions/78.115.6.242" title="Spécial:Contributions/78.115.6.242" class="mw-userlink">78.115.6.242</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:78.115.6.242&action=edit&redlink=1" class="new" title="Discussion utilisateur:78.115.6.242 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(638 octets)</span> <span class="comment">(<span class="autocomment"><a href="/Conventions#En_C" title="Conventions">→</a>En C</span>)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Conventions&limit=20&action=history" title="Conventions" class="mw-numlink">20</a> | <a href="/index.php5?title=Conventions&limit=50&action=history" title="Conventions" class="mw-numlink">50</a> | <a href="/index.php5?title=Conventions&limit=100&action=history" title="Conventions" class="mw-numlink">100</a> | <a href="/index.php5?title=Conventions&limit=250&action=history" title="Conventions" class="mw-numlink">250</a> | <a href="/index.php5?title=Conventions&limit=500&action=history" title="Conventions" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Conventions">https://wiki.gruntnetwork.com/Conventions</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Conventions" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Conventions&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Conventions&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="/index.php5?title=Conventions&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Conventions" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Conventions">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Conventions" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Conventions" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Conventions&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Conventions&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.251 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&oldid=31.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&oldid=31.html @@ -0,0 +1,203 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Conventions" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Conventions&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Conventions - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Conventions"; + var wgTitle = "Conventions"; + var wgAction = "view"; + var wgArticleId = 3; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 31; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Conventions skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Conventions</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 8 février 2009 à 17:02 par <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/78.115.6.242" title="Spécial:Contributions/78.115.6.242" class="mw-userlink">78.115.6.242</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:78.115.6.242&action=edit&redlink=1" class="new" title="Discussion utilisateur:78.115.6.242 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Conventions&oldid=31.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Conventions&oldid=31.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Les conventions suivantes seront utilisées pour un code homogène. +</p> +<a name="En_C" id="En_C"></a><h2> <span class="mw-headline"> En C </span></h2> +<ul><li> L'indentation se fait à 4 espaces par tabulation. +</li><li> Pas de transformation des espaces en tabulation. +</li><li> <code>nomsDeVariables</code> +</li><li> <code>NOMS_DE_CONSTANTE</code> +</li><li> Fonctions : +</li></ul> +<p><code> +</p> +<pre>type_retour nom_fonction(type_param_1 param_1, ..., type_param_n param_n) { +code; +} +</pre> +<p></code> +</p> +<ul><li> Boucles for, avec déclaration locale à la boucle de l'itérateur s'il n'a pas lieu d'être à l'extérieur (int i=a) : +</li></ul> +<p><code> +</p> +<pre>for (int i=a; i<b; i++) { +code; +} +</pre> +<p></code> +</p> +<a name="En_assembleur" id="En_assembleur"></a><h2> <span class="mw-headline"> En assembleur </span></h2> +<p>On utilisera la syntaxe Gas, car elle est compatible avec le compilateur GCC +</p> +<!-- +NewPP limit report +Preprocessor node count: 3/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:3-0!1!0!!fr!2!edit=0 and timestamp 20230503142406 --> +<div class="printfooter"> +Récupérée de « <a href="Conventions.html">https://wiki.gruntnetwork.com/Conventions</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Conventions.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Conventions&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Conventions&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Conventions&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Conventions.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Conventions.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Conventions.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Conventions.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="https://wiki.gruntnetwork.com/index.php5?title=Conventions&oldid=31&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Conventions&oldid=31.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.290 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&oldid=31.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&oldid=31.orig @@ -0,0 +1,203 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Conventions" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Conventions&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Conventions - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Conventions"; + var wgTitle = "Conventions"; + var wgAction = "view"; + var wgArticleId = 3; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 31; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Conventions skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Conventions</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 8 février 2009 à 17:02 par <a href="/Sp%C3%A9cial:Contributions/78.115.6.242" title="Spécial:Contributions/78.115.6.242" class="mw-userlink">78.115.6.242</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:78.115.6.242&action=edit&redlink=1" class="new" title="Discussion utilisateur:78.115.6.242 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Les conventions suivantes seront utilisées pour un code homogène. +</p> +<a name="En_C" id="En_C"></a><h2> <span class="mw-headline"> En C </span></h2> +<ul><li> L'indentation se fait à 4 espaces par tabulation. +</li><li> Pas de transformation des espaces en tabulation. +</li><li> <code>nomsDeVariables</code> +</li><li> <code>NOMS_DE_CONSTANTE</code> +</li><li> Fonctions : +</li></ul> +<p><code> +</p> +<pre>type_retour nom_fonction(type_param_1 param_1, ..., type_param_n param_n) { +code; +} +</pre> +<p></code> +</p> +<ul><li> Boucles for, avec déclaration locale à la boucle de l'itérateur s'il n'a pas lieu d'être à l'extérieur (int i=a) : +</li></ul> +<p><code> +</p> +<pre>for (int i=a; i<b; i++) { +code; +} +</pre> +<p></code> +</p> +<a name="En_assembleur" id="En_assembleur"></a><h2> <span class="mw-headline"> En assembleur </span></h2> +<p>On utilisera la syntaxe Gas, car elle est compatible avec le compilateur GCC +</p> +<!-- +NewPP limit report +Preprocessor node count: 3/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:3-0!1!0!!fr!2!edit=0 and timestamp 20230503142406 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Conventions">https://wiki.gruntnetwork.com/Conventions</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Conventions" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Conventions&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Conventions&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Conventions&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Conventions" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Conventions">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Conventions" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Conventions" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Conventions&oldid=31&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Conventions&oldid=31" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.290 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes&printable=yes.html @@ -0,0 +1,195 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Conventions" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Conventions&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Conventions - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Conventions"; + var wgTitle = "Conventions"; + var wgAction = "view"; + var wgArticleId = "3"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 31; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Conventions skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Conventions</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Conventions&printable=yes&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Conventions&printable=yes&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Les conventions suivantes seront utilisées pour un code homogène. +</p> +<a name="En_C" id="En_C"></a><h2> <span class="mw-headline"> En C </span></h2> +<ul><li> L'indentation se fait à 4 espaces par tabulation. +</li><li> Pas de transformation des espaces en tabulation. +</li><li> <code>nomsDeVariables</code> +</li><li> <code>NOMS_DE_CONSTANTE</code> +</li><li> Fonctions : +</li></ul> +<p><code> +</p> +<pre>type_retour nom_fonction(type_param_1 param_1, ..., type_param_n param_n) { +code; +} +</pre> +<p></code> +</p> +<ul><li> Boucles for, avec déclaration locale à la boucle de l'itérateur s'il n'a pas lieu d'être à l'extérieur (int i=a) : +</li></ul> +<p><code> +</p> +<pre>for (int i=a; i<b; i++) { +code; +} +</pre> +<p></code> +</p> +<a name="En_assembleur" id="En_assembleur"></a><h2> <span class="mw-headline"> En assembleur </span></h2> +<p>On utilisera la syntaxe Gas, car elle est compatible avec le compilateur GCC +</p> +<!-- +NewPP limit report +Preprocessor node count: 3/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:3-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144152 --> +<div class="printfooter"> +Récupérée de « <a href="Conventions.html">https://wiki.gruntnetwork.com/Conventions</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Conventions.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Conventions&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Conventions&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Conventions&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Conventions.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Conventions.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Conventions.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Conventions.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Conventions&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Conventions&oldid=31.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 8 février 2009 à 17:02.<br /></li> + <li id="viewcount">Cette page a été consultée 1 923 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.322 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes&printable=yes.orig @@ -0,0 +1,195 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Conventions" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Conventions&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Conventions - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Conventions"; + var wgTitle = "Conventions"; + var wgAction = "view"; + var wgArticleId = "3"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 31; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Conventions skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Conventions</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Les conventions suivantes seront utilisées pour un code homogène. +</p> +<a name="En_C" id="En_C"></a><h2> <span class="mw-headline"> En C </span></h2> +<ul><li> L'indentation se fait à 4 espaces par tabulation. +</li><li> Pas de transformation des espaces en tabulation. +</li><li> <code>nomsDeVariables</code> +</li><li> <code>NOMS_DE_CONSTANTE</code> +</li><li> Fonctions : +</li></ul> +<p><code> +</p> +<pre>type_retour nom_fonction(type_param_1 param_1, ..., type_param_n param_n) { +code; +} +</pre> +<p></code> +</p> +<ul><li> Boucles for, avec déclaration locale à la boucle de l'itérateur s'il n'a pas lieu d'être à l'extérieur (int i=a) : +</li></ul> +<p><code> +</p> +<pre>for (int i=a; i<b; i++) { +code; +} +</pre> +<p></code> +</p> +<a name="En_assembleur" id="En_assembleur"></a><h2> <span class="mw-headline"> En assembleur </span></h2> +<p>On utilisera la syntaxe Gas, car elle est compatible avec le compilateur GCC +</p> +<!-- +NewPP limit report +Preprocessor node count: 3/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:3-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144152 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Conventions">https://wiki.gruntnetwork.com/Conventions</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Conventions" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Conventions&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Conventions&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Conventions&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Conventions" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Conventions">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Conventions" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Conventions" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Conventions&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Conventions&oldid=31" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 8 février 2009 à 17:02.<br /></li> + <li id="viewcount">Cette page a été consultée 1 923 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.322 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes.html @@ -0,0 +1,195 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Conventions" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Conventions&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Conventions - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Conventions"; + var wgTitle = "Conventions"; + var wgAction = "view"; + var wgArticleId = "3"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 31; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Conventions skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Conventions</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Conventions&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Conventions&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Les conventions suivantes seront utilisées pour un code homogène. +</p> +<a name="En_C" id="En_C"></a><h2> <span class="mw-headline"> En C </span></h2> +<ul><li> L'indentation se fait à 4 espaces par tabulation. +</li><li> Pas de transformation des espaces en tabulation. +</li><li> <code>nomsDeVariables</code> +</li><li> <code>NOMS_DE_CONSTANTE</code> +</li><li> Fonctions : +</li></ul> +<p><code> +</p> +<pre>type_retour nom_fonction(type_param_1 param_1, ..., type_param_n param_n) { +code; +} +</pre> +<p></code> +</p> +<ul><li> Boucles for, avec déclaration locale à la boucle de l'itérateur s'il n'a pas lieu d'être à l'extérieur (int i=a) : +</li></ul> +<p><code> +</p> +<pre>for (int i=a; i<b; i++) { +code; +} +</pre> +<p></code> +</p> +<a name="En_assembleur" id="En_assembleur"></a><h2> <span class="mw-headline"> En assembleur </span></h2> +<p>On utilisera la syntaxe Gas, car elle est compatible avec le compilateur GCC +</p> +<!-- +NewPP limit report +Preprocessor node count: 3/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:3-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144152 --> +<div class="printfooter"> +Récupérée de « <a href="Conventions.html">https://wiki.gruntnetwork.com/Conventions</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Conventions.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Conventions&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Conventions&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Conventions&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Conventions.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Conventions.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Conventions.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Conventions.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Conventions&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Conventions&oldid=31.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 8 février 2009 à 17:02.<br /></li> + <li id="viewcount">Cette page a été consultée 1 921 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.273 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes.orig @@ -0,0 +1,195 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Conventions" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Conventions&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Conventions - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Conventions"; + var wgTitle = "Conventions"; + var wgAction = "view"; + var wgArticleId = "3"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 31; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Conventions skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Conventions</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Les conventions suivantes seront utilisées pour un code homogène. +</p> +<a name="En_C" id="En_C"></a><h2> <span class="mw-headline"> En C </span></h2> +<ul><li> L'indentation se fait à 4 espaces par tabulation. +</li><li> Pas de transformation des espaces en tabulation. +</li><li> <code>nomsDeVariables</code> +</li><li> <code>NOMS_DE_CONSTANTE</code> +</li><li> Fonctions : +</li></ul> +<p><code> +</p> +<pre>type_retour nom_fonction(type_param_1 param_1, ..., type_param_n param_n) { +code; +} +</pre> +<p></code> +</p> +<ul><li> Boucles for, avec déclaration locale à la boucle de l'itérateur s'il n'a pas lieu d'être à l'extérieur (int i=a) : +</li></ul> +<p><code> +</p> +<pre>for (int i=a; i<b; i++) { +code; +} +</pre> +<p></code> +</p> +<a name="En_assembleur" id="En_assembleur"></a><h2> <span class="mw-headline"> En assembleur </span></h2> +<p>On utilisera la syntaxe Gas, car elle est compatible avec le compilateur GCC +</p> +<!-- +NewPP limit report +Preprocessor node count: 3/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:3-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144152 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Conventions">https://wiki.gruntnetwork.com/Conventions</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Conventions" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Conventions&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Conventions&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Conventions&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Conventions" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Conventions">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Conventions" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Conventions" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Conventions&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Conventions&oldid=31" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 8 février 2009 à 17:02.<br /></li> + <li id="viewcount">Cette page a été consultée 1 921 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.273 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=creativecommons b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=creativecommons @@ -0,0 +1,25 @@ +<?xml version='1.0' encoding="UTF-8" ?> +<rdf:RDF xmlns:cc="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <cc:Work rdf:about="https://wiki.gruntnetwork.com/Discussion:Accueil"> + <dc:title>Accueil</dc:title> + <dc:publisher>Gruntnetwork</dc:publisher> + <dc:language>fr</dc:language> + <dc:type>Text</dc:type> + <dc:format>text/html</dc:format> + <dc:identifier>https://wiki.gruntnetwork.com/Discussion:Accueil</dc:identifier> + <dc:date>2011-06-19</dc:date> + <dc:creator>Utilisateur non enregistré sur Gruntnetwork</dc:creator> + <dc:rights rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + <cc:license rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + </cc:Work> + <cc:License rdf:about="http://www.gnu.org/copyleft/fdl.html"> + <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> +</rdf:RDF> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=edit.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=edit.html @@ -0,0 +1,168 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Discussion:Accueil,Utilisateurs" /> + <link rel="next" href="./Discussion:Accueil.html" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Accueil"; + var wgTitle = "Accueil"; + var wgAction = "edit"; + var wgArticleId = "22"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11736; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/edit.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="./Discussion:Accueil.html" title="Discussion:Accueil">Discussion:Accueil</a></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Discussion:Accueil&action=edit.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Discussion:Accueil&action=edit.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="https://wiki.gruntnetwork.com/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">comment5 http://www.spanjeforum.nl/zakelijk/thread-247479.html order flovent cheap overnight</textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="./Discussion:Accueil.html" title="Discussion:Accueil">Discussion:Accueil</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="./Discussion:Accueil.html">https://wiki.gruntnetwork.com/Discussion:Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="index.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="./Discussion:Accueil.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="./index.php5%3Ftitle=Discussion:Accueil&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="./index.php5%3Ftitle=Discussion:Accueil&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Accueil.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Discussion:Accueil.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Discussion:Accueil.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.251 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=edit.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=edit.orig @@ -0,0 +1,168 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Discussion:Accueil,Utilisateurs" /> + <link rel="next" href="https://wiki.gruntnetwork.com/Discussion:Accueil" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Accueil"; + var wgTitle = "Accueil"; + var wgAction = "edit"; + var wgArticleId = "22"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11736; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/edit.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="/Discussion:Accueil" title="Discussion:Accueil">Discussion:Accueil</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">comment5 http://www.spanjeforum.nl/zakelijk/thread-247479.html order flovent cheap overnight</textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="/Discussion:Accueil" title="Discussion:Accueil">Discussion:Accueil</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Discussion:Accueil">https://wiki.gruntnetwork.com/Discussion:Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="/Accueil" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="/Discussion:Accueil" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="/index.php5?title=Discussion:Accueil&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Discussion:Accueil&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Accueil" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Accueil">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Discussion:Accueil" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.251 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=history.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=history.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="./index.php5%3Ftitle=Discussion:Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Discussion:Accueil »" href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Discussion:Accueil »" href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Historique des versions de « Discussion:Accueil » - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Accueil"; + var wgTitle = "Accueil"; + var wgAction = "history"; + var wgArticleId = "22"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11736; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/history.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Discussion:Accueil »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Journal&page=Discussion%3AAccueil" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Discussion:Accueil&action=history.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Discussion:Accueil&action=history.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Discussion:Accueil" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&limit=20&action=history" title="Discussion:Accueil" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&limit=50&action=history" title="Discussion:Accueil" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&limit=100&action=history" title="Discussion:Accueil" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&limit=250&action=history" title="Discussion:Accueil" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&limit=500&action=history" title="Discussion:Accueil" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="https://wiki.gruntnetwork.com/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Discussion:Accueil" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="./index.php5%3Ftitle=Discussion:Accueil&oldid=11736.html" title="Discussion:Accueil">19 juin 2011 à 07:17</a> <span class='history-user'><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/91.214.45.223" title="Spécial:Contributions/91.214.45.223" class="mw-userlink">91.214.45.223</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:91.214.45.223&action=edit&redlink=1" class="new" title="Discussion utilisateur:91.214.45.223 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(92 octets)</span> <span class="comment">(comment5 http://www.spanjeforum.nl/zakelijk/thread-247479.html order flovent cheap overnight)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&limit=20&action=history" title="Discussion:Accueil" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&limit=50&action=history" title="Discussion:Accueil" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&limit=100&action=history" title="Discussion:Accueil" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&limit=250&action=history" title="Discussion:Accueil" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&limit=500&action=history" title="Discussion:Accueil" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="./Discussion:Accueil.html">https://wiki.gruntnetwork.com/Discussion:Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="index.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="./Discussion:Accueil.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="./index.php5%3Ftitle=Discussion:Accueil&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="./index.php5%3Ftitle=Discussion:Accueil&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Accueil.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Discussion:Accueil.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Discussion:Accueil.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.276 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=history.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=history.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Discussion:Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Discussion:Accueil »" href="/index.php5?title=Discussion:Accueil&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Discussion:Accueil »" href="/index.php5?title=Discussion:Accueil&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Historique des versions de « Discussion:Accueil » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Accueil"; + var wgTitle = "Accueil"; + var wgAction = "history"; + var wgArticleId = "22"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11736; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/history.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Discussion:Accueil »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="/index.php5?title=Sp%C3%A9cial:Journal&page=Discussion%3AAccueil" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Discussion:Accueil" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Discussion:Accueil&limit=20&action=history" title="Discussion:Accueil" class="mw-numlink">20</a> | <a href="/index.php5?title=Discussion:Accueil&limit=50&action=history" title="Discussion:Accueil" class="mw-numlink">50</a> | <a href="/index.php5?title=Discussion:Accueil&limit=100&action=history" title="Discussion:Accueil" class="mw-numlink">100</a> | <a href="/index.php5?title=Discussion:Accueil&limit=250&action=history" title="Discussion:Accueil" class="mw-numlink">250</a> | <a href="/index.php5?title=Discussion:Accueil&limit=500&action=history" title="Discussion:Accueil" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Discussion:Accueil" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="/index.php5?title=Discussion:Accueil&oldid=11736" title="Discussion:Accueil">19 juin 2011 à 07:17</a> <span class='history-user'><a href="/Sp%C3%A9cial:Contributions/91.214.45.223" title="Spécial:Contributions/91.214.45.223" class="mw-userlink">91.214.45.223</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:91.214.45.223&action=edit&redlink=1" class="new" title="Discussion utilisateur:91.214.45.223 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(92 octets)</span> <span class="comment">(comment5 http://www.spanjeforum.nl/zakelijk/thread-247479.html order flovent cheap overnight)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Discussion:Accueil&limit=20&action=history" title="Discussion:Accueil" class="mw-numlink">20</a> | <a href="/index.php5?title=Discussion:Accueil&limit=50&action=history" title="Discussion:Accueil" class="mw-numlink">50</a> | <a href="/index.php5?title=Discussion:Accueil&limit=100&action=history" title="Discussion:Accueil" class="mw-numlink">100</a> | <a href="/index.php5?title=Discussion:Accueil&limit=250&action=history" title="Discussion:Accueil" class="mw-numlink">250</a> | <a href="/index.php5?title=Discussion:Accueil&limit=500&action=history" title="Discussion:Accueil" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Discussion:Accueil">https://wiki.gruntnetwork.com/Discussion:Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="/Accueil" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="/Discussion:Accueil" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Discussion:Accueil&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="/index.php5?title=Discussion:Accueil&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Accueil" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Accueil">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Discussion:Accueil" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Discussion:Accueil&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Discussion:Accueil&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.276 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&oldid=11736.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&oldid=11736.html @@ -0,0 +1,175 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Discussion:Accueil" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="./index.php5%3Ftitle=Discussion:Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Discussion:Accueil - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = 22; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11736; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 19 juin 2011 à 07:17 par <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/91.214.45.223" title="Spécial:Contributions/91.214.45.223" class="mw-userlink">91.214.45.223</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:91.214.45.223&action=edit&redlink=1" class="new" title="Discussion utilisateur:91.214.45.223 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Discussion:Accueil&oldid=11736.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Discussion:Accueil&oldid=11736.html#searchInput">rechercher</a></div> <!-- start content --> + <p>comment5 <a href="http://www.spanjeforum.nl/zakelijk/thread-247479.html" class="external free" title="http://www.spanjeforum.nl/zakelijk/thread-247479.html" rel="nofollow">http://www.spanjeforum.nl/zakelijk/thread-247479.html</a> order flovent cheap overnight +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:22-0!1!0!!fr!2!edit=0 and timestamp 20230503144109 --> +<div class="printfooter"> +Récupérée de « <a href="./Discussion:Accueil.html">https://wiki.gruntnetwork.com/Discussion:Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="index.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="./Discussion:Accueil.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="./index.php5%3Ftitle=Discussion:Accueil&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="./index.php5%3Ftitle=Discussion:Accueil&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Accueil.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Discussion:Accueil.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Discussion:Accueil.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&oldid=11736&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="./index.php5%3Ftitle=Discussion:Accueil&oldid=11736.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.269 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&oldid=11736.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&oldid=11736.orig @@ -0,0 +1,175 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Discussion:Accueil" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Discussion:Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Discussion:Accueil - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = 22; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11736; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 19 juin 2011 à 07:17 par <a href="/Sp%C3%A9cial:Contributions/91.214.45.223" title="Spécial:Contributions/91.214.45.223" class="mw-userlink">91.214.45.223</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:91.214.45.223&action=edit&redlink=1" class="new" title="Discussion utilisateur:91.214.45.223 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>comment5 <a href="http://www.spanjeforum.nl/zakelijk/thread-247479.html" class="external free" title="http://www.spanjeforum.nl/zakelijk/thread-247479.html" rel="nofollow">http://www.spanjeforum.nl/zakelijk/thread-247479.html</a> order flovent cheap overnight +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:22-0!1!0!!fr!2!edit=0 and timestamp 20230503144109 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Discussion:Accueil">https://wiki.gruntnetwork.com/Discussion:Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="/Accueil" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="/Discussion:Accueil" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Discussion:Accueil&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Discussion:Accueil&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Accueil" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Accueil">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Discussion:Accueil" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Discussion:Accueil&oldid=11736&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Discussion:Accueil&oldid=11736" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.269 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes&printable=yes.html @@ -0,0 +1,167 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Discussion:Accueil" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="./index.php5%3Ftitle=Discussion:Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Discussion:Accueil - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = "22"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11736; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Discussion:Accueil&printable=yes&printable=yes.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Discussion:Accueil&printable=yes&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <p>comment5 <a href="http://www.spanjeforum.nl/zakelijk/thread-247479.html" class="external free" title="http://www.spanjeforum.nl/zakelijk/thread-247479.html" rel="nofollow">http://www.spanjeforum.nl/zakelijk/thread-247479.html</a> order flovent cheap overnight +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:22-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144217 --> +<div class="printfooter"> +Récupérée de « <a href="./Discussion:Accueil.html">https://wiki.gruntnetwork.com/Discussion:Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="index.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="./Discussion:Accueil.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="./index.php5%3Ftitle=Discussion:Accueil&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="./index.php5%3Ftitle=Discussion:Accueil&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Accueil.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Discussion:Accueil.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Discussion:Accueil.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="./index.php5%3Ftitle=Discussion:Accueil&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="./index.php5%3Ftitle=Discussion:Accueil&oldid=11736.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 19 juin 2011 à 07:17.<br /></li> + <li id="viewcount">Cette page a été consultée 148 158 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.261 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes&printable=yes.orig @@ -0,0 +1,167 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Discussion:Accueil" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Discussion:Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Discussion:Accueil - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = "22"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11736; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>comment5 <a href="http://www.spanjeforum.nl/zakelijk/thread-247479.html" class="external free" title="http://www.spanjeforum.nl/zakelijk/thread-247479.html" rel="nofollow">http://www.spanjeforum.nl/zakelijk/thread-247479.html</a> order flovent cheap overnight +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:22-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144217 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Discussion:Accueil">https://wiki.gruntnetwork.com/Discussion:Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="/Accueil" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="/Discussion:Accueil" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Discussion:Accueil&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Discussion:Accueil&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Accueil" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Accueil">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Discussion:Accueil" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Discussion:Accueil&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Discussion:Accueil&oldid=11736" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 19 juin 2011 à 07:17.<br /></li> + <li id="viewcount">Cette page a été consultée 148 158 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.261 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes.html @@ -0,0 +1,167 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Discussion:Accueil" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="./index.php5%3Ftitle=Discussion:Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Discussion:Accueil - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = "22"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11736; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Discussion:Accueil&printable=yes.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Discussion:Accueil&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <p>comment5 <a href="http://www.spanjeforum.nl/zakelijk/thread-247479.html" class="external free" title="http://www.spanjeforum.nl/zakelijk/thread-247479.html" rel="nofollow">http://www.spanjeforum.nl/zakelijk/thread-247479.html</a> order flovent cheap overnight +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:22-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144217 --> +<div class="printfooter"> +Récupérée de « <a href="./Discussion:Accueil.html">https://wiki.gruntnetwork.com/Discussion:Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="index.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="./Discussion:Accueil.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="./index.php5%3Ftitle=Discussion:Accueil&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="./index.php5%3Ftitle=Discussion:Accueil&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Accueil.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Discussion:Accueil.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Discussion:Accueil.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="./index.php5%3Ftitle=Discussion:Accueil&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="./index.php5%3Ftitle=Discussion:Accueil&oldid=11736.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 19 juin 2011 à 07:17.<br /></li> + <li id="viewcount">Cette page a été consultée 148 156 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.280 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes.orig @@ -0,0 +1,167 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Discussion:Accueil" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Discussion:Accueil&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Discussion:Accueil - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Accueil"; + var wgTitle = "Accueil"; + var wgAction = "view"; + var wgArticleId = "22"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11736; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Accueil skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Accueil</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>comment5 <a href="http://www.spanjeforum.nl/zakelijk/thread-247479.html" class="external free" title="http://www.spanjeforum.nl/zakelijk/thread-247479.html" rel="nofollow">http://www.spanjeforum.nl/zakelijk/thread-247479.html</a> order flovent cheap overnight +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:22-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144217 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Discussion:Accueil">https://wiki.gruntnetwork.com/Discussion:Accueil</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="/Accueil" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="/Discussion:Accueil" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Discussion:Accueil&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Discussion:Accueil&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Accueil" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Accueil">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Discussion:Accueil" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Discussion:Accueil&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Discussion:Accueil&oldid=11736" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 19 juin 2011 à 07:17.<br /></li> + <li id="viewcount">Cette page a été consultée 148 156 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.280 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=creativecommons b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=creativecommons @@ -0,0 +1,25 @@ +<?xml version='1.0' encoding="UTF-8" ?> +<rdf:RDF xmlns:cc="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <cc:Work rdf:about="https://wiki.gruntnetwork.com/Discussion:Liens"> + <dc:title>Liens</dc:title> + <dc:publisher>Gruntnetwork</dc:publisher> + <dc:language>fr</dc:language> + <dc:type>Text</dc:type> + <dc:format>text/html</dc:format> + <dc:identifier>https://wiki.gruntnetwork.com/Discussion:Liens</dc:identifier> + <dc:date>2009-12-31</dc:date> + <dc:creator>Utilisateur non enregistré sur Gruntnetwork</dc:creator> + <dc:rights rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + <cc:license rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + </cc:Work> + <cc:License rdf:about="http://www.gnu.org/copyleft/fdl.html"> + <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> +</rdf:RDF> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=edit.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=edit.html @@ -0,0 +1,168 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Discussion:Liens,Utilisateurs" /> + <link rel="next" href="./Discussion:Liens.html" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Erreur de permission - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Liens"; + var wgTitle = "Liens"; + var wgAction = "edit"; + var wgArticleId = "21"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 74; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/edit.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Erreur de permission</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Discussion:Liens&action=edit.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Discussion:Liens&action=edit.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="https://wiki.gruntnetwork.com/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly"></textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="./Discussion:Liens.html" title="Discussion:Liens">Discussion:Liens</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="./Discussion:Liens.html">https://wiki.gruntnetwork.com/Discussion:Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="Liens.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="./Discussion:Liens.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="./index.php5%3Ftitle=Discussion:Liens&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="./index.php5%3Ftitle=Discussion:Liens&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Liens.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Liens.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Discussion:Liens.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Discussion:Liens.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.254 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=edit.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=edit.orig @@ -0,0 +1,168 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Discussion:Liens,Utilisateurs" /> + <link rel="next" href="https://wiki.gruntnetwork.com/Discussion:Liens" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Erreur de permission - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Liens"; + var wgTitle = "Liens"; + var wgAction = "edit"; + var wgArticleId = "21"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 74; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/edit.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Erreur de permission</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly"></textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="/Discussion:Liens" title="Discussion:Liens">Discussion:Liens</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Discussion:Liens">https://wiki.gruntnetwork.com/Discussion:Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="/Liens" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="/Discussion:Liens" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="/index.php5?title=Discussion:Liens&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Discussion:Liens&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Discussion:Liens" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.254 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=history.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=history.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="./index.php5%3Ftitle=Discussion:Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Discussion:Liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Discussion:Liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Historique des versions de « Discussion:Liens » - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Liens"; + var wgTitle = "Liens"; + var wgAction = "history"; + var wgArticleId = "21"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 74; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/history.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Discussion:Liens »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Journal&page=Discussion%3ALiens" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Discussion:Liens&action=history.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Discussion:Liens&action=history.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Discussion:Liens" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&limit=20&action=history" title="Discussion:Liens" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&limit=50&action=history" title="Discussion:Liens" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&limit=100&action=history" title="Discussion:Liens" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&limit=250&action=history" title="Discussion:Liens" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&limit=500&action=history" title="Discussion:Liens" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="https://wiki.gruntnetwork.com/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Discussion:Liens" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="./index.php5%3Ftitle=Discussion:Liens&oldid=74.html" title="Discussion:Liens">31 décembre 2009 à 01:17</a> <span class='history-user'><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/195.83.178.10" title="Spécial:Contributions/195.83.178.10" class="mw-userlink">195.83.178.10</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:195.83.178.10&action=edit&redlink=1" class="new" title="Discussion utilisateur:195.83.178.10 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(vide)</span> <span class="comment">(Page blanchie)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&limit=20&action=history" title="Discussion:Liens" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&limit=50&action=history" title="Discussion:Liens" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&limit=100&action=history" title="Discussion:Liens" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&limit=250&action=history" title="Discussion:Liens" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&limit=500&action=history" title="Discussion:Liens" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="./Discussion:Liens.html">https://wiki.gruntnetwork.com/Discussion:Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="Liens.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="./Discussion:Liens.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="./index.php5%3Ftitle=Discussion:Liens&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="./index.php5%3Ftitle=Discussion:Liens&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Liens.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Liens.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Discussion:Liens.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Discussion:Liens.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.251 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=history.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=history.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Discussion:Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Discussion:Liens »" href="/index.php5?title=Discussion:Liens&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Discussion:Liens »" href="/index.php5?title=Discussion:Liens&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Historique des versions de « Discussion:Liens » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Liens"; + var wgTitle = "Liens"; + var wgAction = "history"; + var wgArticleId = "21"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 74; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/history.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Discussion:Liens »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="/index.php5?title=Sp%C3%A9cial:Journal&page=Discussion%3ALiens" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Discussion:Liens" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Discussion:Liens&limit=20&action=history" title="Discussion:Liens" class="mw-numlink">20</a> | <a href="/index.php5?title=Discussion:Liens&limit=50&action=history" title="Discussion:Liens" class="mw-numlink">50</a> | <a href="/index.php5?title=Discussion:Liens&limit=100&action=history" title="Discussion:Liens" class="mw-numlink">100</a> | <a href="/index.php5?title=Discussion:Liens&limit=250&action=history" title="Discussion:Liens" class="mw-numlink">250</a> | <a href="/index.php5?title=Discussion:Liens&limit=500&action=history" title="Discussion:Liens" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Discussion:Liens" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="/index.php5?title=Discussion:Liens&oldid=74" title="Discussion:Liens">31 décembre 2009 à 01:17</a> <span class='history-user'><a href="/Sp%C3%A9cial:Contributions/195.83.178.10" title="Spécial:Contributions/195.83.178.10" class="mw-userlink">195.83.178.10</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:195.83.178.10&action=edit&redlink=1" class="new" title="Discussion utilisateur:195.83.178.10 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(vide)</span> <span class="comment">(Page blanchie)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Discussion:Liens&limit=20&action=history" title="Discussion:Liens" class="mw-numlink">20</a> | <a href="/index.php5?title=Discussion:Liens&limit=50&action=history" title="Discussion:Liens" class="mw-numlink">50</a> | <a href="/index.php5?title=Discussion:Liens&limit=100&action=history" title="Discussion:Liens" class="mw-numlink">100</a> | <a href="/index.php5?title=Discussion:Liens&limit=250&action=history" title="Discussion:Liens" class="mw-numlink">250</a> | <a href="/index.php5?title=Discussion:Liens&limit=500&action=history" title="Discussion:Liens" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Discussion:Liens">https://wiki.gruntnetwork.com/Discussion:Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="/Liens" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="/Discussion:Liens" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Discussion:Liens&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="/index.php5?title=Discussion:Liens&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Discussion:Liens" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Discussion:Liens&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Discussion:Liens&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.251 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&oldid=74.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&oldid=74.html @@ -0,0 +1,174 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Discussion:Liens" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="./index.php5%3Ftitle=Discussion:Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Discussion:Liens - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = 21; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 74; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 31 décembre 2009 à 01:17 par <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/195.83.178.10" title="Spécial:Contributions/195.83.178.10" class="mw-userlink">195.83.178.10</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:195.83.178.10&action=edit&redlink=1" class="new" title="Discussion utilisateur:195.83.178.10 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Discussion:Liens&oldid=74.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Discussion:Liens&oldid=74.html#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:21-0!1!0!!fr!2!edit=0 and timestamp 20230503144201 --> +<div class="printfooter"> +Récupérée de « <a href="./Discussion:Liens.html">https://wiki.gruntnetwork.com/Discussion:Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="Liens.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="./Discussion:Liens.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="./index.php5%3Ftitle=Discussion:Liens&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="./index.php5%3Ftitle=Discussion:Liens&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Liens.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Liens.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Discussion:Liens.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Discussion:Liens.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&oldid=74&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="./index.php5%3Ftitle=Discussion:Liens&oldid=74.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.291 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&oldid=74.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&oldid=74.orig @@ -0,0 +1,174 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Discussion:Liens" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Discussion:Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Discussion:Liens - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = 21; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 74; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 31 décembre 2009 à 01:17 par <a href="/Sp%C3%A9cial:Contributions/195.83.178.10" title="Spécial:Contributions/195.83.178.10" class="mw-userlink">195.83.178.10</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:195.83.178.10&action=edit&redlink=1" class="new" title="Discussion utilisateur:195.83.178.10 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:21-0!1!0!!fr!2!edit=0 and timestamp 20230503144201 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Discussion:Liens">https://wiki.gruntnetwork.com/Discussion:Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="/Liens" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="/Discussion:Liens" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Discussion:Liens&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Discussion:Liens&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Discussion:Liens" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Discussion:Liens&oldid=74&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Discussion:Liens&oldid=74" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.291 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes&printable=yes.html @@ -0,0 +1,166 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Discussion:Liens" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="./index.php5%3Ftitle=Discussion:Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Discussion:Liens - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = "21"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 74; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Discussion:Liens&printable=yes&printable=yes.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Discussion:Liens&printable=yes&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:21-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144603 --> +<div class="printfooter"> +Récupérée de « <a href="./Discussion:Liens.html">https://wiki.gruntnetwork.com/Discussion:Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="Liens.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="./Discussion:Liens.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="./index.php5%3Ftitle=Discussion:Liens&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="./index.php5%3Ftitle=Discussion:Liens&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Liens.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Liens.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Discussion:Liens.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Discussion:Liens.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="./index.php5%3Ftitle=Discussion:Liens&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="./index.php5%3Ftitle=Discussion:Liens&oldid=74.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 31 décembre 2009 à 01:17.<br /></li> + <li id="viewcount">Cette page a été consultée 1 869 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.278 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes&printable=yes.orig @@ -0,0 +1,166 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Discussion:Liens" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Discussion:Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Discussion:Liens - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = "21"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 74; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:21-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144603 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Discussion:Liens">https://wiki.gruntnetwork.com/Discussion:Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="/Liens" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="/Discussion:Liens" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Discussion:Liens&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Discussion:Liens&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Discussion:Liens" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Discussion:Liens&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Discussion:Liens&oldid=74" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 31 décembre 2009 à 01:17.<br /></li> + <li id="viewcount">Cette page a été consultée 1 869 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.278 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes.html @@ -0,0 +1,166 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Discussion:Liens" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="./index.php5%3Ftitle=Discussion:Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Discussion:Liens - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = "21"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 74; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Discussion:Liens&printable=yes.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Discussion:Liens&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:21-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144603 --> +<div class="printfooter"> +Récupérée de « <a href="./Discussion:Liens.html">https://wiki.gruntnetwork.com/Discussion:Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="Liens.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="./Discussion:Liens.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="./index.php5%3Ftitle=Discussion:Liens&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="./index.php5%3Ftitle=Discussion:Liens&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Liens.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Liens.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Discussion:Liens.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Discussion:Liens.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="./index.php5%3Ftitle=Discussion:Liens&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="./index.php5%3Ftitle=Discussion:Liens&oldid=74.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 31 décembre 2009 à 01:17.<br /></li> + <li id="viewcount">Cette page a été consultée 1 867 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.269 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes.orig @@ -0,0 +1,166 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Discussion:Liens" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Discussion:Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Discussion:Liens - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Talk"; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 1; + var wgPageName = "Discussion:Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = "21"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 74; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-1 ns-talk page-Discussion_Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Discussion:Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<!-- +NewPP limit report +Preprocessor node count: 0/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:21-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144603 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Discussion:Liens">https://wiki.gruntnetwork.com/Discussion:Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main"><a href="/Liens" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="selected"><a href="/Discussion:Liens" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Discussion:Liens&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Discussion:Liens&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Discussion:Liens" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Discussion:Liens&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Discussion:Liens&oldid=74" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 31 décembre 2009 à 01:17.<br /></li> + <li id="viewcount">Cette page a été consultée 1 867 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.269 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=creativecommons b/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=creativecommons @@ -0,0 +1,25 @@ +<?xml version='1.0' encoding="UTF-8" ?> +<rdf:RDF xmlns:cc="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <cc:Work rdf:about="https://wiki.gruntnetwork.com/Environnement_de_programmation"> + <dc:title>Environnement de programmation</dc:title> + <dc:publisher>Gruntnetwork</dc:publisher> + <dc:language>fr</dc:language> + <dc:type>Text</dc:type> + <dc:format>text/html</dc:format> + <dc:identifier>https://wiki.gruntnetwork.com/Environnement_de_programmation</dc:identifier> + <dc:date>2009-01-06</dc:date> + <dc:creator>Utilisateur non enregistré sur Gruntnetwork</dc:creator> + <dc:rights rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + <cc:license rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + </cc:Work> + <cc:License rdf:about="http://www.gnu.org/copyleft/fdl.html"> + <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> +</rdf:RDF> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=edit.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=edit.html @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Environnement de programmation,Utilisateurs" /> + <link rel="next" href="Environnement_de_programmation.html" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Environnement_de_programmation"; + var wgTitle = "Environnement de programmation"; + var wgAction = "edit"; + var wgArticleId = "8"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 27; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/edit.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Environnement_de_programmation skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="Environnement_de_programmation.html" title="Environnement de programmation">Environnement de programmation</a></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Environnement_de_programmation&action=edit.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Environnement_de_programmation&action=edit.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="https://wiki.gruntnetwork.com/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">== Éditeur == + +Votre préféré :) Personne ne vous oblige à quoi que ce soit. Prévoyez-en un avec indentation et coloration syntaxique quand même, nano et cat sont un peu rudimentaires de ce point de vue… + +== Gestion des versions == + +SVN sera utilisé pour la gestion des versions. + +<code> + svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme + svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications +</code> + +Voir [http://faq.tuxfamily.org/SVN/Fr la faq de TuxFamily] pour plus d'infos sur l'utilisation. + +== Compilateur == + +Pour le C : '''gcc'''. Car c'est le plus courant sous linux, car il gère directement l'assembleur (syntaxe gas), car beaucoup de monde l'utilise donc on trouvera facilement de la documentation, car il est sous licence libre. + +On utilisera la version 4.3, de préférence 4.3.2 (c'est celle par défaut sous ubuntu, et sous debian testing/unstable). Si vous avez une autre version, pas de problème, mais en cas de bug bizarre, il vaudra mieux vérifier que c'est bien le code qui plante et non pas une version bugguée de gcc (c'est arrivé par le passé…) + +== Tests == + +'''NE TESTEZ JAMAIS gruntnetwork SUR UN PC RÉEL''', à moins que vous n'ayez pas peur d'un effacement de disque. +Je possède moi-même un PC avec un vieux disque dur vide de quelques Go, ça pourra servir pour faire des tests grandeur nature lorsque le projet sera viable. + +Pour les tests nous utiliserons [http://bellard.org/qemu/ qemu], un émulateur de PC libre, fonctionnant sous linux et windows, probablement sous mac aussi. Seule l'architecture x86 sera supportée pour l'instant. + +Lorsque nous en viendrons à écrire les drivers, il sera possible d'utiliser bochs pour voir si les bons drivers sont chargés lorsque la configuration matérielle (l'ensemble du matériel disponible sur un PC) change. + +Le démarrage (boot) sera assuré par [[GRUB]], installé sur une image de disquette vierge (un fichier de 1.44 Mo simulant une disquette sur laquelle seront présents GRUB, gruntnetwork et rien d'autre). Cette configuration simple évitera que d'autres facteurs de causent des bugs.</textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="Environnement_de_programmation.html" title="Environnement de programmation">Environnement de programmation</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="Environnement_de_programmation.html">https://wiki.gruntnetwork.com/Environnement_de_programmation</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Environnement_de_programmation.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Environnement_de_programmation&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="index.php5%3Ftitle=Environnement_de_programmation&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Environnement_de_programmation&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Environnement_de_programmation.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Environnement_de_programmation.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Environnement_de_programmation.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.250 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=edit.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=edit.orig @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Environnement de programmation,Utilisateurs" /> + <link rel="next" href="https://wiki.gruntnetwork.com/Environnement_de_programmation" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Environnement_de_programmation"; + var wgTitle = "Environnement de programmation"; + var wgAction = "edit"; + var wgArticleId = "8"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 27; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/edit.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Environnement_de_programmation skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="/Environnement_de_programmation" title="Environnement de programmation">Environnement de programmation</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">== Éditeur == + +Votre préféré :) Personne ne vous oblige à quoi que ce soit. Prévoyez-en un avec indentation et coloration syntaxique quand même, nano et cat sont un peu rudimentaires de ce point de vue… + +== Gestion des versions == + +SVN sera utilisé pour la gestion des versions. + +<code> + svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme + svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications +</code> + +Voir [http://faq.tuxfamily.org/SVN/Fr la faq de TuxFamily] pour plus d'infos sur l'utilisation. + +== Compilateur == + +Pour le C : '''gcc'''. Car c'est le plus courant sous linux, car il gère directement l'assembleur (syntaxe gas), car beaucoup de monde l'utilise donc on trouvera facilement de la documentation, car il est sous licence libre. + +On utilisera la version 4.3, de préférence 4.3.2 (c'est celle par défaut sous ubuntu, et sous debian testing/unstable). Si vous avez une autre version, pas de problème, mais en cas de bug bizarre, il vaudra mieux vérifier que c'est bien le code qui plante et non pas une version bugguée de gcc (c'est arrivé par le passé…) + +== Tests == + +'''NE TESTEZ JAMAIS gruntnetwork SUR UN PC RÉEL''', à moins que vous n'ayez pas peur d'un effacement de disque. +Je possède moi-même un PC avec un vieux disque dur vide de quelques Go, ça pourra servir pour faire des tests grandeur nature lorsque le projet sera viable. + +Pour les tests nous utiliserons [http://bellard.org/qemu/ qemu], un émulateur de PC libre, fonctionnant sous linux et windows, probablement sous mac aussi. Seule l'architecture x86 sera supportée pour l'instant. + +Lorsque nous en viendrons à écrire les drivers, il sera possible d'utiliser bochs pour voir si les bons drivers sont chargés lorsque la configuration matérielle (l'ensemble du matériel disponible sur un PC) change. + +Le démarrage (boot) sera assuré par [[GRUB]], installé sur une image de disquette vierge (un fichier de 1.44 Mo simulant une disquette sur laquelle seront présents GRUB, gruntnetwork et rien d'autre). Cette configuration simple évitera que d'autres facteurs de causent des bugs.</textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="/Environnement_de_programmation" title="Environnement de programmation">Environnement de programmation</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Environnement_de_programmation">https://wiki.gruntnetwork.com/Environnement_de_programmation</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Environnement_de_programmation" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Environnement_de_programmation&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="/index.php5?title=Environnement_de_programmation&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Environnement_de_programmation&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Environnement_de_programmation" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Environnement_de_programmation">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Environnement_de_programmation" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.250 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=history.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=history.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Environnement_de_programmation&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Environnement de programmation »" href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Environnement de programmation »" href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Historique des versions de « Environnement de programmation » - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Environnement_de_programmation"; + var wgTitle = "Environnement de programmation"; + var wgAction = "history"; + var wgArticleId = "8"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 27; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/history.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Environnement_de_programmation skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Environnement de programmation »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Journal&page=Environnement_de_programmation" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Environnement_de_programmation&action=history.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Environnement_de_programmation&action=history.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Environnement_de_programmation" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&limit=20&action=history" title="Environnement de programmation" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&limit=50&action=history" title="Environnement de programmation" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&limit=100&action=history" title="Environnement de programmation" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&limit=250&action=history" title="Environnement de programmation" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&limit=500&action=history" title="Environnement de programmation" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="https://wiki.gruntnetwork.com/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Environnement_de_programmation" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="index.php5%3Ftitle=Environnement_de_programmation&oldid=27.html" title="Environnement de programmation">6 janvier 2009 à 11:51</a> <span class='history-user'><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/162.38.218.206" title="Spécial:Contributions/162.38.218.206" class="mw-userlink">162.38.218.206</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:162.38.218.206&action=edit&redlink=1" class="new" title="Discussion utilisateur:162.38.218.206 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(2 146 octets)</span> <span class="comment">(<span class="autocomment"><a href="Environnement_de_programmation.html#Tests" title="Environnement de programmation">→</a>Tests</span>)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&limit=20&action=history" title="Environnement de programmation" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&limit=50&action=history" title="Environnement de programmation" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&limit=100&action=history" title="Environnement de programmation" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&limit=250&action=history" title="Environnement de programmation" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&limit=500&action=history" title="Environnement de programmation" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="Environnement_de_programmation.html">https://wiki.gruntnetwork.com/Environnement_de_programmation</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Environnement_de_programmation.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Environnement_de_programmation&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Environnement_de_programmation&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="index.php5%3Ftitle=Environnement_de_programmation&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Environnement_de_programmation.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Environnement_de_programmation.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Environnement_de_programmation.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.250 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=history.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=history.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Environnement_de_programmation&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Environnement de programmation »" href="/index.php5?title=Environnement_de_programmation&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Environnement de programmation »" href="/index.php5?title=Environnement_de_programmation&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Historique des versions de « Environnement de programmation » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Environnement_de_programmation"; + var wgTitle = "Environnement de programmation"; + var wgAction = "history"; + var wgArticleId = "8"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 27; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/history.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Environnement_de_programmation skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Environnement de programmation »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="/index.php5?title=Sp%C3%A9cial:Journal&page=Environnement_de_programmation" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Environnement_de_programmation" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Environnement_de_programmation&limit=20&action=history" title="Environnement de programmation" class="mw-numlink">20</a> | <a href="/index.php5?title=Environnement_de_programmation&limit=50&action=history" title="Environnement de programmation" class="mw-numlink">50</a> | <a href="/index.php5?title=Environnement_de_programmation&limit=100&action=history" title="Environnement de programmation" class="mw-numlink">100</a> | <a href="/index.php5?title=Environnement_de_programmation&limit=250&action=history" title="Environnement de programmation" class="mw-numlink">250</a> | <a href="/index.php5?title=Environnement_de_programmation&limit=500&action=history" title="Environnement de programmation" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Environnement_de_programmation" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="/index.php5?title=Environnement_de_programmation&oldid=27" title="Environnement de programmation">6 janvier 2009 à 11:51</a> <span class='history-user'><a href="/Sp%C3%A9cial:Contributions/162.38.218.206" title="Spécial:Contributions/162.38.218.206" class="mw-userlink">162.38.218.206</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:162.38.218.206&action=edit&redlink=1" class="new" title="Discussion utilisateur:162.38.218.206 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(2 146 octets)</span> <span class="comment">(<span class="autocomment"><a href="/Environnement_de_programmation#Tests" title="Environnement de programmation">→</a>Tests</span>)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Environnement_de_programmation&limit=20&action=history" title="Environnement de programmation" class="mw-numlink">20</a> | <a href="/index.php5?title=Environnement_de_programmation&limit=50&action=history" title="Environnement de programmation" class="mw-numlink">50</a> | <a href="/index.php5?title=Environnement_de_programmation&limit=100&action=history" title="Environnement de programmation" class="mw-numlink">100</a> | <a href="/index.php5?title=Environnement_de_programmation&limit=250&action=history" title="Environnement de programmation" class="mw-numlink">250</a> | <a href="/index.php5?title=Environnement_de_programmation&limit=500&action=history" title="Environnement de programmation" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Environnement_de_programmation">https://wiki.gruntnetwork.com/Environnement_de_programmation</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Environnement_de_programmation" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Environnement_de_programmation&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Environnement_de_programmation&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="/index.php5?title=Environnement_de_programmation&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Environnement_de_programmation" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Environnement_de_programmation">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Environnement_de_programmation" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Environnement_de_programmation&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Environnement_de_programmation&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.250 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&oldid=27.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&oldid=27.html @@ -0,0 +1,205 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Environnement de programmation,GRUB" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Environnement_de_programmation&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Environnement de programmation - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Environnement_de_programmation"; + var wgTitle = "Environnement de programmation"; + var wgAction = "view"; + var wgArticleId = 8; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 27; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Environnement_de_programmation skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Environnement de programmation</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 6 janvier 2009 à 11:51 par <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/162.38.218.206" title="Spécial:Contributions/162.38.218.206" class="mw-userlink">162.38.218.206</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:162.38.218.206&action=edit&redlink=1" class="new" title="Discussion utilisateur:162.38.218.206 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Environnement_de_programmation&oldid=27.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Environnement_de_programmation&oldid=27.html#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Environnement_de_programmation&oldid=27.html#.C3.89diteur"><span class="tocnumber">1</span> <span class="toctext">Éditeur</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Environnement_de_programmation&oldid=27.html#Gestion_des_versions"><span class="tocnumber">2</span> <span class="toctext">Gestion des versions</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Environnement_de_programmation&oldid=27.html#Compilateur"><span class="tocnumber">3</span> <span class="toctext">Compilateur</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Environnement_de_programmation&oldid=27.html#Tests"><span class="tocnumber">4</span> <span class="toctext">Tests</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name=".C3.89diteur" id=".C3.89diteur"></a><h2> <span class="mw-headline"> Éditeur </span></h2> +<p>Votre préféré :) Personne ne vous oblige à quoi que ce soit. Prévoyez-en un avec indentation et coloration syntaxique quand même, nano et cat sont un peu rudimentaires de ce point de vue… +</p> +<a name="Gestion_des_versions" id="Gestion_des_versions"></a><h2> <span class="mw-headline"> Gestion des versions </span></h2> +<p>SVN sera utilisé pour la gestion des versions. +</p><p><code> +</p> +<pre>svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme +svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications +</pre> +<p></code> +</p><p>Voir <a href="http://faq.tuxfamily.org/SVN/Fr" class="external text" title="http://faq.tuxfamily.org/SVN/Fr" rel="nofollow">la faq de TuxFamily</a> pour plus d'infos sur l'utilisation. +</p> +<a name="Compilateur" id="Compilateur"></a><h2> <span class="mw-headline"> Compilateur </span></h2> +<p>Pour le C : <b>gcc</b>. Car c'est le plus courant sous linux, car il gère directement l'assembleur (syntaxe gas), car beaucoup de monde l'utilise donc on trouvera facilement de la documentation, car il est sous licence libre. +</p><p>On utilisera la version 4.3, de préférence 4.3.2 (c'est celle par défaut sous ubuntu, et sous debian testing/unstable). Si vous avez une autre version, pas de problème, mais en cas de bug bizarre, il vaudra mieux vérifier que c'est bien le code qui plante et non pas une version bugguée de gcc (c'est arrivé par le passé…) +</p> +<a name="Tests" id="Tests"></a><h2> <span class="mw-headline"> Tests </span></h2> +<p><b>NE TESTEZ JAMAIS gruntnetwork SUR UN PC RÉEL</b>, à moins que vous n'ayez pas peur d'un effacement de disque. +Je possède moi-même un PC avec un vieux disque dur vide de quelques Go, ça pourra servir pour faire des tests grandeur nature lorsque le projet sera viable. +</p><p>Pour les tests nous utiliserons <a href="http://bellard.org/qemu/" class="external text" title="http://bellard.org/qemu/" rel="nofollow">qemu</a>, un émulateur de PC libre, fonctionnant sous linux et windows, probablement sous mac aussi. Seule l'architecture x86 sera supportée pour l'instant. +</p><p>Lorsque nous en viendrons à écrire les drivers, il sera possible d'utiliser bochs pour voir si les bons drivers sont chargés lorsque la configuration matérielle (l'ensemble du matériel disponible sur un PC) change. +</p><p>Le démarrage (boot) sera assuré par <a href="GRUB.html" title="GRUB">GRUB</a>, installé sur une image de disquette vierge (un fichier de 1.44 Mo simulant une disquette sur laquelle seront présents GRUB, gruntnetwork et rien d'autre). Cette configuration simple évitera que d'autres facteurs de causent des bugs. +</p> +<!-- +NewPP limit report +Preprocessor node count: 5/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:8-0!1!0!!fr!2!edit=0 and timestamp 20230503142347 --> +<div class="printfooter"> +Récupérée de « <a href="Environnement_de_programmation.html">https://wiki.gruntnetwork.com/Environnement_de_programmation</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Environnement_de_programmation.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Environnement_de_programmation&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Environnement_de_programmation&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Environnement_de_programmation&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Environnement_de_programmation.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Environnement_de_programmation.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Environnement_de_programmation.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&oldid=27&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Environnement_de_programmation&oldid=27.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.300 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&oldid=27.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&oldid=27.orig @@ -0,0 +1,205 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Environnement de programmation,GRUB" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Environnement_de_programmation&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Environnement de programmation - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Environnement_de_programmation"; + var wgTitle = "Environnement de programmation"; + var wgAction = "view"; + var wgArticleId = 8; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 27; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Environnement_de_programmation skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Environnement de programmation</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 6 janvier 2009 à 11:51 par <a href="/Sp%C3%A9cial:Contributions/162.38.218.206" title="Spécial:Contributions/162.38.218.206" class="mw-userlink">162.38.218.206</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:162.38.218.206&action=edit&redlink=1" class="new" title="Discussion utilisateur:162.38.218.206 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#.C3.89diteur"><span class="tocnumber">1</span> <span class="toctext">Éditeur</span></a></li> +<li class="toclevel-1"><a href="#Gestion_des_versions"><span class="tocnumber">2</span> <span class="toctext">Gestion des versions</span></a></li> +<li class="toclevel-1"><a href="#Compilateur"><span class="tocnumber">3</span> <span class="toctext">Compilateur</span></a></li> +<li class="toclevel-1"><a href="#Tests"><span class="tocnumber">4</span> <span class="toctext">Tests</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name=".C3.89diteur" id=".C3.89diteur"></a><h2> <span class="mw-headline"> Éditeur </span></h2> +<p>Votre préféré :) Personne ne vous oblige à quoi que ce soit. Prévoyez-en un avec indentation et coloration syntaxique quand même, nano et cat sont un peu rudimentaires de ce point de vue… +</p> +<a name="Gestion_des_versions" id="Gestion_des_versions"></a><h2> <span class="mw-headline"> Gestion des versions </span></h2> +<p>SVN sera utilisé pour la gestion des versions. +</p><p><code> +</p> +<pre>svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme +svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications +</pre> +<p></code> +</p><p>Voir <a href="http://faq.tuxfamily.org/SVN/Fr" class="external text" title="http://faq.tuxfamily.org/SVN/Fr" rel="nofollow">la faq de TuxFamily</a> pour plus d'infos sur l'utilisation. +</p> +<a name="Compilateur" id="Compilateur"></a><h2> <span class="mw-headline"> Compilateur </span></h2> +<p>Pour le C : <b>gcc</b>. Car c'est le plus courant sous linux, car il gère directement l'assembleur (syntaxe gas), car beaucoup de monde l'utilise donc on trouvera facilement de la documentation, car il est sous licence libre. +</p><p>On utilisera la version 4.3, de préférence 4.3.2 (c'est celle par défaut sous ubuntu, et sous debian testing/unstable). Si vous avez une autre version, pas de problème, mais en cas de bug bizarre, il vaudra mieux vérifier que c'est bien le code qui plante et non pas une version bugguée de gcc (c'est arrivé par le passé…) +</p> +<a name="Tests" id="Tests"></a><h2> <span class="mw-headline"> Tests </span></h2> +<p><b>NE TESTEZ JAMAIS gruntnetwork SUR UN PC RÉEL</b>, à moins que vous n'ayez pas peur d'un effacement de disque. +Je possède moi-même un PC avec un vieux disque dur vide de quelques Go, ça pourra servir pour faire des tests grandeur nature lorsque le projet sera viable. +</p><p>Pour les tests nous utiliserons <a href="http://bellard.org/qemu/" class="external text" title="http://bellard.org/qemu/" rel="nofollow">qemu</a>, un émulateur de PC libre, fonctionnant sous linux et windows, probablement sous mac aussi. Seule l'architecture x86 sera supportée pour l'instant. +</p><p>Lorsque nous en viendrons à écrire les drivers, il sera possible d'utiliser bochs pour voir si les bons drivers sont chargés lorsque la configuration matérielle (l'ensemble du matériel disponible sur un PC) change. +</p><p>Le démarrage (boot) sera assuré par <a href="/GRUB" title="GRUB">GRUB</a>, installé sur une image de disquette vierge (un fichier de 1.44 Mo simulant une disquette sur laquelle seront présents GRUB, gruntnetwork et rien d'autre). Cette configuration simple évitera que d'autres facteurs de causent des bugs. +</p> +<!-- +NewPP limit report +Preprocessor node count: 5/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:8-0!1!0!!fr!2!edit=0 and timestamp 20230503142347 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Environnement_de_programmation">https://wiki.gruntnetwork.com/Environnement_de_programmation</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Environnement_de_programmation" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Environnement_de_programmation&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Environnement_de_programmation&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Environnement_de_programmation&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Environnement_de_programmation" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Environnement_de_programmation">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Environnement_de_programmation" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Environnement_de_programmation&oldid=27&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Environnement_de_programmation&oldid=27" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.300 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes&printable=yes.html @@ -0,0 +1,197 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Environnement de programmation,GRUB" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Environnement_de_programmation&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Environnement de programmation - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Environnement_de_programmation"; + var wgTitle = "Environnement de programmation"; + var wgAction = "view"; + var wgArticleId = "8"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 27; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Environnement_de_programmation skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Environnement de programmation</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Environnement_de_programmation&printable=yes&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Environnement_de_programmation&printable=yes&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Environnement_de_programmation&printable=yes&printable=yes.html#.C3.89diteur"><span class="tocnumber">1</span> <span class="toctext">Éditeur</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Environnement_de_programmation&printable=yes&printable=yes.html#Gestion_des_versions"><span class="tocnumber">2</span> <span class="toctext">Gestion des versions</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Environnement_de_programmation&printable=yes&printable=yes.html#Compilateur"><span class="tocnumber">3</span> <span class="toctext">Compilateur</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Environnement_de_programmation&printable=yes&printable=yes.html#Tests"><span class="tocnumber">4</span> <span class="toctext">Tests</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name=".C3.89diteur" id=".C3.89diteur"></a><h2> <span class="mw-headline"> Éditeur </span></h2> +<p>Votre préféré :) Personne ne vous oblige à quoi que ce soit. Prévoyez-en un avec indentation et coloration syntaxique quand même, nano et cat sont un peu rudimentaires de ce point de vue… +</p> +<a name="Gestion_des_versions" id="Gestion_des_versions"></a><h2> <span class="mw-headline"> Gestion des versions </span></h2> +<p>SVN sera utilisé pour la gestion des versions. +</p><p><code> +</p> +<pre>svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme +svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications +</pre> +<p></code> +</p><p>Voir <a href="http://faq.tuxfamily.org/SVN/Fr" class="external text" title="http://faq.tuxfamily.org/SVN/Fr" rel="nofollow">la faq de TuxFamily</a> pour plus d'infos sur l'utilisation. +</p> +<a name="Compilateur" id="Compilateur"></a><h2> <span class="mw-headline"> Compilateur </span></h2> +<p>Pour le C : <b>gcc</b>. Car c'est le plus courant sous linux, car il gère directement l'assembleur (syntaxe gas), car beaucoup de monde l'utilise donc on trouvera facilement de la documentation, car il est sous licence libre. +</p><p>On utilisera la version 4.3, de préférence 4.3.2 (c'est celle par défaut sous ubuntu, et sous debian testing/unstable). Si vous avez une autre version, pas de problème, mais en cas de bug bizarre, il vaudra mieux vérifier que c'est bien le code qui plante et non pas une version bugguée de gcc (c'est arrivé par le passé…) +</p> +<a name="Tests" id="Tests"></a><h2> <span class="mw-headline"> Tests </span></h2> +<p><b>NE TESTEZ JAMAIS gruntnetwork SUR UN PC RÉEL</b>, à moins que vous n'ayez pas peur d'un effacement de disque. +Je possède moi-même un PC avec un vieux disque dur vide de quelques Go, ça pourra servir pour faire des tests grandeur nature lorsque le projet sera viable. +</p><p>Pour les tests nous utiliserons <a href="http://bellard.org/qemu/" class="external text" title="http://bellard.org/qemu/" rel="nofollow">qemu</a>, un émulateur de PC libre, fonctionnant sous linux et windows, probablement sous mac aussi. Seule l'architecture x86 sera supportée pour l'instant. +</p><p>Lorsque nous en viendrons à écrire les drivers, il sera possible d'utiliser bochs pour voir si les bons drivers sont chargés lorsque la configuration matérielle (l'ensemble du matériel disponible sur un PC) change. +</p><p>Le démarrage (boot) sera assuré par <a href="GRUB.html" title="GRUB">GRUB</a>, installé sur une image de disquette vierge (un fichier de 1.44 Mo simulant une disquette sur laquelle seront présents GRUB, gruntnetwork et rien d'autre). Cette configuration simple évitera que d'autres facteurs de causent des bugs. +</p> +<!-- +NewPP limit report +Preprocessor node count: 5/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:8-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144159 --> +<div class="printfooter"> +Récupérée de « <a href="Environnement_de_programmation.html">https://wiki.gruntnetwork.com/Environnement_de_programmation</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Environnement_de_programmation.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Environnement_de_programmation&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Environnement_de_programmation&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Environnement_de_programmation&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Environnement_de_programmation.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Environnement_de_programmation.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Environnement_de_programmation.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Environnement_de_programmation&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Environnement_de_programmation&oldid=27.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 6 janvier 2009 à 11:51.<br /></li> + <li id="viewcount">Cette page a été consultée 1 691 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.273 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes&printable=yes.orig @@ -0,0 +1,197 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Environnement de programmation,GRUB" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Environnement_de_programmation&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Environnement de programmation - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Environnement_de_programmation"; + var wgTitle = "Environnement de programmation"; + var wgAction = "view"; + var wgArticleId = "8"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 27; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Environnement_de_programmation skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Environnement de programmation</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#.C3.89diteur"><span class="tocnumber">1</span> <span class="toctext">Éditeur</span></a></li> +<li class="toclevel-1"><a href="#Gestion_des_versions"><span class="tocnumber">2</span> <span class="toctext">Gestion des versions</span></a></li> +<li class="toclevel-1"><a href="#Compilateur"><span class="tocnumber">3</span> <span class="toctext">Compilateur</span></a></li> +<li class="toclevel-1"><a href="#Tests"><span class="tocnumber">4</span> <span class="toctext">Tests</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name=".C3.89diteur" id=".C3.89diteur"></a><h2> <span class="mw-headline"> Éditeur </span></h2> +<p>Votre préféré :) Personne ne vous oblige à quoi que ce soit. Prévoyez-en un avec indentation et coloration syntaxique quand même, nano et cat sont un peu rudimentaires de ce point de vue… +</p> +<a name="Gestion_des_versions" id="Gestion_des_versions"></a><h2> <span class="mw-headline"> Gestion des versions </span></h2> +<p>SVN sera utilisé pour la gestion des versions. +</p><p><code> +</p> +<pre>svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme +svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications +</pre> +<p></code> +</p><p>Voir <a href="http://faq.tuxfamily.org/SVN/Fr" class="external text" title="http://faq.tuxfamily.org/SVN/Fr" rel="nofollow">la faq de TuxFamily</a> pour plus d'infos sur l'utilisation. +</p> +<a name="Compilateur" id="Compilateur"></a><h2> <span class="mw-headline"> Compilateur </span></h2> +<p>Pour le C : <b>gcc</b>. Car c'est le plus courant sous linux, car il gère directement l'assembleur (syntaxe gas), car beaucoup de monde l'utilise donc on trouvera facilement de la documentation, car il est sous licence libre. +</p><p>On utilisera la version 4.3, de préférence 4.3.2 (c'est celle par défaut sous ubuntu, et sous debian testing/unstable). Si vous avez une autre version, pas de problème, mais en cas de bug bizarre, il vaudra mieux vérifier que c'est bien le code qui plante et non pas une version bugguée de gcc (c'est arrivé par le passé…) +</p> +<a name="Tests" id="Tests"></a><h2> <span class="mw-headline"> Tests </span></h2> +<p><b>NE TESTEZ JAMAIS gruntnetwork SUR UN PC RÉEL</b>, à moins que vous n'ayez pas peur d'un effacement de disque. +Je possède moi-même un PC avec un vieux disque dur vide de quelques Go, ça pourra servir pour faire des tests grandeur nature lorsque le projet sera viable. +</p><p>Pour les tests nous utiliserons <a href="http://bellard.org/qemu/" class="external text" title="http://bellard.org/qemu/" rel="nofollow">qemu</a>, un émulateur de PC libre, fonctionnant sous linux et windows, probablement sous mac aussi. Seule l'architecture x86 sera supportée pour l'instant. +</p><p>Lorsque nous en viendrons à écrire les drivers, il sera possible d'utiliser bochs pour voir si les bons drivers sont chargés lorsque la configuration matérielle (l'ensemble du matériel disponible sur un PC) change. +</p><p>Le démarrage (boot) sera assuré par <a href="/GRUB" title="GRUB">GRUB</a>, installé sur une image de disquette vierge (un fichier de 1.44 Mo simulant une disquette sur laquelle seront présents GRUB, gruntnetwork et rien d'autre). Cette configuration simple évitera que d'autres facteurs de causent des bugs. +</p> +<!-- +NewPP limit report +Preprocessor node count: 5/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:8-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144159 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Environnement_de_programmation">https://wiki.gruntnetwork.com/Environnement_de_programmation</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Environnement_de_programmation" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Environnement_de_programmation&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Environnement_de_programmation&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Environnement_de_programmation&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Environnement_de_programmation" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Environnement_de_programmation">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Environnement_de_programmation" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Environnement_de_programmation&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Environnement_de_programmation&oldid=27" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 6 janvier 2009 à 11:51.<br /></li> + <li id="viewcount">Cette page a été consultée 1 691 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.273 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes.html @@ -0,0 +1,197 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Environnement de programmation,GRUB" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Environnement_de_programmation&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Environnement de programmation - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Environnement_de_programmation"; + var wgTitle = "Environnement de programmation"; + var wgAction = "view"; + var wgArticleId = "8"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 27; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Environnement_de_programmation skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Environnement de programmation</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Environnement_de_programmation&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Environnement_de_programmation&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Environnement_de_programmation&printable=yes.html#.C3.89diteur"><span class="tocnumber">1</span> <span class="toctext">Éditeur</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Environnement_de_programmation&printable=yes.html#Gestion_des_versions"><span class="tocnumber">2</span> <span class="toctext">Gestion des versions</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Environnement_de_programmation&printable=yes.html#Compilateur"><span class="tocnumber">3</span> <span class="toctext">Compilateur</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Environnement_de_programmation&printable=yes.html#Tests"><span class="tocnumber">4</span> <span class="toctext">Tests</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name=".C3.89diteur" id=".C3.89diteur"></a><h2> <span class="mw-headline"> Éditeur </span></h2> +<p>Votre préféré :) Personne ne vous oblige à quoi que ce soit. Prévoyez-en un avec indentation et coloration syntaxique quand même, nano et cat sont un peu rudimentaires de ce point de vue… +</p> +<a name="Gestion_des_versions" id="Gestion_des_versions"></a><h2> <span class="mw-headline"> Gestion des versions </span></h2> +<p>SVN sera utilisé pour la gestion des versions. +</p><p><code> +</p> +<pre>svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme +svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications +</pre> +<p></code> +</p><p>Voir <a href="http://faq.tuxfamily.org/SVN/Fr" class="external text" title="http://faq.tuxfamily.org/SVN/Fr" rel="nofollow">la faq de TuxFamily</a> pour plus d'infos sur l'utilisation. +</p> +<a name="Compilateur" id="Compilateur"></a><h2> <span class="mw-headline"> Compilateur </span></h2> +<p>Pour le C : <b>gcc</b>. Car c'est le plus courant sous linux, car il gère directement l'assembleur (syntaxe gas), car beaucoup de monde l'utilise donc on trouvera facilement de la documentation, car il est sous licence libre. +</p><p>On utilisera la version 4.3, de préférence 4.3.2 (c'est celle par défaut sous ubuntu, et sous debian testing/unstable). Si vous avez une autre version, pas de problème, mais en cas de bug bizarre, il vaudra mieux vérifier que c'est bien le code qui plante et non pas une version bugguée de gcc (c'est arrivé par le passé…) +</p> +<a name="Tests" id="Tests"></a><h2> <span class="mw-headline"> Tests </span></h2> +<p><b>NE TESTEZ JAMAIS gruntnetwork SUR UN PC RÉEL</b>, à moins que vous n'ayez pas peur d'un effacement de disque. +Je possède moi-même un PC avec un vieux disque dur vide de quelques Go, ça pourra servir pour faire des tests grandeur nature lorsque le projet sera viable. +</p><p>Pour les tests nous utiliserons <a href="http://bellard.org/qemu/" class="external text" title="http://bellard.org/qemu/" rel="nofollow">qemu</a>, un émulateur de PC libre, fonctionnant sous linux et windows, probablement sous mac aussi. Seule l'architecture x86 sera supportée pour l'instant. +</p><p>Lorsque nous en viendrons à écrire les drivers, il sera possible d'utiliser bochs pour voir si les bons drivers sont chargés lorsque la configuration matérielle (l'ensemble du matériel disponible sur un PC) change. +</p><p>Le démarrage (boot) sera assuré par <a href="GRUB.html" title="GRUB">GRUB</a>, installé sur une image de disquette vierge (un fichier de 1.44 Mo simulant une disquette sur laquelle seront présents GRUB, gruntnetwork et rien d'autre). Cette configuration simple évitera que d'autres facteurs de causent des bugs. +</p> +<!-- +NewPP limit report +Preprocessor node count: 5/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:8-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144159 --> +<div class="printfooter"> +Récupérée de « <a href="Environnement_de_programmation.html">https://wiki.gruntnetwork.com/Environnement_de_programmation</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Environnement_de_programmation.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Environnement_de_programmation&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Environnement_de_programmation&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Environnement_de_programmation&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Environnement_de_programmation.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Environnement_de_programmation.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Environnement_de_programmation.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Environnement_de_programmation&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Environnement_de_programmation&oldid=27.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 6 janvier 2009 à 11:51.<br /></li> + <li id="viewcount">Cette page a été consultée 1 689 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.345 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes.orig @@ -0,0 +1,197 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Environnement de programmation,GRUB" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Environnement_de_programmation&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Environnement de programmation - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Environnement_de_programmation"; + var wgTitle = "Environnement de programmation"; + var wgAction = "view"; + var wgArticleId = "8"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 27; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Environnement_de_programmation skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Environnement de programmation</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#.C3.89diteur"><span class="tocnumber">1</span> <span class="toctext">Éditeur</span></a></li> +<li class="toclevel-1"><a href="#Gestion_des_versions"><span class="tocnumber">2</span> <span class="toctext">Gestion des versions</span></a></li> +<li class="toclevel-1"><a href="#Compilateur"><span class="tocnumber">3</span> <span class="toctext">Compilateur</span></a></li> +<li class="toclevel-1"><a href="#Tests"><span class="tocnumber">4</span> <span class="toctext">Tests</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name=".C3.89diteur" id=".C3.89diteur"></a><h2> <span class="mw-headline"> Éditeur </span></h2> +<p>Votre préféré :) Personne ne vous oblige à quoi que ce soit. Prévoyez-en un avec indentation et coloration syntaxique quand même, nano et cat sont un peu rudimentaires de ce point de vue… +</p> +<a name="Gestion_des_versions" id="Gestion_des_versions"></a><h2> <span class="mw-headline"> Gestion des versions </span></h2> +<p>SVN sera utilisé pour la gestion des versions. +</p><p><code> +</p> +<pre>svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme +svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications +</pre> +<p></code> +</p><p>Voir <a href="http://faq.tuxfamily.org/SVN/Fr" class="external text" title="http://faq.tuxfamily.org/SVN/Fr" rel="nofollow">la faq de TuxFamily</a> pour plus d'infos sur l'utilisation. +</p> +<a name="Compilateur" id="Compilateur"></a><h2> <span class="mw-headline"> Compilateur </span></h2> +<p>Pour le C : <b>gcc</b>. Car c'est le plus courant sous linux, car il gère directement l'assembleur (syntaxe gas), car beaucoup de monde l'utilise donc on trouvera facilement de la documentation, car il est sous licence libre. +</p><p>On utilisera la version 4.3, de préférence 4.3.2 (c'est celle par défaut sous ubuntu, et sous debian testing/unstable). Si vous avez une autre version, pas de problème, mais en cas de bug bizarre, il vaudra mieux vérifier que c'est bien le code qui plante et non pas une version bugguée de gcc (c'est arrivé par le passé…) +</p> +<a name="Tests" id="Tests"></a><h2> <span class="mw-headline"> Tests </span></h2> +<p><b>NE TESTEZ JAMAIS gruntnetwork SUR UN PC RÉEL</b>, à moins que vous n'ayez pas peur d'un effacement de disque. +Je possède moi-même un PC avec un vieux disque dur vide de quelques Go, ça pourra servir pour faire des tests grandeur nature lorsque le projet sera viable. +</p><p>Pour les tests nous utiliserons <a href="http://bellard.org/qemu/" class="external text" title="http://bellard.org/qemu/" rel="nofollow">qemu</a>, un émulateur de PC libre, fonctionnant sous linux et windows, probablement sous mac aussi. Seule l'architecture x86 sera supportée pour l'instant. +</p><p>Lorsque nous en viendrons à écrire les drivers, il sera possible d'utiliser bochs pour voir si les bons drivers sont chargés lorsque la configuration matérielle (l'ensemble du matériel disponible sur un PC) change. +</p><p>Le démarrage (boot) sera assuré par <a href="/GRUB" title="GRUB">GRUB</a>, installé sur une image de disquette vierge (un fichier de 1.44 Mo simulant une disquette sur laquelle seront présents GRUB, gruntnetwork et rien d'autre). Cette configuration simple évitera que d'autres facteurs de causent des bugs. +</p> +<!-- +NewPP limit report +Preprocessor node count: 5/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:8-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144159 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Environnement_de_programmation">https://wiki.gruntnetwork.com/Environnement_de_programmation</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Environnement_de_programmation" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Environnement_de_programmation&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Environnement_de_programmation&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Environnement_de_programmation&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Environnement_de_programmation" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Environnement_de_programmation">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Environnement_de_programmation" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Environnement_de_programmation&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Environnement_de_programmation&oldid=27" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 6 janvier 2009 à 11:51.<br /></li> + <li id="viewcount">Cette page a été consultée 1 689 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.345 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=creativecommons b/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=creativecommons @@ -0,0 +1,25 @@ +<?xml version='1.0' encoding="UTF-8" ?> +<rdf:RDF xmlns:cc="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <cc:Work rdf:about="https://wiki.gruntnetwork.com/GRUB"> + <dc:title>GRUB</dc:title> + <dc:publisher>Gruntnetwork</dc:publisher> + <dc:language>fr</dc:language> + <dc:type>Text</dc:type> + <dc:format>text/html</dc:format> + <dc:identifier>https://wiki.gruntnetwork.com/GRUB</dc:identifier> + <dc:date>2009-01-06</dc:date> + <dc:creator>Utilisateur non enregistré sur Gruntnetwork</dc:creator> + <dc:rights rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + <cc:license rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + </cc:Work> + <cc:License rdf:about="http://www.gnu.org/copyleft/fdl.html"> + <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> +</rdf:RDF> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=edit.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=edit.html @@ -0,0 +1,170 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="GRUB,Utilisateurs" /> + <link rel="next" href="GRUB.html" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "GRUB"; + var wgTitle = "GRUB"; + var wgAction = "edit"; + var wgArticleId = "11"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 28; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/edit.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-GRUB skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="GRUB.html" title="GRUB">GRUB</a></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=GRUB&action=edit.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=GRUB&action=edit.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="https://wiki.gruntnetwork.com/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">Grub est le chargeur de démarrage utilisé par gruntnetwork. + +Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est exécuté. Sa tâche consiste alors à afficher un menu à l'écran permettant à l'utilisateur de choisir le système d'exploitation qu'il souhaite démarrer.</textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="GRUB.html" title="GRUB">GRUB</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="GRUB.html">https://wiki.gruntnetwork.com/GRUB</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="GRUB.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:GRUB&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="index.php5%3Ftitle=GRUB&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=GRUB&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=GRUB.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=GRUB.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/GRUB.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/GRUB.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.269 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=edit.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=edit.orig @@ -0,0 +1,170 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="GRUB,Utilisateurs" /> + <link rel="next" href="https://wiki.gruntnetwork.com/GRUB" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "GRUB"; + var wgTitle = "GRUB"; + var wgAction = "edit"; + var wgArticleId = "11"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 28; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/edit.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-GRUB skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="/GRUB" title="GRUB">GRUB</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">Grub est le chargeur de démarrage utilisé par gruntnetwork. + +Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est exécuté. Sa tâche consiste alors à afficher un menu à l'écran permettant à l'utilisateur de choisir le système d'exploitation qu'il souhaite démarrer.</textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="/GRUB" title="GRUB">GRUB</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/GRUB">https://wiki.gruntnetwork.com/GRUB</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/GRUB" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:GRUB&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="/index.php5?title=GRUB&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=GRUB&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=GRUB" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=GRUB">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/GRUB" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/GRUB" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.269 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=history.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=history.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=GRUB&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « GRUB »" href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « GRUB »" href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Historique des versions de « GRUB » - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "GRUB"; + var wgTitle = "GRUB"; + var wgAction = "history"; + var wgArticleId = "11"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 28; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/history.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-GRUB skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « GRUB »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Journal&page=GRUB" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=GRUB&action=history.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=GRUB&action=history.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="GRUB" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&limit=20&action=history" title="GRUB" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&limit=50&action=history" title="GRUB" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&limit=100&action=history" title="GRUB" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&limit=250&action=history" title="GRUB" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&limit=500&action=history" title="GRUB" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="https://wiki.gruntnetwork.com/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="GRUB" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="index.php5%3Ftitle=GRUB&oldid=28.html" title="GRUB">6 janvier 2009 à 11:53</a> <span class='history-user'><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/162.38.218.206" title="Spécial:Contributions/162.38.218.206" class="mw-userlink">162.38.218.206</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:162.38.218.206&action=edit&redlink=1" class="new" title="Discussion utilisateur:162.38.218.206 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(338 octets)</span> <span class="comment">(Nouvelle page : Grub est le chargeur de démarrage utilisé par gruntnetwork. Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est ex...)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&limit=20&action=history" title="GRUB" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&limit=50&action=history" title="GRUB" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&limit=100&action=history" title="GRUB" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&limit=250&action=history" title="GRUB" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&limit=500&action=history" title="GRUB" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="GRUB.html">https://wiki.gruntnetwork.com/GRUB</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="GRUB.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:GRUB&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=GRUB&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="index.php5%3Ftitle=GRUB&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=GRUB.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=GRUB.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/GRUB.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/GRUB.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.247 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=history.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=history.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=GRUB&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « GRUB »" href="/index.php5?title=GRUB&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « GRUB »" href="/index.php5?title=GRUB&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Historique des versions de « GRUB » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "GRUB"; + var wgTitle = "GRUB"; + var wgAction = "history"; + var wgArticleId = "11"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 28; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/history.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-GRUB skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « GRUB »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="/index.php5?title=Sp%C3%A9cial:Journal&page=GRUB" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="GRUB" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=GRUB&limit=20&action=history" title="GRUB" class="mw-numlink">20</a> | <a href="/index.php5?title=GRUB&limit=50&action=history" title="GRUB" class="mw-numlink">50</a> | <a href="/index.php5?title=GRUB&limit=100&action=history" title="GRUB" class="mw-numlink">100</a> | <a href="/index.php5?title=GRUB&limit=250&action=history" title="GRUB" class="mw-numlink">250</a> | <a href="/index.php5?title=GRUB&limit=500&action=history" title="GRUB" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="GRUB" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="/index.php5?title=GRUB&oldid=28" title="GRUB">6 janvier 2009 à 11:53</a> <span class='history-user'><a href="/Sp%C3%A9cial:Contributions/162.38.218.206" title="Spécial:Contributions/162.38.218.206" class="mw-userlink">162.38.218.206</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:162.38.218.206&action=edit&redlink=1" class="new" title="Discussion utilisateur:162.38.218.206 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(338 octets)</span> <span class="comment">(Nouvelle page : Grub est le chargeur de démarrage utilisé par gruntnetwork. Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est ex...)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=GRUB&limit=20&action=history" title="GRUB" class="mw-numlink">20</a> | <a href="/index.php5?title=GRUB&limit=50&action=history" title="GRUB" class="mw-numlink">50</a> | <a href="/index.php5?title=GRUB&limit=100&action=history" title="GRUB" class="mw-numlink">100</a> | <a href="/index.php5?title=GRUB&limit=250&action=history" title="GRUB" class="mw-numlink">250</a> | <a href="/index.php5?title=GRUB&limit=500&action=history" title="GRUB" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/GRUB">https://wiki.gruntnetwork.com/GRUB</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/GRUB" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:GRUB&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=GRUB&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="/index.php5?title=GRUB&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=GRUB" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=GRUB">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/GRUB" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/GRUB" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=GRUB&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=GRUB&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.247 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&oldid=28.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&oldid=28.html @@ -0,0 +1,176 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="GRUB" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=GRUB&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>GRUB - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "GRUB"; + var wgTitle = "GRUB"; + var wgAction = "view"; + var wgArticleId = 11; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 28; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-GRUB skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">GRUB</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 6 janvier 2009 à 11:53 par <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/162.38.218.206" title="Spécial:Contributions/162.38.218.206" class="mw-userlink">162.38.218.206</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:162.38.218.206&action=edit&redlink=1" class="new" title="Discussion utilisateur:162.38.218.206 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=GRUB&oldid=28.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=GRUB&oldid=28.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Grub est le chargeur de démarrage utilisé par gruntnetwork. +</p><p>Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est exécuté. Sa tâche consiste alors à afficher un menu à l'écran permettant à l'utilisateur de choisir le système d'exploitation qu'il souhaite démarrer. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:11-0!1!0!!fr!2!edit=0 and timestamp 20230503144154 --> +<div class="printfooter"> +Récupérée de « <a href="GRUB.html">https://wiki.gruntnetwork.com/GRUB</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="GRUB.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:GRUB&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=GRUB&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=GRUB&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=GRUB.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=GRUB.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/GRUB.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/GRUB.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="https://wiki.gruntnetwork.com/index.php5?title=GRUB&oldid=28&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=GRUB&oldid=28.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.270 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&oldid=28.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&oldid=28.orig @@ -0,0 +1,176 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="GRUB" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=GRUB&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>GRUB - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "GRUB"; + var wgTitle = "GRUB"; + var wgAction = "view"; + var wgArticleId = 11; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 28; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-GRUB skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">GRUB</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 6 janvier 2009 à 11:53 par <a href="/Sp%C3%A9cial:Contributions/162.38.218.206" title="Spécial:Contributions/162.38.218.206" class="mw-userlink">162.38.218.206</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:162.38.218.206&action=edit&redlink=1" class="new" title="Discussion utilisateur:162.38.218.206 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Grub est le chargeur de démarrage utilisé par gruntnetwork. +</p><p>Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est exécuté. Sa tâche consiste alors à afficher un menu à l'écran permettant à l'utilisateur de choisir le système d'exploitation qu'il souhaite démarrer. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:11-0!1!0!!fr!2!edit=0 and timestamp 20230503144154 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/GRUB">https://wiki.gruntnetwork.com/GRUB</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/GRUB" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:GRUB&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=GRUB&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=GRUB&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=GRUB" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=GRUB">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/GRUB" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/GRUB" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=GRUB&oldid=28&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=GRUB&oldid=28" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.270 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes&printable=yes.html @@ -0,0 +1,168 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="GRUB" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=GRUB&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>GRUB - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "GRUB"; + var wgTitle = "GRUB"; + var wgAction = "view"; + var wgArticleId = "11"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 28; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-GRUB skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">GRUB</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=GRUB&printable=yes&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=GRUB&printable=yes&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Grub est le chargeur de démarrage utilisé par gruntnetwork. +</p><p>Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est exécuté. Sa tâche consiste alors à afficher un menu à l'écran permettant à l'utilisateur de choisir le système d'exploitation qu'il souhaite démarrer. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:11-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144528 --> +<div class="printfooter"> +Récupérée de « <a href="GRUB.html">https://wiki.gruntnetwork.com/GRUB</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="GRUB.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:GRUB&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=GRUB&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=GRUB&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=GRUB.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=GRUB.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/GRUB.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/GRUB.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=GRUB&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=GRUB&oldid=28.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 6 janvier 2009 à 11:53.<br /></li> + <li id="viewcount">Cette page a été consultée 1 434 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.300 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes&printable=yes.orig @@ -0,0 +1,168 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="GRUB" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=GRUB&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>GRUB - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "GRUB"; + var wgTitle = "GRUB"; + var wgAction = "view"; + var wgArticleId = "11"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 28; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-GRUB skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">GRUB</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Grub est le chargeur de démarrage utilisé par gruntnetwork. +</p><p>Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est exécuté. Sa tâche consiste alors à afficher un menu à l'écran permettant à l'utilisateur de choisir le système d'exploitation qu'il souhaite démarrer. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:11-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144528 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/GRUB">https://wiki.gruntnetwork.com/GRUB</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/GRUB" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:GRUB&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=GRUB&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=GRUB&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=GRUB" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=GRUB">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/GRUB" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/GRUB" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=GRUB&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=GRUB&oldid=28" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 6 janvier 2009 à 11:53.<br /></li> + <li id="viewcount">Cette page a été consultée 1 434 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.300 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes.html @@ -0,0 +1,168 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="GRUB" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=GRUB&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>GRUB - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "GRUB"; + var wgTitle = "GRUB"; + var wgAction = "view"; + var wgArticleId = "11"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 28; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-GRUB skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">GRUB</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=GRUB&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=GRUB&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Grub est le chargeur de démarrage utilisé par gruntnetwork. +</p><p>Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est exécuté. Sa tâche consiste alors à afficher un menu à l'écran permettant à l'utilisateur de choisir le système d'exploitation qu'il souhaite démarrer. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:11-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144528 --> +<div class="printfooter"> +Récupérée de « <a href="GRUB.html">https://wiki.gruntnetwork.com/GRUB</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="GRUB.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:GRUB&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=GRUB&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=GRUB&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=GRUB.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=GRUB.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/GRUB.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/GRUB.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=GRUB&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=GRUB&oldid=28.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 6 janvier 2009 à 11:53.<br /></li> + <li id="viewcount">Cette page a été consultée 1 432 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.293 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes.orig @@ -0,0 +1,168 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="GRUB" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=GRUB&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>GRUB - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "GRUB"; + var wgTitle = "GRUB"; + var wgAction = "view"; + var wgArticleId = "11"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 28; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-GRUB skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">GRUB</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Grub est le chargeur de démarrage utilisé par gruntnetwork. +</p><p>Lors du démarrage de l'ordinateur, il est chargé en mémoire par le BIOS (Basic Input Output System), puis il est exécuté. Sa tâche consiste alors à afficher un menu à l'écran permettant à l'utilisateur de choisir le système d'exploitation qu'il souhaite démarrer. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:11-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144528 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/GRUB">https://wiki.gruntnetwork.com/GRUB</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/GRUB" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:GRUB&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=GRUB&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=GRUB&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=GRUB" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=GRUB">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/GRUB" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/GRUB" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=GRUB&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=GRUB&oldid=28" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 6 janvier 2009 à 11:53.<br /></li> + <li id="viewcount">Cette page a été consultée 1 432 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.293 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&action=creativecommons b/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&action=creativecommons @@ -0,0 +1,25 @@ +<?xml version='1.0' encoding="UTF-8" ?> +<rdf:RDF xmlns:cc="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <cc:Work rdf:about="https://wiki.gruntnetwork.com/Liens"> + <dc:title>Liens</dc:title> + <dc:publisher>Gruntnetwork</dc:publisher> + <dc:language>fr</dc:language> + <dc:type>Text</dc:type> + <dc:format>text/html</dc:format> + <dc:identifier>https://wiki.gruntnetwork.com/Liens</dc:identifier> + <dc:date>2009-12-31</dc:date> + <dc:creator>Utilisateur non enregistré sur Gruntnetwork</dc:creator> + <dc:rights rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + <cc:license rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + </cc:Work> + <cc:License rdf:about="http://www.gnu.org/copyleft/fdl.html"> + <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> +</rdf:RDF> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&action=edit.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&action=edit.html @@ -0,0 +1,250 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Liens,Utilisateurs" /> + <link rel="next" href="Liens.html" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Liens"; + var wgTitle = "Liens"; + var wgAction = "edit"; + var wgArticleId = "4"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 73; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/edit.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="Liens.html" title="Liens">Liens</a></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Liens&action=edit.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Liens&action=edit.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="https://wiki.gruntnetwork.com/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">== Notions == + +* [http://fr.wikipedia.org/wiki/Basic_Input_Output_System BIOS] pour ceux qui ne savent pas ce que c'est + +=== Assembleur === + +* [http://mark.masmcode.com/ Optimisation] +* [http://www.asmcommunity.net/ asmcommunity.net] +* [http://gok.customer.netspace.net.au/resources/ Hacks SVGA] +* [http://www.x86-guide.com/ Guide pour l'assembleur X86] +* [http://asm.sourceforge.net/ asm.sourceforge.net] +* [http://www.ctyme.com/intr/int.htm Interruptions du BIOS] +* [http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html Encore les interruptions] +* [http://www.penguin.cz/~literakl/intel/intel.html 80x86 instruction set] + +=== Démarrage (boot) === + +* [http://susam.in/articles/boot-sector-code/ Secteur de boot] +* [http://www.osdcom.info/content/view/33/39/ Après GRUB (multiboot)] +* Premier boot de la première version de linux : [http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s] et [http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s] +* [http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders Chargeurs de démarrage] sur le wiki X86_Assembly +* [http://www.vnutz.com/content/program_a_bootstrap_loader Programmer un chargeur de démarrage] +* [http://www.pixelbeat.org/docs/disk/ Organisation du disque dur] (secteur de boot et fichiers de grub) +* [http://www.gnu.org/software/grub/manual/multiboot/multiboot.html Multiboot Specification] +* [http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/ Grub-0.97.tar.gz] (Téléchargement des sources) + +=== Modes du processeur (réel, protégé, ...) === +* [http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm Protected Mode Basics] : Les bases, y entrer, en sortir '''sur le processeur 80286''' (donc pas pour nous) +* [http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode X86 Assembly/Protected Mode] +* [http://osdev.berlios.de/v86.html Virtual 8086 Mode] : du réel dans du protégé +* [http://benoit.papillault.free.fr/c/l32/pm.asm pm.asm] : passage en mode protégé puis retour en mode réel + du V86 quelque part. +* [http://www.sudleyplace.com/pmtorm.html Transition from Protected Mode to Real Mode] + +=== Affichage Graphique === +Voir l'article [[Affichage Graphique]]. + +* [http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif Table des caractères ascii] +* [http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/ SuperVGA/VESA programmer's notes] +* [http://en.wikipedia.org/wiki/VESA_BIOS_Extensions VESA BIOS Extensions] sur wikipedia +* [http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11 Tutorial on VGA Graphics] : VGA, souris, bitmap +* [http://osdev.berlios.de/v86.html Virtual 8086 Mode] : Utiliser le mode 8086 virtuel pour accéder aux fonctions VESA du BIOS +* [http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html VESA Video Modes] Comment obtenir la liste des modes disponibles et des informations les concernant. +* [http://www.student.cs.uwaterloo.ca/~cs452/grub/ patch vbe] pour que grub nous passe en mode graphique +* [http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c Utilisation de l'interface en mode protégé de VBE] + +==== Références VESA ==== + +* [http://docs.ruudkoot.nl/vesasp12.txt VESA BIOS Extension 1.2] +* [http://docs.ruudkoot.nl/vbe20.txt VESA BIOS Extension 2.0] +* [http://www.vesa.org/public/VBE/vbe3.pdf VESA BIOS Extension 3.0] + +=== Drivers === + +==== Souris ==== +* [http://wiki.osdev.org/Mouse_Input Mouse Input] : Comment configurer et écouter une souris PS/2 sur osdev.org + +==== Clavier ==== +* [http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver PS2 Keyboard] : driver sur osdev.org +* [http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html Keyboard scancodes] Quel code envoyé par le clavier correspond à quel caractère. + +== Portails == + +* [http://www.osdev.org/ osdev.org] : Wiki + Forum sur le développement d'OS +* [http://www.nondot.org/sabre/os/articles OSRC] : Operating System Ressource Center +* [http://www.osdever.net/ Bona Fide OS Development] + +== Tutoriels == + +* [http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS Pépin] : tuto du boot au shell, très complet. +* [http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html AAProg] : Pas beaucoup de code mais de très bonnes explications +* Tutoriels sur [http://www.osdever.net/tutorials.php?cat=0&sort=1 Bona Fide] + +== Petits systèmes d'exploitation == +Toujours pratique pour s'inspirer… + +* [http://wiki.osdev.org/Projects Liste de projets d'OS] sur osdev.org +* [http://www.dynatos.org/ dynatos] +* [http://gok.customer.netspace.net.au/resources/ UNIOS] +* [http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html funos] +* [http://www.ninj4.net/kinetic/ kinetic], écrit en haskell. Ça vaut le coup d'oeuil. + +== Divers == +* [http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html Sujet] sur le site du zéro, pas mal de liens</textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="Liens.html" title="Liens">Liens</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="Liens.html">https://wiki.gruntnetwork.com/Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Liens.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="./Discussion:Liens.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="index.php5%3Ftitle=Liens&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Liens&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Liens.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Liens.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Liens.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Liens.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.258 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&action=edit.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&action=edit.orig @@ -0,0 +1,250 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Liens,Utilisateurs" /> + <link rel="next" href="https://wiki.gruntnetwork.com/Liens" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Liens"; + var wgTitle = "Liens"; + var wgAction = "edit"; + var wgArticleId = "4"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 73; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/edit.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="/Liens" title="Liens">Liens</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">== Notions == + +* [http://fr.wikipedia.org/wiki/Basic_Input_Output_System BIOS] pour ceux qui ne savent pas ce que c'est + +=== Assembleur === + +* [http://mark.masmcode.com/ Optimisation] +* [http://www.asmcommunity.net/ asmcommunity.net] +* [http://gok.customer.netspace.net.au/resources/ Hacks SVGA] +* [http://www.x86-guide.com/ Guide pour l'assembleur X86] +* [http://asm.sourceforge.net/ asm.sourceforge.net] +* [http://www.ctyme.com/intr/int.htm Interruptions du BIOS] +* [http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html Encore les interruptions] +* [http://www.penguin.cz/~literakl/intel/intel.html 80x86 instruction set] + +=== Démarrage (boot) === + +* [http://susam.in/articles/boot-sector-code/ Secteur de boot] +* [http://www.osdcom.info/content/view/33/39/ Après GRUB (multiboot)] +* Premier boot de la première version de linux : [http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s] et [http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s] +* [http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders Chargeurs de démarrage] sur le wiki X86_Assembly +* [http://www.vnutz.com/content/program_a_bootstrap_loader Programmer un chargeur de démarrage] +* [http://www.pixelbeat.org/docs/disk/ Organisation du disque dur] (secteur de boot et fichiers de grub) +* [http://www.gnu.org/software/grub/manual/multiboot/multiboot.html Multiboot Specification] +* [http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/ Grub-0.97.tar.gz] (Téléchargement des sources) + +=== Modes du processeur (réel, protégé, ...) === +* [http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm Protected Mode Basics] : Les bases, y entrer, en sortir '''sur le processeur 80286''' (donc pas pour nous) +* [http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode X86 Assembly/Protected Mode] +* [http://osdev.berlios.de/v86.html Virtual 8086 Mode] : du réel dans du protégé +* [http://benoit.papillault.free.fr/c/l32/pm.asm pm.asm] : passage en mode protégé puis retour en mode réel + du V86 quelque part. +* [http://www.sudleyplace.com/pmtorm.html Transition from Protected Mode to Real Mode] + +=== Affichage Graphique === +Voir l'article [[Affichage Graphique]]. + +* [http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif Table des caractères ascii] +* [http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/ SuperVGA/VESA programmer's notes] +* [http://en.wikipedia.org/wiki/VESA_BIOS_Extensions VESA BIOS Extensions] sur wikipedia +* [http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11 Tutorial on VGA Graphics] : VGA, souris, bitmap +* [http://osdev.berlios.de/v86.html Virtual 8086 Mode] : Utiliser le mode 8086 virtuel pour accéder aux fonctions VESA du BIOS +* [http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html VESA Video Modes] Comment obtenir la liste des modes disponibles et des informations les concernant. +* [http://www.student.cs.uwaterloo.ca/~cs452/grub/ patch vbe] pour que grub nous passe en mode graphique +* [http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c Utilisation de l'interface en mode protégé de VBE] + +==== Références VESA ==== + +* [http://docs.ruudkoot.nl/vesasp12.txt VESA BIOS Extension 1.2] +* [http://docs.ruudkoot.nl/vbe20.txt VESA BIOS Extension 2.0] +* [http://www.vesa.org/public/VBE/vbe3.pdf VESA BIOS Extension 3.0] + +=== Drivers === + +==== Souris ==== +* [http://wiki.osdev.org/Mouse_Input Mouse Input] : Comment configurer et écouter une souris PS/2 sur osdev.org + +==== Clavier ==== +* [http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver PS2 Keyboard] : driver sur osdev.org +* [http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html Keyboard scancodes] Quel code envoyé par le clavier correspond à quel caractère. + +== Portails == + +* [http://www.osdev.org/ osdev.org] : Wiki + Forum sur le développement d'OS +* [http://www.nondot.org/sabre/os/articles OSRC] : Operating System Ressource Center +* [http://www.osdever.net/ Bona Fide OS Development] + +== Tutoriels == + +* [http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS Pépin] : tuto du boot au shell, très complet. +* [http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html AAProg] : Pas beaucoup de code mais de très bonnes explications +* Tutoriels sur [http://www.osdever.net/tutorials.php?cat=0&sort=1 Bona Fide] + +== Petits systèmes d'exploitation == +Toujours pratique pour s'inspirer… + +* [http://wiki.osdev.org/Projects Liste de projets d'OS] sur osdev.org +* [http://www.dynatos.org/ dynatos] +* [http://gok.customer.netspace.net.au/resources/ UNIOS] +* [http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html funos] +* [http://www.ninj4.net/kinetic/ kinetic], écrit en haskell. Ça vaut le coup d'oeuil. + +== Divers == +* [http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html Sujet] sur le site du zéro, pas mal de liens</textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="/Liens" title="Liens">Liens</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Liens">https://wiki.gruntnetwork.com/Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Liens" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="/Discussion:Liens" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="/index.php5?title=Liens&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Liens&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Liens" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Liens" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.258 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&action=history.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&action=history.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Liens&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Liens »" href="https://wiki.gruntnetwork.com/index.php5?title=Liens&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Historique des versions de « Liens » - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Liens"; + var wgTitle = "Liens"; + var wgAction = "history"; + var wgArticleId = "4"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 73; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/history.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Liens »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Journal&page=Liens" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Liens&action=history.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Liens&action=history.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Liens" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Liens&limit=20&action=history" title="Liens" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Liens&limit=50&action=history" title="Liens" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Liens&limit=100&action=history" title="Liens" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Liens&limit=250&action=history" title="Liens" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Liens&limit=500&action=history" title="Liens" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="https://wiki.gruntnetwork.com/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Liens" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="index.php5%3Ftitle=Liens&oldid=73.html" title="Liens">31 décembre 2009 à 01:15</a> <span class='history-user'><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/195.83.178.10" title="Spécial:Contributions/195.83.178.10" class="mw-userlink">195.83.178.10</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:195.83.178.10&action=edit&redlink=1" class="new" title="Discussion utilisateur:195.83.178.10 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(4 850 octets)</span> <span class="comment">(Annulation des modifications 70 de <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/94.253.24.87" title="Spécial:Contributions/94.253.24.87">94.253.24.87</a> (<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:94.253.24.87&action=edit&redlink=1" class="new" title="Discussion utilisateur:94.253.24.87 (page inexistante)">discussion</a>))</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Liens&limit=20&action=history" title="Liens" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Liens&limit=50&action=history" title="Liens" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Liens&limit=100&action=history" title="Liens" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Liens&limit=250&action=history" title="Liens" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Liens&limit=500&action=history" title="Liens" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="Liens.html">https://wiki.gruntnetwork.com/Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Liens.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="./Discussion:Liens.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Liens&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="index.php5%3Ftitle=Liens&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Liens.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Liens.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Liens.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Liens.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Liens&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Liens&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.280 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&action=history.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&action=history.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Liens »" href="/index.php5?title=Liens&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Liens »" href="/index.php5?title=Liens&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Historique des versions de « Liens » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Liens"; + var wgTitle = "Liens"; + var wgAction = "history"; + var wgArticleId = "4"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 73; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/history.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Liens »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="/index.php5?title=Sp%C3%A9cial:Journal&page=Liens" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Liens" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Liens&limit=20&action=history" title="Liens" class="mw-numlink">20</a> | <a href="/index.php5?title=Liens&limit=50&action=history" title="Liens" class="mw-numlink">50</a> | <a href="/index.php5?title=Liens&limit=100&action=history" title="Liens" class="mw-numlink">100</a> | <a href="/index.php5?title=Liens&limit=250&action=history" title="Liens" class="mw-numlink">250</a> | <a href="/index.php5?title=Liens&limit=500&action=history" title="Liens" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Liens" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="/index.php5?title=Liens&oldid=73" title="Liens">31 décembre 2009 à 01:15</a> <span class='history-user'><a href="/Sp%C3%A9cial:Contributions/195.83.178.10" title="Spécial:Contributions/195.83.178.10" class="mw-userlink">195.83.178.10</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:195.83.178.10&action=edit&redlink=1" class="new" title="Discussion utilisateur:195.83.178.10 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(4 850 octets)</span> <span class="comment">(Annulation des modifications 70 de <a href="/Sp%C3%A9cial:Contributions/94.253.24.87" title="Spécial:Contributions/94.253.24.87">94.253.24.87</a> (<a href="/index.php5?title=Discussion_utilisateur:94.253.24.87&action=edit&redlink=1" class="new" title="Discussion utilisateur:94.253.24.87 (page inexistante)">discussion</a>))</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Liens&limit=20&action=history" title="Liens" class="mw-numlink">20</a> | <a href="/index.php5?title=Liens&limit=50&action=history" title="Liens" class="mw-numlink">50</a> | <a href="/index.php5?title=Liens&limit=100&action=history" title="Liens" class="mw-numlink">100</a> | <a href="/index.php5?title=Liens&limit=250&action=history" title="Liens" class="mw-numlink">250</a> | <a href="/index.php5?title=Liens&limit=500&action=history" title="Liens" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Liens">https://wiki.gruntnetwork.com/Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Liens" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="/Discussion:Liens" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Liens&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="/index.php5?title=Liens&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Liens" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Liens" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Liens&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Liens&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.280 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&oldid=73.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&oldid=73.html @@ -0,0 +1,277 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Liens,Affichage Graphique" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Liens - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = 4; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 73; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 31 décembre 2009 à 01:15 par <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/195.83.178.10" title="Spécial:Contributions/195.83.178.10" class="mw-userlink">195.83.178.10</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:195.83.178.10&action=edit&redlink=1" class="new" title="Discussion utilisateur:195.83.178.10 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Liens&oldid=73.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Liens&oldid=73.html#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Liens&oldid=73.html#Notions"><span class="tocnumber">1</span> <span class="toctext">Notions</span></a> +<ul> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Liens&oldid=73.html#Assembleur"><span class="tocnumber">1.1</span> <span class="toctext">Assembleur</span></a></li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Liens&oldid=73.html#D.C3.A9marrage_.28boot.29"><span class="tocnumber">1.2</span> <span class="toctext">Démarrage (boot)</span></a></li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Liens&oldid=73.html#Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"><span class="tocnumber">1.3</span> <span class="toctext">Modes du processeur (réel, protégé, ...)</span></a></li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Liens&oldid=73.html#Affichage_Graphique"><span class="tocnumber">1.4</span> <span class="toctext">Affichage Graphique</span></a> +<ul> +<li class="toclevel-3"><a href="index.php5%3Ftitle=Liens&oldid=73.html#R.C3.A9f.C3.A9rences_VESA"><span class="tocnumber">1.4.1</span> <span class="toctext">Références VESA</span></a></li> +</ul> +</li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Liens&oldid=73.html#Drivers"><span class="tocnumber">1.5</span> <span class="toctext">Drivers</span></a> +<ul> +<li class="toclevel-3"><a href="index.php5%3Ftitle=Liens&oldid=73.html#Souris"><span class="tocnumber">1.5.1</span> <span class="toctext">Souris</span></a></li> +<li class="toclevel-3"><a href="index.php5%3Ftitle=Liens&oldid=73.html#Clavier"><span class="tocnumber">1.5.2</span> <span class="toctext">Clavier</span></a></li> +</ul> +</li> +</ul> +</li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Liens&oldid=73.html#Portails"><span class="tocnumber">2</span> <span class="toctext">Portails</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Liens&oldid=73.html#Tutoriels"><span class="tocnumber">3</span> <span class="toctext">Tutoriels</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Liens&oldid=73.html#Petits_syst.C3.A8mes_d.27exploitation"><span class="tocnumber">4</span> <span class="toctext">Petits systèmes d'exploitation</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Liens&oldid=73.html#Divers"><span class="tocnumber">5</span> <span class="toctext">Divers</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Notions" id="Notions"></a><h2> <span class="mw-headline"> Notions </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" class="external text" title="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" rel="nofollow">BIOS</a> pour ceux qui ne savent pas ce que c'est +</li></ul> +<a name="Assembleur" id="Assembleur"></a><h3> <span class="mw-headline"> Assembleur </span></h3> +<ul><li> <a href="http://mark.masmcode.com/" class="external text" title="http://mark.masmcode.com/" rel="nofollow">Optimisation</a> +</li><li> <a href="http://www.asmcommunity.net/" class="external text" title="http://www.asmcommunity.net/" rel="nofollow">asmcommunity.net</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">Hacks SVGA</a> +</li><li> <a href="http://www.x86-guide.com/" class="external text" title="http://www.x86-guide.com/" rel="nofollow">Guide pour l'assembleur X86</a> +</li><li> <a href="http://asm.sourceforge.net/" class="external text" title="http://asm.sourceforge.net/" rel="nofollow">asm.sourceforge.net</a> +</li><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Interruptions du BIOS</a> +</li><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" rel="nofollow">Encore les interruptions</a> +</li><li> <a href="http://www.penguin.cz/~literakl/intel/intel.html" class="external text" title="http://www.penguin.cz/~literakl/intel/intel.html" rel="nofollow">80x86 instruction set</a> +</li></ul> +<a name="D.C3.A9marrage_.28boot.29" id="D.C3.A9marrage_.28boot.29"></a><h3> <span class="mw-headline"> Démarrage (boot) </span></h3> +<ul><li> <a href="http://susam.in/articles/boot-sector-code/" class="external text" title="http://susam.in/articles/boot-sector-code/" rel="nofollow">Secteur de boot</a> +</li><li> <a href="http://www.osdcom.info/content/view/33/39/" class="external text" title="http://www.osdcom.info/content/view/33/39/" rel="nofollow">Après GRUB (multiboot)</a> +</li><li> Premier boot de la première version de linux : <a href="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" rel="nofollow">[1]</a> et <a href="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" rel="nofollow">[2]</a> +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" rel="nofollow">Chargeurs de démarrage</a> sur le wiki X86_Assembly +</li><li> <a href="http://www.vnutz.com/content/program_a_bootstrap_loader" class="external text" title="http://www.vnutz.com/content/program_a_bootstrap_loader" rel="nofollow">Programmer un chargeur de démarrage</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">Organisation du disque dur</a> (secteur de boot et fichiers de grub) +</li><li> <a href="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" class="external text" title="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" rel="nofollow">Multiboot Specification</a> +</li><li> <a href="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" class="external text" title="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" rel="nofollow">Grub-0.97.tar.gz</a> (Téléchargement des sources) +</li></ul> +<a name="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29" id="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"></a><h3> <span class="mw-headline"> Modes du processeur (réel, protégé, ...) </span></h3> +<ul><li> <a href="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" class="external text" title="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" rel="nofollow">Protected Mode Basics</a> : Les bases, y entrer, en sortir <b>sur le processeur 80286</b> (donc pas pour nous) +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" rel="nofollow">X86 Assembly/Protected Mode</a> +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : du réel dans du protégé +</li><li> <a href="http://benoit.papillault.free.fr/c/l32/pm.asm" class="external text" title="http://benoit.papillault.free.fr/c/l32/pm.asm" rel="nofollow">pm.asm</a> : passage en mode protégé puis retour en mode réel + du V86 quelque part. +</li><li> <a href="http://www.sudleyplace.com/pmtorm.html" class="external text" title="http://www.sudleyplace.com/pmtorm.html" rel="nofollow">Transition from Protected Mode to Real Mode</a> +</li></ul> +<a name="Affichage_Graphique" id="Affichage_Graphique"></a><h3> <span class="mw-headline"> Affichage Graphique </span></h3> +<p>Voir l'article <a href="Affichage_Graphique.html" title="Affichage Graphique">Affichage Graphique</a>. +</p> +<ul><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" rel="nofollow">Table des caractères ascii</a> +</li><li> <a href="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" class="external text" title="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" rel="nofollow">SuperVGA/VESA programmer's notes</a> +</li><li> <a href="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" class="external text" title="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" rel="nofollow">VESA BIOS Extensions</a> sur wikipedia +</li><li> <a href="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" class="external text" title="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" rel="nofollow">Tutorial on VGA Graphics</a> : VGA, souris, bitmap +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : Utiliser le mode 8086 virtuel pour accéder aux fonctions VESA du BIOS +</li><li> <a href="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" class="external text" title="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" rel="nofollow">VESA Video Modes</a> Comment obtenir la liste des modes disponibles et des informations les concernant. +</li><li> <a href="http://www.student.cs.uwaterloo.ca/~cs452/grub/" class="external text" title="http://www.student.cs.uwaterloo.ca/~cs452/grub/" rel="nofollow">patch vbe</a> pour que grub nous passe en mode graphique +</li><li> <a href="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" class="external text" title="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" rel="nofollow">Utilisation de l'interface en mode protégé de VBE</a> +</li></ul> +<a name="R.C3.A9f.C3.A9rences_VESA" id="R.C3.A9f.C3.A9rences_VESA"></a><h4> <span class="mw-headline"> Références VESA </span></h4> +<ul><li> <a href="http://docs.ruudkoot.nl/vesasp12.txt" class="external text" title="http://docs.ruudkoot.nl/vesasp12.txt" rel="nofollow">VESA BIOS Extension 1.2</a> +</li><li> <a href="http://docs.ruudkoot.nl/vbe20.txt" class="external text" title="http://docs.ruudkoot.nl/vbe20.txt" rel="nofollow">VESA BIOS Extension 2.0</a> +</li><li> <a href="http://www.vesa.org/public/VBE/vbe3.pdf" class="external text" title="http://www.vesa.org/public/VBE/vbe3.pdf" rel="nofollow">VESA BIOS Extension 3.0</a> +</li></ul> +<a name="Drivers" id="Drivers"></a><h3> <span class="mw-headline"> Drivers </span></h3> +<a name="Souris" id="Souris"></a><h4> <span class="mw-headline"> Souris </span></h4> +<ul><li> <a href="http://wiki.osdev.org/Mouse_Input" class="external text" title="http://wiki.osdev.org/Mouse_Input" rel="nofollow">Mouse Input</a> : Comment configurer et écouter une souris PS/2 sur osdev.org +</li></ul> +<a name="Clavier" id="Clavier"></a><h4> <span class="mw-headline"> Clavier </span></h4> +<ul><li> <a href="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" class="external text" title="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" rel="nofollow">PS2 Keyboard</a> : driver sur osdev.org +</li><li> <a href="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" class="external text" title="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" rel="nofollow">Keyboard scancodes</a> Quel code envoyé par le clavier correspond à quel caractère. +</li></ul> +<a name="Portails" id="Portails"></a><h2> <span class="mw-headline"> Portails </span></h2> +<ul><li> <a href="http://www.osdev.org/" class="external text" title="http://www.osdev.org/" rel="nofollow">osdev.org</a> : Wiki + Forum sur le développement d'OS +</li><li> <a href="http://www.nondot.org/sabre/os/articles" class="external text" title="http://www.nondot.org/sabre/os/articles" rel="nofollow">OSRC</a> : Operating System Ressource Center +</li><li> <a href="http://www.osdever.net/" class="external text" title="http://www.osdever.net/" rel="nofollow">Bona Fide OS Development</a> +</li></ul> +<a name="Tutoriels" id="Tutoriels"></a><h2> <span class="mw-headline"> Tutoriels </span></h2> +<ul><li> <a href="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" class="external text" title="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" rel="nofollow">Pépin</a> : tuto du boot au shell, très complet. +</li><li> <a href="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" class="external text" title="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" rel="nofollow">AAProg</a> : Pas beaucoup de code mais de très bonnes explications +</li><li> Tutoriels sur <a href="http://www.osdever.net/tutorials.php?cat=0&sort=1" class="external text" title="http://www.osdever.net/tutorials.php?cat=0&sort=1" rel="nofollow">Bona Fide</a> +</li></ul> +<a name="Petits_syst.C3.A8mes_d.27exploitation" id="Petits_syst.C3.A8mes_d.27exploitation"></a><h2> <span class="mw-headline"> Petits systèmes d'exploitation </span></h2> +<p>Toujours pratique pour s'inspirer… +</p> +<ul><li> <a href="http://wiki.osdev.org/Projects" class="external text" title="http://wiki.osdev.org/Projects" rel="nofollow">Liste de projets d'OS</a> sur osdev.org +</li><li> <a href="http://www.dynatos.org/" class="external text" title="http://www.dynatos.org/" rel="nofollow">dynatos</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">UNIOS</a> +</li><li> <a href="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" class="external text" title="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" rel="nofollow">funos</a> +</li><li> <a href="http://www.ninj4.net/kinetic/" class="external text" title="http://www.ninj4.net/kinetic/" rel="nofollow">kinetic</a>, écrit en haskell. Ça vaut le coup d'oeuil. +</li></ul> +<a name="Divers" id="Divers"></a><h2> <span class="mw-headline"> Divers </span></h2> +<ul><li> <a href="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" class="external text" title="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" rel="nofollow">Sujet</a> sur le site du zéro, pas mal de liens +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 14/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:4-0!1!0!!fr!2!edit=0 and timestamp 20230503142447 --> +<div class="printfooter"> +Récupérée de « <a href="Liens.html">https://wiki.gruntnetwork.com/Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Liens.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="./Discussion:Liens.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Liens&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Liens&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Liens.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Liens.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Liens.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Liens.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="https://wiki.gruntnetwork.com/index.php5?title=Liens&oldid=73&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Liens&oldid=73.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.329 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&oldid=73.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&oldid=73.orig @@ -0,0 +1,277 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Liens,Affichage Graphique" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Liens - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = 4; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 73; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 31 décembre 2009 à 01:15 par <a href="/Sp%C3%A9cial:Contributions/195.83.178.10" title="Spécial:Contributions/195.83.178.10" class="mw-userlink">195.83.178.10</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:195.83.178.10&action=edit&redlink=1" class="new" title="Discussion utilisateur:195.83.178.10 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#Notions"><span class="tocnumber">1</span> <span class="toctext">Notions</span></a> +<ul> +<li class="toclevel-2"><a href="#Assembleur"><span class="tocnumber">1.1</span> <span class="toctext">Assembleur</span></a></li> +<li class="toclevel-2"><a href="#D.C3.A9marrage_.28boot.29"><span class="tocnumber">1.2</span> <span class="toctext">Démarrage (boot)</span></a></li> +<li class="toclevel-2"><a href="#Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"><span class="tocnumber">1.3</span> <span class="toctext">Modes du processeur (réel, protégé, ...)</span></a></li> +<li class="toclevel-2"><a href="#Affichage_Graphique"><span class="tocnumber">1.4</span> <span class="toctext">Affichage Graphique</span></a> +<ul> +<li class="toclevel-3"><a href="#R.C3.A9f.C3.A9rences_VESA"><span class="tocnumber">1.4.1</span> <span class="toctext">Références VESA</span></a></li> +</ul> +</li> +<li class="toclevel-2"><a href="#Drivers"><span class="tocnumber">1.5</span> <span class="toctext">Drivers</span></a> +<ul> +<li class="toclevel-3"><a href="#Souris"><span class="tocnumber">1.5.1</span> <span class="toctext">Souris</span></a></li> +<li class="toclevel-3"><a href="#Clavier"><span class="tocnumber">1.5.2</span> <span class="toctext">Clavier</span></a></li> +</ul> +</li> +</ul> +</li> +<li class="toclevel-1"><a href="#Portails"><span class="tocnumber">2</span> <span class="toctext">Portails</span></a></li> +<li class="toclevel-1"><a href="#Tutoriels"><span class="tocnumber">3</span> <span class="toctext">Tutoriels</span></a></li> +<li class="toclevel-1"><a href="#Petits_syst.C3.A8mes_d.27exploitation"><span class="tocnumber">4</span> <span class="toctext">Petits systèmes d'exploitation</span></a></li> +<li class="toclevel-1"><a href="#Divers"><span class="tocnumber">5</span> <span class="toctext">Divers</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Notions" id="Notions"></a><h2> <span class="mw-headline"> Notions </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" class="external text" title="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" rel="nofollow">BIOS</a> pour ceux qui ne savent pas ce que c'est +</li></ul> +<a name="Assembleur" id="Assembleur"></a><h3> <span class="mw-headline"> Assembleur </span></h3> +<ul><li> <a href="http://mark.masmcode.com/" class="external text" title="http://mark.masmcode.com/" rel="nofollow">Optimisation</a> +</li><li> <a href="http://www.asmcommunity.net/" class="external text" title="http://www.asmcommunity.net/" rel="nofollow">asmcommunity.net</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">Hacks SVGA</a> +</li><li> <a href="http://www.x86-guide.com/" class="external text" title="http://www.x86-guide.com/" rel="nofollow">Guide pour l'assembleur X86</a> +</li><li> <a href="http://asm.sourceforge.net/" class="external text" title="http://asm.sourceforge.net/" rel="nofollow">asm.sourceforge.net</a> +</li><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Interruptions du BIOS</a> +</li><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" rel="nofollow">Encore les interruptions</a> +</li><li> <a href="http://www.penguin.cz/~literakl/intel/intel.html" class="external text" title="http://www.penguin.cz/~literakl/intel/intel.html" rel="nofollow">80x86 instruction set</a> +</li></ul> +<a name="D.C3.A9marrage_.28boot.29" id="D.C3.A9marrage_.28boot.29"></a><h3> <span class="mw-headline"> Démarrage (boot) </span></h3> +<ul><li> <a href="http://susam.in/articles/boot-sector-code/" class="external text" title="http://susam.in/articles/boot-sector-code/" rel="nofollow">Secteur de boot</a> +</li><li> <a href="http://www.osdcom.info/content/view/33/39/" class="external text" title="http://www.osdcom.info/content/view/33/39/" rel="nofollow">Après GRUB (multiboot)</a> +</li><li> Premier boot de la première version de linux : <a href="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" rel="nofollow">[1]</a> et <a href="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" rel="nofollow">[2]</a> +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" rel="nofollow">Chargeurs de démarrage</a> sur le wiki X86_Assembly +</li><li> <a href="http://www.vnutz.com/content/program_a_bootstrap_loader" class="external text" title="http://www.vnutz.com/content/program_a_bootstrap_loader" rel="nofollow">Programmer un chargeur de démarrage</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">Organisation du disque dur</a> (secteur de boot et fichiers de grub) +</li><li> <a href="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" class="external text" title="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" rel="nofollow">Multiboot Specification</a> +</li><li> <a href="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" class="external text" title="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" rel="nofollow">Grub-0.97.tar.gz</a> (Téléchargement des sources) +</li></ul> +<a name="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29" id="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"></a><h3> <span class="mw-headline"> Modes du processeur (réel, protégé, ...) </span></h3> +<ul><li> <a href="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" class="external text" title="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" rel="nofollow">Protected Mode Basics</a> : Les bases, y entrer, en sortir <b>sur le processeur 80286</b> (donc pas pour nous) +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" rel="nofollow">X86 Assembly/Protected Mode</a> +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : du réel dans du protégé +</li><li> <a href="http://benoit.papillault.free.fr/c/l32/pm.asm" class="external text" title="http://benoit.papillault.free.fr/c/l32/pm.asm" rel="nofollow">pm.asm</a> : passage en mode protégé puis retour en mode réel + du V86 quelque part. +</li><li> <a href="http://www.sudleyplace.com/pmtorm.html" class="external text" title="http://www.sudleyplace.com/pmtorm.html" rel="nofollow">Transition from Protected Mode to Real Mode</a> +</li></ul> +<a name="Affichage_Graphique" id="Affichage_Graphique"></a><h3> <span class="mw-headline"> Affichage Graphique </span></h3> +<p>Voir l'article <a href="/Affichage_Graphique" title="Affichage Graphique">Affichage Graphique</a>. +</p> +<ul><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" rel="nofollow">Table des caractères ascii</a> +</li><li> <a href="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" class="external text" title="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" rel="nofollow">SuperVGA/VESA programmer's notes</a> +</li><li> <a href="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" class="external text" title="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" rel="nofollow">VESA BIOS Extensions</a> sur wikipedia +</li><li> <a href="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" class="external text" title="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" rel="nofollow">Tutorial on VGA Graphics</a> : VGA, souris, bitmap +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : Utiliser le mode 8086 virtuel pour accéder aux fonctions VESA du BIOS +</li><li> <a href="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" class="external text" title="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" rel="nofollow">VESA Video Modes</a> Comment obtenir la liste des modes disponibles et des informations les concernant. +</li><li> <a href="http://www.student.cs.uwaterloo.ca/~cs452/grub/" class="external text" title="http://www.student.cs.uwaterloo.ca/~cs452/grub/" rel="nofollow">patch vbe</a> pour que grub nous passe en mode graphique +</li><li> <a href="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" class="external text" title="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" rel="nofollow">Utilisation de l'interface en mode protégé de VBE</a> +</li></ul> +<a name="R.C3.A9f.C3.A9rences_VESA" id="R.C3.A9f.C3.A9rences_VESA"></a><h4> <span class="mw-headline"> Références VESA </span></h4> +<ul><li> <a href="http://docs.ruudkoot.nl/vesasp12.txt" class="external text" title="http://docs.ruudkoot.nl/vesasp12.txt" rel="nofollow">VESA BIOS Extension 1.2</a> +</li><li> <a href="http://docs.ruudkoot.nl/vbe20.txt" class="external text" title="http://docs.ruudkoot.nl/vbe20.txt" rel="nofollow">VESA BIOS Extension 2.0</a> +</li><li> <a href="http://www.vesa.org/public/VBE/vbe3.pdf" class="external text" title="http://www.vesa.org/public/VBE/vbe3.pdf" rel="nofollow">VESA BIOS Extension 3.0</a> +</li></ul> +<a name="Drivers" id="Drivers"></a><h3> <span class="mw-headline"> Drivers </span></h3> +<a name="Souris" id="Souris"></a><h4> <span class="mw-headline"> Souris </span></h4> +<ul><li> <a href="http://wiki.osdev.org/Mouse_Input" class="external text" title="http://wiki.osdev.org/Mouse_Input" rel="nofollow">Mouse Input</a> : Comment configurer et écouter une souris PS/2 sur osdev.org +</li></ul> +<a name="Clavier" id="Clavier"></a><h4> <span class="mw-headline"> Clavier </span></h4> +<ul><li> <a href="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" class="external text" title="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" rel="nofollow">PS2 Keyboard</a> : driver sur osdev.org +</li><li> <a href="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" class="external text" title="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" rel="nofollow">Keyboard scancodes</a> Quel code envoyé par le clavier correspond à quel caractère. +</li></ul> +<a name="Portails" id="Portails"></a><h2> <span class="mw-headline"> Portails </span></h2> +<ul><li> <a href="http://www.osdev.org/" class="external text" title="http://www.osdev.org/" rel="nofollow">osdev.org</a> : Wiki + Forum sur le développement d'OS +</li><li> <a href="http://www.nondot.org/sabre/os/articles" class="external text" title="http://www.nondot.org/sabre/os/articles" rel="nofollow">OSRC</a> : Operating System Ressource Center +</li><li> <a href="http://www.osdever.net/" class="external text" title="http://www.osdever.net/" rel="nofollow">Bona Fide OS Development</a> +</li></ul> +<a name="Tutoriels" id="Tutoriels"></a><h2> <span class="mw-headline"> Tutoriels </span></h2> +<ul><li> <a href="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" class="external text" title="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" rel="nofollow">Pépin</a> : tuto du boot au shell, très complet. +</li><li> <a href="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" class="external text" title="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" rel="nofollow">AAProg</a> : Pas beaucoup de code mais de très bonnes explications +</li><li> Tutoriels sur <a href="http://www.osdever.net/tutorials.php?cat=0&sort=1" class="external text" title="http://www.osdever.net/tutorials.php?cat=0&sort=1" rel="nofollow">Bona Fide</a> +</li></ul> +<a name="Petits_syst.C3.A8mes_d.27exploitation" id="Petits_syst.C3.A8mes_d.27exploitation"></a><h2> <span class="mw-headline"> Petits systèmes d'exploitation </span></h2> +<p>Toujours pratique pour s'inspirer… +</p> +<ul><li> <a href="http://wiki.osdev.org/Projects" class="external text" title="http://wiki.osdev.org/Projects" rel="nofollow">Liste de projets d'OS</a> sur osdev.org +</li><li> <a href="http://www.dynatos.org/" class="external text" title="http://www.dynatos.org/" rel="nofollow">dynatos</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">UNIOS</a> +</li><li> <a href="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" class="external text" title="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" rel="nofollow">funos</a> +</li><li> <a href="http://www.ninj4.net/kinetic/" class="external text" title="http://www.ninj4.net/kinetic/" rel="nofollow">kinetic</a>, écrit en haskell. Ça vaut le coup d'oeuil. +</li></ul> +<a name="Divers" id="Divers"></a><h2> <span class="mw-headline"> Divers </span></h2> +<ul><li> <a href="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" class="external text" title="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" rel="nofollow">Sujet</a> sur le site du zéro, pas mal de liens +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 14/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:4-0!1!0!!fr!2!edit=0 and timestamp 20230503142447 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Liens">https://wiki.gruntnetwork.com/Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Liens" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="/Discussion:Liens" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Liens&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Liens&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Liens" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Liens" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Liens&oldid=73&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Liens&oldid=73" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.329 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes&printable=yes.html @@ -0,0 +1,269 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Liens,Affichage Graphique" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Liens - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = "4"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 73; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html#Notions"><span class="tocnumber">1</span> <span class="toctext">Notions</span></a> +<ul> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html#Assembleur"><span class="tocnumber">1.1</span> <span class="toctext">Assembleur</span></a></li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html#D.C3.A9marrage_.28boot.29"><span class="tocnumber">1.2</span> <span class="toctext">Démarrage (boot)</span></a></li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html#Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"><span class="tocnumber">1.3</span> <span class="toctext">Modes du processeur (réel, protégé, ...)</span></a></li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html#Affichage_Graphique"><span class="tocnumber">1.4</span> <span class="toctext">Affichage Graphique</span></a> +<ul> +<li class="toclevel-3"><a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html#R.C3.A9f.C3.A9rences_VESA"><span class="tocnumber">1.4.1</span> <span class="toctext">Références VESA</span></a></li> +</ul> +</li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html#Drivers"><span class="tocnumber">1.5</span> <span class="toctext">Drivers</span></a> +<ul> +<li class="toclevel-3"><a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html#Souris"><span class="tocnumber">1.5.1</span> <span class="toctext">Souris</span></a></li> +<li class="toclevel-3"><a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html#Clavier"><span class="tocnumber">1.5.2</span> <span class="toctext">Clavier</span></a></li> +</ul> +</li> +</ul> +</li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html#Portails"><span class="tocnumber">2</span> <span class="toctext">Portails</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html#Tutoriels"><span class="tocnumber">3</span> <span class="toctext">Tutoriels</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html#Petits_syst.C3.A8mes_d.27exploitation"><span class="tocnumber">4</span> <span class="toctext">Petits systèmes d'exploitation</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html#Divers"><span class="tocnumber">5</span> <span class="toctext">Divers</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Notions" id="Notions"></a><h2> <span class="mw-headline"> Notions </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" class="external text" title="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" rel="nofollow">BIOS</a> pour ceux qui ne savent pas ce que c'est +</li></ul> +<a name="Assembleur" id="Assembleur"></a><h3> <span class="mw-headline"> Assembleur </span></h3> +<ul><li> <a href="http://mark.masmcode.com/" class="external text" title="http://mark.masmcode.com/" rel="nofollow">Optimisation</a> +</li><li> <a href="http://www.asmcommunity.net/" class="external text" title="http://www.asmcommunity.net/" rel="nofollow">asmcommunity.net</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">Hacks SVGA</a> +</li><li> <a href="http://www.x86-guide.com/" class="external text" title="http://www.x86-guide.com/" rel="nofollow">Guide pour l'assembleur X86</a> +</li><li> <a href="http://asm.sourceforge.net/" class="external text" title="http://asm.sourceforge.net/" rel="nofollow">asm.sourceforge.net</a> +</li><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Interruptions du BIOS</a> +</li><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" rel="nofollow">Encore les interruptions</a> +</li><li> <a href="http://www.penguin.cz/~literakl/intel/intel.html" class="external text" title="http://www.penguin.cz/~literakl/intel/intel.html" rel="nofollow">80x86 instruction set</a> +</li></ul> +<a name="D.C3.A9marrage_.28boot.29" id="D.C3.A9marrage_.28boot.29"></a><h3> <span class="mw-headline"> Démarrage (boot) </span></h3> +<ul><li> <a href="http://susam.in/articles/boot-sector-code/" class="external text" title="http://susam.in/articles/boot-sector-code/" rel="nofollow">Secteur de boot</a> +</li><li> <a href="http://www.osdcom.info/content/view/33/39/" class="external text" title="http://www.osdcom.info/content/view/33/39/" rel="nofollow">Après GRUB (multiboot)</a> +</li><li> Premier boot de la première version de linux : <a href="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" rel="nofollow">[1]</a> et <a href="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" rel="nofollow">[2]</a> +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" rel="nofollow">Chargeurs de démarrage</a> sur le wiki X86_Assembly +</li><li> <a href="http://www.vnutz.com/content/program_a_bootstrap_loader" class="external text" title="http://www.vnutz.com/content/program_a_bootstrap_loader" rel="nofollow">Programmer un chargeur de démarrage</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">Organisation du disque dur</a> (secteur de boot et fichiers de grub) +</li><li> <a href="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" class="external text" title="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" rel="nofollow">Multiboot Specification</a> +</li><li> <a href="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" class="external text" title="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" rel="nofollow">Grub-0.97.tar.gz</a> (Téléchargement des sources) +</li></ul> +<a name="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29" id="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"></a><h3> <span class="mw-headline"> Modes du processeur (réel, protégé, ...) </span></h3> +<ul><li> <a href="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" class="external text" title="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" rel="nofollow">Protected Mode Basics</a> : Les bases, y entrer, en sortir <b>sur le processeur 80286</b> (donc pas pour nous) +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" rel="nofollow">X86 Assembly/Protected Mode</a> +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : du réel dans du protégé +</li><li> <a href="http://benoit.papillault.free.fr/c/l32/pm.asm" class="external text" title="http://benoit.papillault.free.fr/c/l32/pm.asm" rel="nofollow">pm.asm</a> : passage en mode protégé puis retour en mode réel + du V86 quelque part. +</li><li> <a href="http://www.sudleyplace.com/pmtorm.html" class="external text" title="http://www.sudleyplace.com/pmtorm.html" rel="nofollow">Transition from Protected Mode to Real Mode</a> +</li></ul> +<a name="Affichage_Graphique" id="Affichage_Graphique"></a><h3> <span class="mw-headline"> Affichage Graphique </span></h3> +<p>Voir l'article <a href="Affichage_Graphique.html" title="Affichage Graphique">Affichage Graphique</a>. +</p> +<ul><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" rel="nofollow">Table des caractères ascii</a> +</li><li> <a href="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" class="external text" title="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" rel="nofollow">SuperVGA/VESA programmer's notes</a> +</li><li> <a href="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" class="external text" title="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" rel="nofollow">VESA BIOS Extensions</a> sur wikipedia +</li><li> <a href="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" class="external text" title="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" rel="nofollow">Tutorial on VGA Graphics</a> : VGA, souris, bitmap +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : Utiliser le mode 8086 virtuel pour accéder aux fonctions VESA du BIOS +</li><li> <a href="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" class="external text" title="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" rel="nofollow">VESA Video Modes</a> Comment obtenir la liste des modes disponibles et des informations les concernant. +</li><li> <a href="http://www.student.cs.uwaterloo.ca/~cs452/grub/" class="external text" title="http://www.student.cs.uwaterloo.ca/~cs452/grub/" rel="nofollow">patch vbe</a> pour que grub nous passe en mode graphique +</li><li> <a href="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" class="external text" title="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" rel="nofollow">Utilisation de l'interface en mode protégé de VBE</a> +</li></ul> +<a name="R.C3.A9f.C3.A9rences_VESA" id="R.C3.A9f.C3.A9rences_VESA"></a><h4> <span class="mw-headline"> Références VESA </span></h4> +<ul><li> <a href="http://docs.ruudkoot.nl/vesasp12.txt" class="external text" title="http://docs.ruudkoot.nl/vesasp12.txt" rel="nofollow">VESA BIOS Extension 1.2</a> +</li><li> <a href="http://docs.ruudkoot.nl/vbe20.txt" class="external text" title="http://docs.ruudkoot.nl/vbe20.txt" rel="nofollow">VESA BIOS Extension 2.0</a> +</li><li> <a href="http://www.vesa.org/public/VBE/vbe3.pdf" class="external text" title="http://www.vesa.org/public/VBE/vbe3.pdf" rel="nofollow">VESA BIOS Extension 3.0</a> +</li></ul> +<a name="Drivers" id="Drivers"></a><h3> <span class="mw-headline"> Drivers </span></h3> +<a name="Souris" id="Souris"></a><h4> <span class="mw-headline"> Souris </span></h4> +<ul><li> <a href="http://wiki.osdev.org/Mouse_Input" class="external text" title="http://wiki.osdev.org/Mouse_Input" rel="nofollow">Mouse Input</a> : Comment configurer et écouter une souris PS/2 sur osdev.org +</li></ul> +<a name="Clavier" id="Clavier"></a><h4> <span class="mw-headline"> Clavier </span></h4> +<ul><li> <a href="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" class="external text" title="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" rel="nofollow">PS2 Keyboard</a> : driver sur osdev.org +</li><li> <a href="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" class="external text" title="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" rel="nofollow">Keyboard scancodes</a> Quel code envoyé par le clavier correspond à quel caractère. +</li></ul> +<a name="Portails" id="Portails"></a><h2> <span class="mw-headline"> Portails </span></h2> +<ul><li> <a href="http://www.osdev.org/" class="external text" title="http://www.osdev.org/" rel="nofollow">osdev.org</a> : Wiki + Forum sur le développement d'OS +</li><li> <a href="http://www.nondot.org/sabre/os/articles" class="external text" title="http://www.nondot.org/sabre/os/articles" rel="nofollow">OSRC</a> : Operating System Ressource Center +</li><li> <a href="http://www.osdever.net/" class="external text" title="http://www.osdever.net/" rel="nofollow">Bona Fide OS Development</a> +</li></ul> +<a name="Tutoriels" id="Tutoriels"></a><h2> <span class="mw-headline"> Tutoriels </span></h2> +<ul><li> <a href="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" class="external text" title="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" rel="nofollow">Pépin</a> : tuto du boot au shell, très complet. +</li><li> <a href="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" class="external text" title="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" rel="nofollow">AAProg</a> : Pas beaucoup de code mais de très bonnes explications +</li><li> Tutoriels sur <a href="http://www.osdever.net/tutorials.php?cat=0&sort=1" class="external text" title="http://www.osdever.net/tutorials.php?cat=0&sort=1" rel="nofollow">Bona Fide</a> +</li></ul> +<a name="Petits_syst.C3.A8mes_d.27exploitation" id="Petits_syst.C3.A8mes_d.27exploitation"></a><h2> <span class="mw-headline"> Petits systèmes d'exploitation </span></h2> +<p>Toujours pratique pour s'inspirer… +</p> +<ul><li> <a href="http://wiki.osdev.org/Projects" class="external text" title="http://wiki.osdev.org/Projects" rel="nofollow">Liste de projets d'OS</a> sur osdev.org +</li><li> <a href="http://www.dynatos.org/" class="external text" title="http://www.dynatos.org/" rel="nofollow">dynatos</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">UNIOS</a> +</li><li> <a href="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" class="external text" title="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" rel="nofollow">funos</a> +</li><li> <a href="http://www.ninj4.net/kinetic/" class="external text" title="http://www.ninj4.net/kinetic/" rel="nofollow">kinetic</a>, écrit en haskell. Ça vaut le coup d'oeuil. +</li></ul> +<a name="Divers" id="Divers"></a><h2> <span class="mw-headline"> Divers </span></h2> +<ul><li> <a href="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" class="external text" title="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" rel="nofollow">Sujet</a> sur le site du zéro, pas mal de liens +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 14/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:4-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144205 --> +<div class="printfooter"> +Récupérée de « <a href="Liens.html">https://wiki.gruntnetwork.com/Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Liens.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="./Discussion:Liens.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Liens&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Liens&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Liens.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Liens.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Liens.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Liens.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Liens&oldid=73.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 31 décembre 2009 à 01:15.<br /></li> + <li id="viewcount">Cette page a été consultée 3 585 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.295 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes&printable=yes.orig @@ -0,0 +1,269 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Liens,Affichage Graphique" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Liens - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = "4"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 73; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#Notions"><span class="tocnumber">1</span> <span class="toctext">Notions</span></a> +<ul> +<li class="toclevel-2"><a href="#Assembleur"><span class="tocnumber">1.1</span> <span class="toctext">Assembleur</span></a></li> +<li class="toclevel-2"><a href="#D.C3.A9marrage_.28boot.29"><span class="tocnumber">1.2</span> <span class="toctext">Démarrage (boot)</span></a></li> +<li class="toclevel-2"><a href="#Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"><span class="tocnumber">1.3</span> <span class="toctext">Modes du processeur (réel, protégé, ...)</span></a></li> +<li class="toclevel-2"><a href="#Affichage_Graphique"><span class="tocnumber">1.4</span> <span class="toctext">Affichage Graphique</span></a> +<ul> +<li class="toclevel-3"><a href="#R.C3.A9f.C3.A9rences_VESA"><span class="tocnumber">1.4.1</span> <span class="toctext">Références VESA</span></a></li> +</ul> +</li> +<li class="toclevel-2"><a href="#Drivers"><span class="tocnumber">1.5</span> <span class="toctext">Drivers</span></a> +<ul> +<li class="toclevel-3"><a href="#Souris"><span class="tocnumber">1.5.1</span> <span class="toctext">Souris</span></a></li> +<li class="toclevel-3"><a href="#Clavier"><span class="tocnumber">1.5.2</span> <span class="toctext">Clavier</span></a></li> +</ul> +</li> +</ul> +</li> +<li class="toclevel-1"><a href="#Portails"><span class="tocnumber">2</span> <span class="toctext">Portails</span></a></li> +<li class="toclevel-1"><a href="#Tutoriels"><span class="tocnumber">3</span> <span class="toctext">Tutoriels</span></a></li> +<li class="toclevel-1"><a href="#Petits_syst.C3.A8mes_d.27exploitation"><span class="tocnumber">4</span> <span class="toctext">Petits systèmes d'exploitation</span></a></li> +<li class="toclevel-1"><a href="#Divers"><span class="tocnumber">5</span> <span class="toctext">Divers</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Notions" id="Notions"></a><h2> <span class="mw-headline"> Notions </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" class="external text" title="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" rel="nofollow">BIOS</a> pour ceux qui ne savent pas ce que c'est +</li></ul> +<a name="Assembleur" id="Assembleur"></a><h3> <span class="mw-headline"> Assembleur </span></h3> +<ul><li> <a href="http://mark.masmcode.com/" class="external text" title="http://mark.masmcode.com/" rel="nofollow">Optimisation</a> +</li><li> <a href="http://www.asmcommunity.net/" class="external text" title="http://www.asmcommunity.net/" rel="nofollow">asmcommunity.net</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">Hacks SVGA</a> +</li><li> <a href="http://www.x86-guide.com/" class="external text" title="http://www.x86-guide.com/" rel="nofollow">Guide pour l'assembleur X86</a> +</li><li> <a href="http://asm.sourceforge.net/" class="external text" title="http://asm.sourceforge.net/" rel="nofollow">asm.sourceforge.net</a> +</li><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Interruptions du BIOS</a> +</li><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" rel="nofollow">Encore les interruptions</a> +</li><li> <a href="http://www.penguin.cz/~literakl/intel/intel.html" class="external text" title="http://www.penguin.cz/~literakl/intel/intel.html" rel="nofollow">80x86 instruction set</a> +</li></ul> +<a name="D.C3.A9marrage_.28boot.29" id="D.C3.A9marrage_.28boot.29"></a><h3> <span class="mw-headline"> Démarrage (boot) </span></h3> +<ul><li> <a href="http://susam.in/articles/boot-sector-code/" class="external text" title="http://susam.in/articles/boot-sector-code/" rel="nofollow">Secteur de boot</a> +</li><li> <a href="http://www.osdcom.info/content/view/33/39/" class="external text" title="http://www.osdcom.info/content/view/33/39/" rel="nofollow">Après GRUB (multiboot)</a> +</li><li> Premier boot de la première version de linux : <a href="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" rel="nofollow">[1]</a> et <a href="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" rel="nofollow">[2]</a> +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" rel="nofollow">Chargeurs de démarrage</a> sur le wiki X86_Assembly +</li><li> <a href="http://www.vnutz.com/content/program_a_bootstrap_loader" class="external text" title="http://www.vnutz.com/content/program_a_bootstrap_loader" rel="nofollow">Programmer un chargeur de démarrage</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">Organisation du disque dur</a> (secteur de boot et fichiers de grub) +</li><li> <a href="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" class="external text" title="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" rel="nofollow">Multiboot Specification</a> +</li><li> <a href="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" class="external text" title="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" rel="nofollow">Grub-0.97.tar.gz</a> (Téléchargement des sources) +</li></ul> +<a name="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29" id="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"></a><h3> <span class="mw-headline"> Modes du processeur (réel, protégé, ...) </span></h3> +<ul><li> <a href="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" class="external text" title="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" rel="nofollow">Protected Mode Basics</a> : Les bases, y entrer, en sortir <b>sur le processeur 80286</b> (donc pas pour nous) +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" rel="nofollow">X86 Assembly/Protected Mode</a> +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : du réel dans du protégé +</li><li> <a href="http://benoit.papillault.free.fr/c/l32/pm.asm" class="external text" title="http://benoit.papillault.free.fr/c/l32/pm.asm" rel="nofollow">pm.asm</a> : passage en mode protégé puis retour en mode réel + du V86 quelque part. +</li><li> <a href="http://www.sudleyplace.com/pmtorm.html" class="external text" title="http://www.sudleyplace.com/pmtorm.html" rel="nofollow">Transition from Protected Mode to Real Mode</a> +</li></ul> +<a name="Affichage_Graphique" id="Affichage_Graphique"></a><h3> <span class="mw-headline"> Affichage Graphique </span></h3> +<p>Voir l'article <a href="/Affichage_Graphique" title="Affichage Graphique">Affichage Graphique</a>. +</p> +<ul><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" rel="nofollow">Table des caractères ascii</a> +</li><li> <a href="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" class="external text" title="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" rel="nofollow">SuperVGA/VESA programmer's notes</a> +</li><li> <a href="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" class="external text" title="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" rel="nofollow">VESA BIOS Extensions</a> sur wikipedia +</li><li> <a href="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" class="external text" title="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" rel="nofollow">Tutorial on VGA Graphics</a> : VGA, souris, bitmap +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : Utiliser le mode 8086 virtuel pour accéder aux fonctions VESA du BIOS +</li><li> <a href="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" class="external text" title="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" rel="nofollow">VESA Video Modes</a> Comment obtenir la liste des modes disponibles et des informations les concernant. +</li><li> <a href="http://www.student.cs.uwaterloo.ca/~cs452/grub/" class="external text" title="http://www.student.cs.uwaterloo.ca/~cs452/grub/" rel="nofollow">patch vbe</a> pour que grub nous passe en mode graphique +</li><li> <a href="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" class="external text" title="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" rel="nofollow">Utilisation de l'interface en mode protégé de VBE</a> +</li></ul> +<a name="R.C3.A9f.C3.A9rences_VESA" id="R.C3.A9f.C3.A9rences_VESA"></a><h4> <span class="mw-headline"> Références VESA </span></h4> +<ul><li> <a href="http://docs.ruudkoot.nl/vesasp12.txt" class="external text" title="http://docs.ruudkoot.nl/vesasp12.txt" rel="nofollow">VESA BIOS Extension 1.2</a> +</li><li> <a href="http://docs.ruudkoot.nl/vbe20.txt" class="external text" title="http://docs.ruudkoot.nl/vbe20.txt" rel="nofollow">VESA BIOS Extension 2.0</a> +</li><li> <a href="http://www.vesa.org/public/VBE/vbe3.pdf" class="external text" title="http://www.vesa.org/public/VBE/vbe3.pdf" rel="nofollow">VESA BIOS Extension 3.0</a> +</li></ul> +<a name="Drivers" id="Drivers"></a><h3> <span class="mw-headline"> Drivers </span></h3> +<a name="Souris" id="Souris"></a><h4> <span class="mw-headline"> Souris </span></h4> +<ul><li> <a href="http://wiki.osdev.org/Mouse_Input" class="external text" title="http://wiki.osdev.org/Mouse_Input" rel="nofollow">Mouse Input</a> : Comment configurer et écouter une souris PS/2 sur osdev.org +</li></ul> +<a name="Clavier" id="Clavier"></a><h4> <span class="mw-headline"> Clavier </span></h4> +<ul><li> <a href="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" class="external text" title="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" rel="nofollow">PS2 Keyboard</a> : driver sur osdev.org +</li><li> <a href="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" class="external text" title="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" rel="nofollow">Keyboard scancodes</a> Quel code envoyé par le clavier correspond à quel caractère. +</li></ul> +<a name="Portails" id="Portails"></a><h2> <span class="mw-headline"> Portails </span></h2> +<ul><li> <a href="http://www.osdev.org/" class="external text" title="http://www.osdev.org/" rel="nofollow">osdev.org</a> : Wiki + Forum sur le développement d'OS +</li><li> <a href="http://www.nondot.org/sabre/os/articles" class="external text" title="http://www.nondot.org/sabre/os/articles" rel="nofollow">OSRC</a> : Operating System Ressource Center +</li><li> <a href="http://www.osdever.net/" class="external text" title="http://www.osdever.net/" rel="nofollow">Bona Fide OS Development</a> +</li></ul> +<a name="Tutoriels" id="Tutoriels"></a><h2> <span class="mw-headline"> Tutoriels </span></h2> +<ul><li> <a href="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" class="external text" title="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" rel="nofollow">Pépin</a> : tuto du boot au shell, très complet. +</li><li> <a href="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" class="external text" title="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" rel="nofollow">AAProg</a> : Pas beaucoup de code mais de très bonnes explications +</li><li> Tutoriels sur <a href="http://www.osdever.net/tutorials.php?cat=0&sort=1" class="external text" title="http://www.osdever.net/tutorials.php?cat=0&sort=1" rel="nofollow">Bona Fide</a> +</li></ul> +<a name="Petits_syst.C3.A8mes_d.27exploitation" id="Petits_syst.C3.A8mes_d.27exploitation"></a><h2> <span class="mw-headline"> Petits systèmes d'exploitation </span></h2> +<p>Toujours pratique pour s'inspirer… +</p> +<ul><li> <a href="http://wiki.osdev.org/Projects" class="external text" title="http://wiki.osdev.org/Projects" rel="nofollow">Liste de projets d'OS</a> sur osdev.org +</li><li> <a href="http://www.dynatos.org/" class="external text" title="http://www.dynatos.org/" rel="nofollow">dynatos</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">UNIOS</a> +</li><li> <a href="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" class="external text" title="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" rel="nofollow">funos</a> +</li><li> <a href="http://www.ninj4.net/kinetic/" class="external text" title="http://www.ninj4.net/kinetic/" rel="nofollow">kinetic</a>, écrit en haskell. Ça vaut le coup d'oeuil. +</li></ul> +<a name="Divers" id="Divers"></a><h2> <span class="mw-headline"> Divers </span></h2> +<ul><li> <a href="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" class="external text" title="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" rel="nofollow">Sujet</a> sur le site du zéro, pas mal de liens +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 14/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:4-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144205 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Liens">https://wiki.gruntnetwork.com/Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Liens" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="/Discussion:Liens" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Liens&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Liens&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Liens" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Liens" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Liens&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Liens&oldid=73" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 31 décembre 2009 à 01:15.<br /></li> + <li id="viewcount">Cette page a été consultée 3 585 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.295 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes.html @@ -0,0 +1,269 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Liens,Affichage Graphique" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Liens - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = "4"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 73; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Liens&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Liens&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Liens&printable=yes.html#Notions"><span class="tocnumber">1</span> <span class="toctext">Notions</span></a> +<ul> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Liens&printable=yes.html#Assembleur"><span class="tocnumber">1.1</span> <span class="toctext">Assembleur</span></a></li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Liens&printable=yes.html#D.C3.A9marrage_.28boot.29"><span class="tocnumber">1.2</span> <span class="toctext">Démarrage (boot)</span></a></li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Liens&printable=yes.html#Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"><span class="tocnumber">1.3</span> <span class="toctext">Modes du processeur (réel, protégé, ...)</span></a></li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Liens&printable=yes.html#Affichage_Graphique"><span class="tocnumber">1.4</span> <span class="toctext">Affichage Graphique</span></a> +<ul> +<li class="toclevel-3"><a href="index.php5%3Ftitle=Liens&printable=yes.html#R.C3.A9f.C3.A9rences_VESA"><span class="tocnumber">1.4.1</span> <span class="toctext">Références VESA</span></a></li> +</ul> +</li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Liens&printable=yes.html#Drivers"><span class="tocnumber">1.5</span> <span class="toctext">Drivers</span></a> +<ul> +<li class="toclevel-3"><a href="index.php5%3Ftitle=Liens&printable=yes.html#Souris"><span class="tocnumber">1.5.1</span> <span class="toctext">Souris</span></a></li> +<li class="toclevel-3"><a href="index.php5%3Ftitle=Liens&printable=yes.html#Clavier"><span class="tocnumber">1.5.2</span> <span class="toctext">Clavier</span></a></li> +</ul> +</li> +</ul> +</li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Liens&printable=yes.html#Portails"><span class="tocnumber">2</span> <span class="toctext">Portails</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Liens&printable=yes.html#Tutoriels"><span class="tocnumber">3</span> <span class="toctext">Tutoriels</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Liens&printable=yes.html#Petits_syst.C3.A8mes_d.27exploitation"><span class="tocnumber">4</span> <span class="toctext">Petits systèmes d'exploitation</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Liens&printable=yes.html#Divers"><span class="tocnumber">5</span> <span class="toctext">Divers</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Notions" id="Notions"></a><h2> <span class="mw-headline"> Notions </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" class="external text" title="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" rel="nofollow">BIOS</a> pour ceux qui ne savent pas ce que c'est +</li></ul> +<a name="Assembleur" id="Assembleur"></a><h3> <span class="mw-headline"> Assembleur </span></h3> +<ul><li> <a href="http://mark.masmcode.com/" class="external text" title="http://mark.masmcode.com/" rel="nofollow">Optimisation</a> +</li><li> <a href="http://www.asmcommunity.net/" class="external text" title="http://www.asmcommunity.net/" rel="nofollow">asmcommunity.net</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">Hacks SVGA</a> +</li><li> <a href="http://www.x86-guide.com/" class="external text" title="http://www.x86-guide.com/" rel="nofollow">Guide pour l'assembleur X86</a> +</li><li> <a href="http://asm.sourceforge.net/" class="external text" title="http://asm.sourceforge.net/" rel="nofollow">asm.sourceforge.net</a> +</li><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Interruptions du BIOS</a> +</li><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" rel="nofollow">Encore les interruptions</a> +</li><li> <a href="http://www.penguin.cz/~literakl/intel/intel.html" class="external text" title="http://www.penguin.cz/~literakl/intel/intel.html" rel="nofollow">80x86 instruction set</a> +</li></ul> +<a name="D.C3.A9marrage_.28boot.29" id="D.C3.A9marrage_.28boot.29"></a><h3> <span class="mw-headline"> Démarrage (boot) </span></h3> +<ul><li> <a href="http://susam.in/articles/boot-sector-code/" class="external text" title="http://susam.in/articles/boot-sector-code/" rel="nofollow">Secteur de boot</a> +</li><li> <a href="http://www.osdcom.info/content/view/33/39/" class="external text" title="http://www.osdcom.info/content/view/33/39/" rel="nofollow">Après GRUB (multiboot)</a> +</li><li> Premier boot de la première version de linux : <a href="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" rel="nofollow">[1]</a> et <a href="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" rel="nofollow">[2]</a> +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" rel="nofollow">Chargeurs de démarrage</a> sur le wiki X86_Assembly +</li><li> <a href="http://www.vnutz.com/content/program_a_bootstrap_loader" class="external text" title="http://www.vnutz.com/content/program_a_bootstrap_loader" rel="nofollow">Programmer un chargeur de démarrage</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">Organisation du disque dur</a> (secteur de boot et fichiers de grub) +</li><li> <a href="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" class="external text" title="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" rel="nofollow">Multiboot Specification</a> +</li><li> <a href="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" class="external text" title="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" rel="nofollow">Grub-0.97.tar.gz</a> (Téléchargement des sources) +</li></ul> +<a name="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29" id="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"></a><h3> <span class="mw-headline"> Modes du processeur (réel, protégé, ...) </span></h3> +<ul><li> <a href="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" class="external text" title="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" rel="nofollow">Protected Mode Basics</a> : Les bases, y entrer, en sortir <b>sur le processeur 80286</b> (donc pas pour nous) +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" rel="nofollow">X86 Assembly/Protected Mode</a> +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : du réel dans du protégé +</li><li> <a href="http://benoit.papillault.free.fr/c/l32/pm.asm" class="external text" title="http://benoit.papillault.free.fr/c/l32/pm.asm" rel="nofollow">pm.asm</a> : passage en mode protégé puis retour en mode réel + du V86 quelque part. +</li><li> <a href="http://www.sudleyplace.com/pmtorm.html" class="external text" title="http://www.sudleyplace.com/pmtorm.html" rel="nofollow">Transition from Protected Mode to Real Mode</a> +</li></ul> +<a name="Affichage_Graphique" id="Affichage_Graphique"></a><h3> <span class="mw-headline"> Affichage Graphique </span></h3> +<p>Voir l'article <a href="Affichage_Graphique.html" title="Affichage Graphique">Affichage Graphique</a>. +</p> +<ul><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" rel="nofollow">Table des caractères ascii</a> +</li><li> <a href="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" class="external text" title="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" rel="nofollow">SuperVGA/VESA programmer's notes</a> +</li><li> <a href="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" class="external text" title="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" rel="nofollow">VESA BIOS Extensions</a> sur wikipedia +</li><li> <a href="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" class="external text" title="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" rel="nofollow">Tutorial on VGA Graphics</a> : VGA, souris, bitmap +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : Utiliser le mode 8086 virtuel pour accéder aux fonctions VESA du BIOS +</li><li> <a href="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" class="external text" title="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" rel="nofollow">VESA Video Modes</a> Comment obtenir la liste des modes disponibles et des informations les concernant. +</li><li> <a href="http://www.student.cs.uwaterloo.ca/~cs452/grub/" class="external text" title="http://www.student.cs.uwaterloo.ca/~cs452/grub/" rel="nofollow">patch vbe</a> pour que grub nous passe en mode graphique +</li><li> <a href="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" class="external text" title="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" rel="nofollow">Utilisation de l'interface en mode protégé de VBE</a> +</li></ul> +<a name="R.C3.A9f.C3.A9rences_VESA" id="R.C3.A9f.C3.A9rences_VESA"></a><h4> <span class="mw-headline"> Références VESA </span></h4> +<ul><li> <a href="http://docs.ruudkoot.nl/vesasp12.txt" class="external text" title="http://docs.ruudkoot.nl/vesasp12.txt" rel="nofollow">VESA BIOS Extension 1.2</a> +</li><li> <a href="http://docs.ruudkoot.nl/vbe20.txt" class="external text" title="http://docs.ruudkoot.nl/vbe20.txt" rel="nofollow">VESA BIOS Extension 2.0</a> +</li><li> <a href="http://www.vesa.org/public/VBE/vbe3.pdf" class="external text" title="http://www.vesa.org/public/VBE/vbe3.pdf" rel="nofollow">VESA BIOS Extension 3.0</a> +</li></ul> +<a name="Drivers" id="Drivers"></a><h3> <span class="mw-headline"> Drivers </span></h3> +<a name="Souris" id="Souris"></a><h4> <span class="mw-headline"> Souris </span></h4> +<ul><li> <a href="http://wiki.osdev.org/Mouse_Input" class="external text" title="http://wiki.osdev.org/Mouse_Input" rel="nofollow">Mouse Input</a> : Comment configurer et écouter une souris PS/2 sur osdev.org +</li></ul> +<a name="Clavier" id="Clavier"></a><h4> <span class="mw-headline"> Clavier </span></h4> +<ul><li> <a href="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" class="external text" title="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" rel="nofollow">PS2 Keyboard</a> : driver sur osdev.org +</li><li> <a href="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" class="external text" title="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" rel="nofollow">Keyboard scancodes</a> Quel code envoyé par le clavier correspond à quel caractère. +</li></ul> +<a name="Portails" id="Portails"></a><h2> <span class="mw-headline"> Portails </span></h2> +<ul><li> <a href="http://www.osdev.org/" class="external text" title="http://www.osdev.org/" rel="nofollow">osdev.org</a> : Wiki + Forum sur le développement d'OS +</li><li> <a href="http://www.nondot.org/sabre/os/articles" class="external text" title="http://www.nondot.org/sabre/os/articles" rel="nofollow">OSRC</a> : Operating System Ressource Center +</li><li> <a href="http://www.osdever.net/" class="external text" title="http://www.osdever.net/" rel="nofollow">Bona Fide OS Development</a> +</li></ul> +<a name="Tutoriels" id="Tutoriels"></a><h2> <span class="mw-headline"> Tutoriels </span></h2> +<ul><li> <a href="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" class="external text" title="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" rel="nofollow">Pépin</a> : tuto du boot au shell, très complet. +</li><li> <a href="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" class="external text" title="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" rel="nofollow">AAProg</a> : Pas beaucoup de code mais de très bonnes explications +</li><li> Tutoriels sur <a href="http://www.osdever.net/tutorials.php?cat=0&sort=1" class="external text" title="http://www.osdever.net/tutorials.php?cat=0&sort=1" rel="nofollow">Bona Fide</a> +</li></ul> +<a name="Petits_syst.C3.A8mes_d.27exploitation" id="Petits_syst.C3.A8mes_d.27exploitation"></a><h2> <span class="mw-headline"> Petits systèmes d'exploitation </span></h2> +<p>Toujours pratique pour s'inspirer… +</p> +<ul><li> <a href="http://wiki.osdev.org/Projects" class="external text" title="http://wiki.osdev.org/Projects" rel="nofollow">Liste de projets d'OS</a> sur osdev.org +</li><li> <a href="http://www.dynatos.org/" class="external text" title="http://www.dynatos.org/" rel="nofollow">dynatos</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">UNIOS</a> +</li><li> <a href="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" class="external text" title="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" rel="nofollow">funos</a> +</li><li> <a href="http://www.ninj4.net/kinetic/" class="external text" title="http://www.ninj4.net/kinetic/" rel="nofollow">kinetic</a>, écrit en haskell. Ça vaut le coup d'oeuil. +</li></ul> +<a name="Divers" id="Divers"></a><h2> <span class="mw-headline"> Divers </span></h2> +<ul><li> <a href="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" class="external text" title="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" rel="nofollow">Sujet</a> sur le site du zéro, pas mal de liens +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 14/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:4-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144205 --> +<div class="printfooter"> +Récupérée de « <a href="Liens.html">https://wiki.gruntnetwork.com/Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Liens.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="./Discussion:Liens.html" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Liens&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Liens&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Liens.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Liens.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Liens.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Liens.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Liens&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Liens&oldid=73.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 31 décembre 2009 à 01:15.<br /></li> + <li id="viewcount">Cette page a été consultée 3 583 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.294 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes.orig @@ -0,0 +1,269 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Liens,Affichage Graphique" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Liens&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Liens - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Liens"; + var wgTitle = "Liens"; + var wgAction = "view"; + var wgArticleId = "4"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 73; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Liens skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Liens</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#Notions"><span class="tocnumber">1</span> <span class="toctext">Notions</span></a> +<ul> +<li class="toclevel-2"><a href="#Assembleur"><span class="tocnumber">1.1</span> <span class="toctext">Assembleur</span></a></li> +<li class="toclevel-2"><a href="#D.C3.A9marrage_.28boot.29"><span class="tocnumber">1.2</span> <span class="toctext">Démarrage (boot)</span></a></li> +<li class="toclevel-2"><a href="#Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"><span class="tocnumber">1.3</span> <span class="toctext">Modes du processeur (réel, protégé, ...)</span></a></li> +<li class="toclevel-2"><a href="#Affichage_Graphique"><span class="tocnumber">1.4</span> <span class="toctext">Affichage Graphique</span></a> +<ul> +<li class="toclevel-3"><a href="#R.C3.A9f.C3.A9rences_VESA"><span class="tocnumber">1.4.1</span> <span class="toctext">Références VESA</span></a></li> +</ul> +</li> +<li class="toclevel-2"><a href="#Drivers"><span class="tocnumber">1.5</span> <span class="toctext">Drivers</span></a> +<ul> +<li class="toclevel-3"><a href="#Souris"><span class="tocnumber">1.5.1</span> <span class="toctext">Souris</span></a></li> +<li class="toclevel-3"><a href="#Clavier"><span class="tocnumber">1.5.2</span> <span class="toctext">Clavier</span></a></li> +</ul> +</li> +</ul> +</li> +<li class="toclevel-1"><a href="#Portails"><span class="tocnumber">2</span> <span class="toctext">Portails</span></a></li> +<li class="toclevel-1"><a href="#Tutoriels"><span class="tocnumber">3</span> <span class="toctext">Tutoriels</span></a></li> +<li class="toclevel-1"><a href="#Petits_syst.C3.A8mes_d.27exploitation"><span class="tocnumber">4</span> <span class="toctext">Petits systèmes d'exploitation</span></a></li> +<li class="toclevel-1"><a href="#Divers"><span class="tocnumber">5</span> <span class="toctext">Divers</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Notions" id="Notions"></a><h2> <span class="mw-headline"> Notions </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" class="external text" title="http://fr.wikipedia.org/wiki/Basic_Input_Output_System" rel="nofollow">BIOS</a> pour ceux qui ne savent pas ce que c'est +</li></ul> +<a name="Assembleur" id="Assembleur"></a><h3> <span class="mw-headline"> Assembleur </span></h3> +<ul><li> <a href="http://mark.masmcode.com/" class="external text" title="http://mark.masmcode.com/" rel="nofollow">Optimisation</a> +</li><li> <a href="http://www.asmcommunity.net/" class="external text" title="http://www.asmcommunity.net/" rel="nofollow">asmcommunity.net</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">Hacks SVGA</a> +</li><li> <a href="http://www.x86-guide.com/" class="external text" title="http://www.x86-guide.com/" rel="nofollow">Guide pour l'assembleur X86</a> +</li><li> <a href="http://asm.sourceforge.net/" class="external text" title="http://asm.sourceforge.net/" rel="nofollow">asm.sourceforge.net</a> +</li><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Interruptions du BIOS</a> +</li><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/idx_interrupt.html" rel="nofollow">Encore les interruptions</a> +</li><li> <a href="http://www.penguin.cz/~literakl/intel/intel.html" class="external text" title="http://www.penguin.cz/~literakl/intel/intel.html" rel="nofollow">80x86 instruction set</a> +</li></ul> +<a name="D.C3.A9marrage_.28boot.29" id="D.C3.A9marrage_.28boot.29"></a><h3> <span class="mw-headline"> Démarrage (boot) </span></h3> +<ul><li> <a href="http://susam.in/articles/boot-sector-code/" class="external text" title="http://susam.in/articles/boot-sector-code/" rel="nofollow">Secteur de boot</a> +</li><li> <a href="http://www.osdcom.info/content/view/33/39/" class="external text" title="http://www.osdcom.info/content/view/33/39/" rel="nofollow">Après GRUB (multiboot)</a> +</li><li> Premier boot de la première version de linux : <a href="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.00/linux-0.01/boot/boot.s" rel="nofollow">[1]</a> et <a href="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" class="external autonumber" title="http://www.oldlinux.org/Linux.old/kernel/0.1x/linux-0.10/boot/bootsect.s" rel="nofollow">[2]</a> +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Bootloaders" rel="nofollow">Chargeurs de démarrage</a> sur le wiki X86_Assembly +</li><li> <a href="http://www.vnutz.com/content/program_a_bootstrap_loader" class="external text" title="http://www.vnutz.com/content/program_a_bootstrap_loader" rel="nofollow">Programmer un chargeur de démarrage</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">Organisation du disque dur</a> (secteur de boot et fichiers de grub) +</li><li> <a href="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" class="external text" title="http://www.gnu.org/software/grub/manual/multiboot/multiboot.html" rel="nofollow">Multiboot Specification</a> +</li><li> <a href="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" class="external text" title="http://www.sfr-fresh.com/linux/misc/grub-0.97.tar.gz/" rel="nofollow">Grub-0.97.tar.gz</a> (Téléchargement des sources) +</li></ul> +<a name="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29" id="Modes_du_processeur_.28r.C3.A9el.2C_prot.C3.A9g.C3.A9.2C_....29"></a><h3> <span class="mw-headline"> Modes du processeur (réel, protégé, ...) </span></h3> +<ul><li> <a href="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" class="external text" title="http://www.x86.org/articles/pmbasics/tspec_a1_doc.htm" rel="nofollow">Protected Mode Basics</a> : Les bases, y entrer, en sortir <b>sur le processeur 80286</b> (donc pas pour nous) +</li><li> <a href="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" class="external text" title="http://en.wikibooks.org/wiki/X86_Assembly/Protected_Mode" rel="nofollow">X86 Assembly/Protected Mode</a> +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : du réel dans du protégé +</li><li> <a href="http://benoit.papillault.free.fr/c/l32/pm.asm" class="external text" title="http://benoit.papillault.free.fr/c/l32/pm.asm" rel="nofollow">pm.asm</a> : passage en mode protégé puis retour en mode réel + du V86 quelque part. +</li><li> <a href="http://www.sudleyplace.com/pmtorm.html" class="external text" title="http://www.sudleyplace.com/pmtorm.html" rel="nofollow">Transition from Protected Mode to Real Mode</a> +</li></ul> +<a name="Affichage_Graphique" id="Affichage_Graphique"></a><h3> <span class="mw-headline"> Affichage Graphique </span></h3> +<p>Voir l'article <a href="/Affichage_Graphique" title="Affichage Graphique">Affichage Graphique</a>. +</p> +<ul><li> <a href="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" class="external text" title="http://heim.ifi.uio.no/~stanisls/helppc/ascii.gif" rel="nofollow">Table des caractères ascii</a> +</li><li> <a href="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" class="external text" title="http://www.faqs.org/faqs/pc-hardware-faq/supervga-programming/" rel="nofollow">SuperVGA/VESA programmer's notes</a> +</li><li> <a href="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" class="external text" title="http://en.wikipedia.org/wiki/VESA_BIOS_Extensions" rel="nofollow">VESA BIOS Extensions</a> sur wikipedia +</li><li> <a href="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" class="external text" title="http://atschool.eduweb.co.uk/camdean/pupils/amac/vga.htm#11" rel="nofollow">Tutorial on VGA Graphics</a> : VGA, souris, bitmap +</li><li> <a href="http://osdev.berlios.de/v86.html" class="external text" title="http://osdev.berlios.de/v86.html" rel="nofollow">Virtual 8086 Mode</a> : Utiliser le mode 8086 virtuel pour accéder aux fonctions VESA du BIOS +</li><li> <a href="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" class="external text" title="http://www.inversereality.org/tutorials/graphics%20programming/videomodesvesa.html" rel="nofollow">VESA Video Modes</a> Comment obtenir la liste des modes disponibles et des informations les concernant. +</li><li> <a href="http://www.student.cs.uwaterloo.ca/~cs452/grub/" class="external text" title="http://www.student.cs.uwaterloo.ca/~cs452/grub/" rel="nofollow">patch vbe</a> pour que grub nous passe en mode graphique +</li><li> <a href="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" class="external text" title="http://svn.navi.cx/misc/trunk/metalkit/lib/vbe.c" rel="nofollow">Utilisation de l'interface en mode protégé de VBE</a> +</li></ul> +<a name="R.C3.A9f.C3.A9rences_VESA" id="R.C3.A9f.C3.A9rences_VESA"></a><h4> <span class="mw-headline"> Références VESA </span></h4> +<ul><li> <a href="http://docs.ruudkoot.nl/vesasp12.txt" class="external text" title="http://docs.ruudkoot.nl/vesasp12.txt" rel="nofollow">VESA BIOS Extension 1.2</a> +</li><li> <a href="http://docs.ruudkoot.nl/vbe20.txt" class="external text" title="http://docs.ruudkoot.nl/vbe20.txt" rel="nofollow">VESA BIOS Extension 2.0</a> +</li><li> <a href="http://www.vesa.org/public/VBE/vbe3.pdf" class="external text" title="http://www.vesa.org/public/VBE/vbe3.pdf" rel="nofollow">VESA BIOS Extension 3.0</a> +</li></ul> +<a name="Drivers" id="Drivers"></a><h3> <span class="mw-headline"> Drivers </span></h3> +<a name="Souris" id="Souris"></a><h4> <span class="mw-headline"> Souris </span></h4> +<ul><li> <a href="http://wiki.osdev.org/Mouse_Input" class="external text" title="http://wiki.osdev.org/Mouse_Input" rel="nofollow">Mouse Input</a> : Comment configurer et écouter une souris PS/2 sur osdev.org +</li></ul> +<a name="Clavier" id="Clavier"></a><h4> <span class="mw-headline"> Clavier </span></h4> +<ul><li> <a href="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" class="external text" title="http://wiki.osdev.org/PS2_Keyboard#Protected_Mode_Keyboard_Driver" rel="nofollow">PS2 Keyboard</a> : driver sur osdev.org +</li><li> <a href="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" class="external text" title="http://www.win.tue.nl/~aeb/linux/kbd/scancodes.html" rel="nofollow">Keyboard scancodes</a> Quel code envoyé par le clavier correspond à quel caractère. +</li></ul> +<a name="Portails" id="Portails"></a><h2> <span class="mw-headline"> Portails </span></h2> +<ul><li> <a href="http://www.osdev.org/" class="external text" title="http://www.osdev.org/" rel="nofollow">osdev.org</a> : Wiki + Forum sur le développement d'OS +</li><li> <a href="http://www.nondot.org/sabre/os/articles" class="external text" title="http://www.nondot.org/sabre/os/articles" rel="nofollow">OSRC</a> : Operating System Ressource Center +</li><li> <a href="http://www.osdever.net/" class="external text" title="http://www.osdever.net/" rel="nofollow">Bona Fide OS Development</a> +</li></ul> +<a name="Tutoriels" id="Tutoriels"></a><h2> <span class="mw-headline"> Tutoriels </span></h2> +<ul><li> <a href="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" class="external text" title="http://a.michelizza.free.fr/pmwiki.php?n=TutoOS.TutoOS" rel="nofollow">Pépin</a> : tuto du boot au shell, très complet. +</li><li> <a href="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" class="external text" title="http://aaprog.blogspot.com/2008/04/systme-dexploitation-1-les-outils.html" rel="nofollow">AAProg</a> : Pas beaucoup de code mais de très bonnes explications +</li><li> Tutoriels sur <a href="http://www.osdever.net/tutorials.php?cat=0&sort=1" class="external text" title="http://www.osdever.net/tutorials.php?cat=0&sort=1" rel="nofollow">Bona Fide</a> +</li></ul> +<a name="Petits_syst.C3.A8mes_d.27exploitation" id="Petits_syst.C3.A8mes_d.27exploitation"></a><h2> <span class="mw-headline"> Petits systèmes d'exploitation </span></h2> +<p>Toujours pratique pour s'inspirer… +</p> +<ul><li> <a href="http://wiki.osdev.org/Projects" class="external text" title="http://wiki.osdev.org/Projects" rel="nofollow">Liste de projets d'OS</a> sur osdev.org +</li><li> <a href="http://www.dynatos.org/" class="external text" title="http://www.dynatos.org/" rel="nofollow">dynatos</a> +</li><li> <a href="http://gok.customer.netspace.net.au/resources/" class="external text" title="http://gok.customer.netspace.net.au/resources/" rel="nofollow">UNIOS</a> +</li><li> <a href="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" class="external text" title="http://www.sarg.ryerson.ca/~cmwilson/code/funos/funos.html" rel="nofollow">funos</a> +</li><li> <a href="http://www.ninj4.net/kinetic/" class="external text" title="http://www.ninj4.net/kinetic/" rel="nofollow">kinetic</a>, écrit en haskell. Ça vaut le coup d'oeuil. +</li></ul> +<a name="Divers" id="Divers"></a><h2> <span class="mw-headline"> Divers </span></h2> +<ul><li> <a href="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" class="external text" title="http://www.siteduzero.com/forum-83-276054-p1-creer-son-propre-systeme-d-exploitation.html" rel="nofollow">Sujet</a> sur le site du zéro, pas mal de liens +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 14/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:4-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144205 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Liens">https://wiki.gruntnetwork.com/Liens</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Liens" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk"><a href="/Discussion:Liens" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Liens&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Liens&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Liens" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Liens">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Liens" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Liens" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Liens&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Liens&oldid=73" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 31 décembre 2009 à 01:15.<br /></li> + <li id="viewcount">Cette page a été consultée 3 583 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.294 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000.css b/wget/https/wiki.gruntnetwork.com/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000.css @@ -0,0 +1 @@ +/* Le CSS placé ici sera appliqué à tous les habillages. */ +\ No newline at end of file diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000.css b/wget/https/wiki.gruntnetwork.com/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000.css @@ -0,0 +1 @@ +/* Le CSS placé ici affectera les utilisateurs de l’habillage Monobook. */ +\ No newline at end of file diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000.css b/wget/https/wiki.gruntnetwork.com/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000.css @@ -0,0 +1 @@ +/* Le CSS placé ici affectera les impressions */ +\ No newline at end of file diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&action=creativecommons b/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&action=creativecommons @@ -0,0 +1,25 @@ +<?xml version='1.0' encoding="UTF-8" ?> +<rdf:RDF xmlns:cc="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <cc:Work rdf:about="https://wiki.gruntnetwork.com/Notes"> + <dc:title>Notes</dc:title> + <dc:publisher>Gruntnetwork</dc:publisher> + <dc:language>fr</dc:language> + <dc:type>Text</dc:type> + <dc:format>text/html</dc:format> + <dc:identifier>https://wiki.gruntnetwork.com/Notes</dc:identifier> + <dc:date>2011-06-21</dc:date> + <dc:creator>Utilisateur non enregistré sur Gruntnetwork</dc:creator> + <dc:rights rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + <cc:license rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + </cc:Work> + <cc:License rdf:about="http://www.gnu.org/copyleft/fdl.html"> + <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> +</rdf:RDF> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&action=edit.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&action=edit.html @@ -0,0 +1,168 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Notes,Utilisateurs" /> + <link rel="next" href="Notes.html" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Notes"; + var wgTitle = "Notes"; + var wgAction = "edit"; + var wgArticleId = "24"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11738; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/edit.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Notes skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="Notes.html" title="Notes">Notes</a></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Notes&action=edit.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Notes&action=edit.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="https://wiki.gruntnetwork.com/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être redéclarés tant que la construction a un effet. C'est une alternative à la possibilité de rajouter des variables "par nom" pour qu'elles soient utilisées par ex. par le code d'une fonction.</textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="Notes.html" title="Notes">Notes</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="Notes.html">https://wiki.gruntnetwork.com/Notes</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Notes.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Notes&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="index.php5%3Ftitle=Notes&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Notes&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Notes.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Notes.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Notes.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Notes.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.248 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&action=edit.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&action=edit.orig @@ -0,0 +1,168 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Notes,Utilisateurs" /> + <link rel="next" href="https://wiki.gruntnetwork.com/Notes" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Notes"; + var wgTitle = "Notes"; + var wgAction = "edit"; + var wgArticleId = "24"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11738; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/edit.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Notes skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="/Notes" title="Notes">Notes</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être redéclarés tant que la construction a un effet. C'est une alternative à la possibilité de rajouter des variables "par nom" pour qu'elles soient utilisées par ex. par le code d'une fonction.</textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="/Notes" title="Notes">Notes</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Notes">https://wiki.gruntnetwork.com/Notes</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Notes" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Notes&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="/index.php5?title=Notes&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Notes&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Notes" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Notes">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Notes" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Notes" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.248 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&action=history.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&action=history.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Notes&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Notes »" href="https://wiki.gruntnetwork.com/index.php5?title=Notes&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Notes »" href="https://wiki.gruntnetwork.com/index.php5?title=Notes&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Historique des versions de « Notes » - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Notes"; + var wgTitle = "Notes"; + var wgAction = "history"; + var wgArticleId = "24"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11738; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/history.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Notes skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Notes »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Journal&page=Notes" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Notes&action=history.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Notes&action=history.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Notes" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Notes&limit=20&action=history" title="Notes" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Notes&limit=50&action=history" title="Notes" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Notes&limit=100&action=history" title="Notes" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Notes&limit=250&action=history" title="Notes" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Notes&limit=500&action=history" title="Notes" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="https://wiki.gruntnetwork.com/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Notes" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="index.php5%3Ftitle=Notes&oldid=11738.html" title="Notes">21 juin 2011 à 11:27</a> <span class='history-user'><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/193.239.192.194" title="Spécial:Contributions/193.239.192.194" class="mw-userlink">193.239.192.194</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:193.239.192.194&action=edit&redlink=1" class="new" title="Discussion utilisateur:193.239.192.194 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(366 octets)</span> <span class="comment">(Page créée avec « Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être re… »)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Notes&limit=20&action=history" title="Notes" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Notes&limit=50&action=history" title="Notes" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Notes&limit=100&action=history" title="Notes" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Notes&limit=250&action=history" title="Notes" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Notes&limit=500&action=history" title="Notes" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="Notes.html">https://wiki.gruntnetwork.com/Notes</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Notes.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Notes&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Notes&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="index.php5%3Ftitle=Notes&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Notes.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Notes.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Notes.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Notes.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Notes&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Notes&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.307 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&action=history.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&action=history.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Notes&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Notes »" href="/index.php5?title=Notes&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Notes »" href="/index.php5?title=Notes&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Historique des versions de « Notes » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Notes"; + var wgTitle = "Notes"; + var wgAction = "history"; + var wgArticleId = "24"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11738; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/history.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Notes skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Notes »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="/index.php5?title=Sp%C3%A9cial:Journal&page=Notes" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Notes" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Notes&limit=20&action=history" title="Notes" class="mw-numlink">20</a> | <a href="/index.php5?title=Notes&limit=50&action=history" title="Notes" class="mw-numlink">50</a> | <a href="/index.php5?title=Notes&limit=100&action=history" title="Notes" class="mw-numlink">100</a> | <a href="/index.php5?title=Notes&limit=250&action=history" title="Notes" class="mw-numlink">250</a> | <a href="/index.php5?title=Notes&limit=500&action=history" title="Notes" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Notes" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="/index.php5?title=Notes&oldid=11738" title="Notes">21 juin 2011 à 11:27</a> <span class='history-user'><a href="/Sp%C3%A9cial:Contributions/193.239.192.194" title="Spécial:Contributions/193.239.192.194" class="mw-userlink">193.239.192.194</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:193.239.192.194&action=edit&redlink=1" class="new" title="Discussion utilisateur:193.239.192.194 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(366 octets)</span> <span class="comment">(Page créée avec « Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être re… »)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Notes&limit=20&action=history" title="Notes" class="mw-numlink">20</a> | <a href="/index.php5?title=Notes&limit=50&action=history" title="Notes" class="mw-numlink">50</a> | <a href="/index.php5?title=Notes&limit=100&action=history" title="Notes" class="mw-numlink">100</a> | <a href="/index.php5?title=Notes&limit=250&action=history" title="Notes" class="mw-numlink">250</a> | <a href="/index.php5?title=Notes&limit=500&action=history" title="Notes" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Notes">https://wiki.gruntnetwork.com/Notes</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Notes" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Notes&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Notes&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="/index.php5?title=Notes&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Notes" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Notes">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Notes" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Notes" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Notes&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Notes&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.307 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&oldid=11738.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&oldid=11738.html @@ -0,0 +1,175 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Notes" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Notes&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Notes - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Notes"; + var wgTitle = "Notes"; + var wgAction = "view"; + var wgArticleId = 24; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11738; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Notes skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Notes</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 21 juin 2011 à 11:27 par <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/193.239.192.194" title="Spécial:Contributions/193.239.192.194" class="mw-userlink">193.239.192.194</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:193.239.192.194&action=edit&redlink=1" class="new" title="Discussion utilisateur:193.239.192.194 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Notes&oldid=11738.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Notes&oldid=11738.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être redéclarés tant que la construction a un effet. C'est une alternative à la possibilité de rajouter des variables "par nom" pour qu'elles soient utilisées par ex. par le code d'une fonction. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:24-0!1!0!!fr!2!edit=0 and timestamp 20230503142900 --> +<div class="printfooter"> +Récupérée de « <a href="Notes.html">https://wiki.gruntnetwork.com/Notes</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Notes.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Notes&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Notes&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Notes&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Notes.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Notes.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Notes.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Notes.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="https://wiki.gruntnetwork.com/index.php5?title=Notes&oldid=11738&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Notes&oldid=11738.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.308 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&oldid=11738.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&oldid=11738.orig @@ -0,0 +1,175 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Notes" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Notes&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Notes - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Notes"; + var wgTitle = "Notes"; + var wgAction = "view"; + var wgArticleId = 24; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11738; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Notes skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Notes</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 21 juin 2011 à 11:27 par <a href="/Sp%C3%A9cial:Contributions/193.239.192.194" title="Spécial:Contributions/193.239.192.194" class="mw-userlink">193.239.192.194</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:193.239.192.194&action=edit&redlink=1" class="new" title="Discussion utilisateur:193.239.192.194 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être redéclarés tant que la construction a un effet. C'est une alternative à la possibilité de rajouter des variables "par nom" pour qu'elles soient utilisées par ex. par le code d'une fonction. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:24-0!1!0!!fr!2!edit=0 and timestamp 20230503142900 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Notes">https://wiki.gruntnetwork.com/Notes</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Notes" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Notes&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Notes&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Notes&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Notes" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Notes">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Notes" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Notes" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Notes&oldid=11738&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Notes&oldid=11738" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.308 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes&printable=yes.html @@ -0,0 +1,167 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Notes" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Notes&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Notes - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Notes"; + var wgTitle = "Notes"; + var wgAction = "view"; + var wgArticleId = "24"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11738; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Notes skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Notes</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Notes&printable=yes&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Notes&printable=yes&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être redéclarés tant que la construction a un effet. C'est une alternative à la possibilité de rajouter des variables "par nom" pour qu'elles soient utilisées par ex. par le code d'une fonction. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:24-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144211 --> +<div class="printfooter"> +Récupérée de « <a href="Notes.html">https://wiki.gruntnetwork.com/Notes</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Notes.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Notes&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Notes&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Notes&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Notes.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Notes.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Notes.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Notes.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Notes&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Notes&oldid=11738.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 21 juin 2011 à 11:27.<br /></li> + <li id="viewcount">Cette page a été consultée 1 476 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.349 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes&printable=yes.orig @@ -0,0 +1,167 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Notes" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Notes&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Notes - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Notes"; + var wgTitle = "Notes"; + var wgAction = "view"; + var wgArticleId = "24"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11738; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Notes skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Notes</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être redéclarés tant que la construction a un effet. C'est une alternative à la possibilité de rajouter des variables "par nom" pour qu'elles soient utilisées par ex. par le code d'une fonction. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:24-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144211 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Notes">https://wiki.gruntnetwork.com/Notes</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Notes" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Notes&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Notes&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Notes&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Notes" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Notes">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Notes" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Notes" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Notes&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Notes&oldid=11738" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 21 juin 2011 à 11:27.<br /></li> + <li id="viewcount">Cette page a été consultée 1 476 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.349 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes.html @@ -0,0 +1,167 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Notes" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Notes&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Notes - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Notes"; + var wgTitle = "Notes"; + var wgAction = "view"; + var wgArticleId = "24"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11738; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Notes skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Notes</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Notes&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Notes&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être redéclarés tant que la construction a un effet. C'est une alternative à la possibilité de rajouter des variables "par nom" pour qu'elles soient utilisées par ex. par le code d'une fonction. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:24-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144211 --> +<div class="printfooter"> +Récupérée de « <a href="Notes.html">https://wiki.gruntnetwork.com/Notes</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="Notes.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Notes&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Notes&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Notes&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Notes.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Notes.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Notes.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Notes.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Notes&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Notes&oldid=11738.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 21 juin 2011 à 11:27.<br /></li> + <li id="viewcount">Cette page a été consultée 1 474 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.278 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes.orig @@ -0,0 +1,167 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Notes" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Notes&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Notes - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Notes"; + var wgTitle = "Notes"; + var wgAction = "view"; + var wgArticleId = "24"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 11738; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Notes skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Notes</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Permettre à une construction de déclarer des mot-clés (keywords) qui seront valides ou non à certains endroits du code dans la construction, mais ne pourront pas être redéclarés tant que la construction a un effet. C'est une alternative à la possibilité de rajouter des variables "par nom" pour qu'elles soient utilisées par ex. par le code d'une fonction. +</p> +<!-- +NewPP limit report +Preprocessor node count: 1/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:24-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144211 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Notes">https://wiki.gruntnetwork.com/Notes</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Notes" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Notes&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Notes&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Notes&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Notes" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Notes">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Notes" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Notes" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Notes&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Notes&oldid=11738" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 21 juin 2011 à 11:27.<br /></li> + <li id="viewcount">Cette page a été consultée 1 474 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.278 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=creativecommons b/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=creativecommons @@ -0,0 +1,25 @@ +<?xml version='1.0' encoding="UTF-8" ?> +<rdf:RDF xmlns:cc="http://web.resource.org/cc/" + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> + <cc:Work rdf:about="https://wiki.gruntnetwork.com/Pr%C3%A9requis"> + <dc:title>Prérequis</dc:title> + <dc:publisher>Gruntnetwork</dc:publisher> + <dc:language>fr</dc:language> + <dc:type>Text</dc:type> + <dc:format>text/html</dc:format> + <dc:identifier>https://wiki.gruntnetwork.com/Pr%C3%A9requis</dc:identifier> + <dc:date>2009-02-08</dc:date> + <dc:creator>Utilisateur non enregistré sur Gruntnetwork</dc:creator> + <dc:rights rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + <cc:license rdf:resource="http://www.gnu.org/copyleft/fdl.html" /> + </cc:Work> + <cc:License rdf:about="http://www.gnu.org/copyleft/fdl.html"> + <cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> +</rdf:RDF> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=edit.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=edit.html @@ -0,0 +1,225 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Prérequis,Utilisateurs" /> + <link rel="next" href="./Spécial:Page_au_hasard.html" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Prérequis"; + var wgTitle = "Prérequis"; + var wgAction = "edit"; + var wgArticleId = "2"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 33; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/edit.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Prérequis skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="./Spécial:Page_au_hasard.html" title="Prérequis">Prérequis</a></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Prérequis&action=edit.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Prérequis&action=edit.html#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="https://wiki.gruntnetwork.com/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">'''Une chose à retenir''' : Si vous êtes largués, si vous ne comprenez pas, si vous piétinez sur un bout de code qui compile pas : n'attendez pas le déluge pour vous signaler ! +Il y aura toujours quelqu'un pour vous aider à comprendre ce qui vous pose problème. + +Certaines pages lisées ici sont en anglais : si vous avez du mal, envoyez-moi un message et je ferai une traduction. + +== Un peu de lecture == + +=== Conception D'OS (GNU/Linux Magazine) === + +Dans GNU/Linux Magazine France est paru il y a quelques années une série d'articles sur la conception de systèmes d'exploitation. Les articles expliquent, pas à pas, comment créer un système simple. Je recommande vivement à tout le monde d'avoir lu ces articles d'ici la mi-janvier, comme ça on saura tous de quoi on parle. + +[http://sos.enix.org/fr/SOSDownload Les articles] sont disponibles gratuitement sur internet. + +N°s des magazines : + +* 62 : Boot + Console +* 63 : Segmentation et Interruptions +* 65 : Pagination +* 68 : Multitâche et changement de contexte +* 69 : Threads +* 70 : Espaces d'adressage, appels système et applications utilisateur +* 72 : Gestion de l'espace virtuel utilisateur +* 74 : VFS (système de fichiers virtuel) + +Vu que ce dernier numéro contient la deuxième partie d'un article très intéressant sur la compression de données, vous voudrez peut-être la première partie : n° 73. +Le site [http://www.ed-diamond.com/ ed-diamond] vous permet de commander ces anciens numéros. Il propose un « PowerPack x10 » à 25€, donc ça fait un bon cadeau de noël pour pas trop cher :) + +=== a Simple Operating System === + +Un système d'exploitation simple : [http://minso.free.fr/cavinfo/systeme/sos.html sos] + +== Connaissance du C et de l'assembleur == + +==== Cours de C : ==== +* http://c.developpez.com/cours/ +* http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html +* http://c.developpez.com/faq/ + +==== Cours d'ASM pour plateforme x86 : ==== +* http://benoit-m.developpez.com/assembleur/tutoriel/ +* http://www.scribd.com/search?c=all&query=x86&commit=Search + +== Compréhension de la procédure de démarrage (Boot) == + +* [http://fr.wikipedia.org/wiki/Master_boot_record MBR] +* [http://www.pixelbeat.org/docs/disk/ GRUB] +* (Une des) [http://fr.wikipedia.org/wiki/Init procédure(s) d'initialisation] de GNU/Linux (Nous n'utiliserons probablement pas cette méthode, mais c'est bon à connaître). + + +Nous utiliserons Grub et le standard Multiboot plutôt que de programmer notre propre chargeur de démarrage, cependant les méchanismes du MBR et de GRUB sont à comprendre pour maîtriser la chose (et pour la soutenance orale...). + +== Interruptions du BIOS (pages de référence) == + +* [http://www.ctyme.com/intr/int.htm Liste des interruptions] et de comment on s'en sert +* Les interruptions int 10h et int 13h seront utilisées. +* [http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html int 10h] +* [http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html int 13h (VGA)] +* [http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT Modes VESA]</textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="./Spécial:Page_au_hasard.html" title="Prérequis">Prérequis</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="./Spécial:Page_au_hasard.html">https://wiki.gruntnetwork.com/Pr%C3%A9requis</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="./Spécial:Page_au_hasard.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="index.php5%3Ftitle=Prérequis&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Prérequis&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Prérequis.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Prérequis.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Prérequis.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Prérequis.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.265 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=edit.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=edit.orig @@ -0,0 +1,225 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Prérequis,Utilisateurs" /> + <link rel="next" href="https://wiki.gruntnetwork.com/Pr%C3%A9requis" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Voir le texte source - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Prérequis"; + var wgTitle = "Prérequis"; + var wgAction = "edit"; + var wgArticleId = "2"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 33; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/edit.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Prérequis skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Voir le texte source</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub">pour <a href="/Pr%C3%A9requis" title="Prérequis">Prérequis</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p>Vous n’êtes pas autorisé(e) à modifier cette page, pour la raison suivante : +</p> +<div class="permissions-errors">L’action que vous essayez de réaliser n’est accessible qu’aux utilisateurs du groupe : <a href="/index.php5?title=Gruntnetwork:Utilisateurs&action=edit&redlink=1" class="new" title="Gruntnetwork:Utilisateurs (page inexistante)">Utilisateurs</a>.</div> +<p>Vous pouvez voir et copier le contenu de la page : +</p><textarea id="wpTextbox1" name="wpTextbox1" cols="80" rows="25" readonly="readonly">'''Une chose à retenir''' : Si vous êtes largués, si vous ne comprenez pas, si vous piétinez sur un bout de code qui compile pas : n'attendez pas le déluge pour vous signaler ! +Il y aura toujours quelqu'un pour vous aider à comprendre ce qui vous pose problème. + +Certaines pages lisées ici sont en anglais : si vous avez du mal, envoyez-moi un message et je ferai une traduction. + +== Un peu de lecture == + +=== Conception D'OS (GNU/Linux Magazine) === + +Dans GNU/Linux Magazine France est paru il y a quelques années une série d'articles sur la conception de systèmes d'exploitation. Les articles expliquent, pas à pas, comment créer un système simple. Je recommande vivement à tout le monde d'avoir lu ces articles d'ici la mi-janvier, comme ça on saura tous de quoi on parle. + +[http://sos.enix.org/fr/SOSDownload Les articles] sont disponibles gratuitement sur internet. + +N°s des magazines : + +* 62 : Boot + Console +* 63 : Segmentation et Interruptions +* 65 : Pagination +* 68 : Multitâche et changement de contexte +* 69 : Threads +* 70 : Espaces d'adressage, appels système et applications utilisateur +* 72 : Gestion de l'espace virtuel utilisateur +* 74 : VFS (système de fichiers virtuel) + +Vu que ce dernier numéro contient la deuxième partie d'un article très intéressant sur la compression de données, vous voudrez peut-être la première partie : n° 73. +Le site [http://www.ed-diamond.com/ ed-diamond] vous permet de commander ces anciens numéros. Il propose un « PowerPack x10 » à 25€, donc ça fait un bon cadeau de noël pour pas trop cher :) + +=== a Simple Operating System === + +Un système d'exploitation simple : [http://minso.free.fr/cavinfo/systeme/sos.html sos] + +== Connaissance du C et de l'assembleur == + +==== Cours de C : ==== +* http://c.developpez.com/cours/ +* http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html +* http://c.developpez.com/faq/ + +==== Cours d'ASM pour plateforme x86 : ==== +* http://benoit-m.developpez.com/assembleur/tutoriel/ +* http://www.scribd.com/search?c=all&query=x86&commit=Search + +== Compréhension de la procédure de démarrage (Boot) == + +* [http://fr.wikipedia.org/wiki/Master_boot_record MBR] +* [http://www.pixelbeat.org/docs/disk/ GRUB] +* (Une des) [http://fr.wikipedia.org/wiki/Init procédure(s) d'initialisation] de GNU/Linux (Nous n'utiliserons probablement pas cette méthode, mais c'est bon à connaître). + + +Nous utiliserons Grub et le standard Multiboot plutôt que de programmer notre propre chargeur de démarrage, cependant les méchanismes du MBR et de GRUB sont à comprendre pour maîtriser la chose (et pour la soutenance orale...). + +== Interruptions du BIOS (pages de référence) == + +* [http://www.ctyme.com/intr/int.htm Liste des interruptions] et de comment on s'en sert +* Les interruptions int 10h et int 13h seront utilisées. +* [http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html int 10h] +* [http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html int 13h (VGA)] +* [http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT Modes VESA]</textarea><div class='templatesUsed'> + +</div> +<p>Revenir à la page <a href="/Pr%C3%A9requis" title="Prérequis">Prérequis</a>.</p> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Pr%C3%A9requis">https://wiki.gruntnetwork.com/Pr%C3%A9requis</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Pr%C3%A9requis" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource" class="selected"><a href="/index.php5?title=Pr%C3%A9requis&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Pr%C3%A9requis&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Pr%C3%A9requis" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Pr%C3%A9requis">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Pr%C3%A9requis" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.265 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=history.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=history.html @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Prérequis&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Prérequis »" href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Prérequis »" href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Historique des versions de « Prérequis » - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Prérequis"; + var wgTitle = "Prérequis"; + var wgAction = "history"; + var wgArticleId = "2"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 33; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="https://wiki.gruntnetwork.com/skins/common/history.js?207"></script> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Prérequis skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Prérequis »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Journal&page=Pr%C3%A9requis" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Prérequis&action=history.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Prérequis&action=history.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Prérequis" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&limit=20&action=history" title="Prérequis" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&limit=50&action=history" title="Prérequis" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&limit=100&action=history" title="Prérequis" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&limit=250&action=history" title="Prérequis" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&limit=500&action=history" title="Prérequis" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="https://wiki.gruntnetwork.com/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Prérequis" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="index.php5%3Ftitle=Prérequis&oldid=33.html" title="Prérequis">8 février 2009 à 17:15</a> <span class='history-user'><a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/78.115.6.242" title="Spécial:Contributions/78.115.6.242" class="mw-userlink">78.115.6.242</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:78.115.6.242&action=edit&redlink=1" class="new" title="Discussion utilisateur:78.115.6.242 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(3 106 octets)</span> <span class="comment">(<span class="autocomment"><a href="./Spécial:Page_au_hasard.html#Connaissance_du_C_et_de_l.27assembleur" title="Prérequis">→</a>Connaissance du C et de l'assembleur</span>)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&limit=20&action=history" title="Prérequis" class="mw-numlink">20</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&limit=50&action=history" title="Prérequis" class="mw-numlink">50</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&limit=100&action=history" title="Prérequis" class="mw-numlink">100</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&limit=250&action=history" title="Prérequis" class="mw-numlink">250</a> | <a href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&limit=500&action=history" title="Prérequis" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="./Spécial:Page_au_hasard.html">https://wiki.gruntnetwork.com/Pr%C3%A9requis</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="./Spécial:Page_au_hasard.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Prérequis&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="index.php5%3Ftitle=Prérequis&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Prérequis.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Prérequis.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Prérequis.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Prérequis.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.335 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=history.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=history.orig @@ -0,0 +1,183 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Pr%C3%A9requis&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de « Prérequis »" href="/index.php5?title=Pr%C3%A9requis&feed=rss&action=history" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de « Prérequis »" href="/index.php5?title=Pr%C3%A9requis&feed=atom&action=history" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Historique des versions de « Prérequis » - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Prérequis"; + var wgTitle = "Prérequis"; + var wgAction = "history"; + var wgArticleId = "2"; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 33; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/history.js?207"></script> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Prérequis skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Historique des versions de « Prérequis »</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"><a href="/index.php5?title=Sp%C3%A9cial:Journal&page=Pr%C3%A9requis" title="Spécial:Journal">Voir les opérations sur cette page</a></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/index.php5" method="get" id="mw-history-searchform"><fieldset id="mw-history-search"> +<legend>Naviguer dans l’historique</legend> +<input name="title" type="hidden" value="Prérequis" /> +<input name="action" type="hidden" value="history" /> +<label for="year">À partir de l’année (et précédentes) :</label> <input name="year" size="4" value="" id="year" maxlength="4" /> <label for="month">À partir du mois (et précédents) :</label> <select id="month" name="month" class="mw-month-selector"><option value="-1">tous</option> +<option value="1">janvier</option> +<option value="2">février</option> +<option value="3">mars</option> +<option value="4">avril</option> +<option value="5">mai</option> +<option value="6">juin</option> +<option value="7">juillet</option> +<option value="8">août</option> +<option value="9">septembre</option> +<option value="10">octobre</option> +<option value="11">novembre</option> +<option value="12">décembre</option></select> <input type="submit" value="Lister" /> +</fieldset></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Pr%C3%A9requis&limit=20&action=history" title="Prérequis" class="mw-numlink">20</a> | <a href="/index.php5?title=Pr%C3%A9requis&limit=50&action=history" title="Prérequis" class="mw-numlink">50</a> | <a href="/index.php5?title=Pr%C3%A9requis&limit=100&action=history" title="Prérequis" class="mw-numlink">100</a> | <a href="/index.php5?title=Pr%C3%A9requis&limit=250&action=history" title="Prérequis" class="mw-numlink">250</a> | <a href="/index.php5?title=Pr%C3%A9requis&limit=500&action=history" title="Prérequis" class="mw-numlink">500</a>).<p>Légende : (actu) = différence avec la version actuelle, (diff) = différence avec la version précédente, <b>m</b> = modification mineure +</p><form action="/index.php5" id="mw-history-compare"><input name="title" type="hidden" value="Prérequis" /><ul id="pagehistory"> +<li class="">(actu) (diff) <a href="/index.php5?title=Pr%C3%A9requis&oldid=33" title="Prérequis">8 février 2009 à 17:15</a> <span class='history-user'><a href="/Sp%C3%A9cial:Contributions/78.115.6.242" title="Spécial:Contributions/78.115.6.242" class="mw-userlink">78.115.6.242</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:78.115.6.242&action=edit&redlink=1" class="new" title="Discussion utilisateur:78.115.6.242 (page inexistante)">discuter</a>)</span></span> <span class="history-size">(3 106 octets)</span> <span class="comment">(<span class="autocomment"><a href="/Pr%C3%A9requis#Connaissance_du_C_et_de_l.27assembleur" title="Prérequis">→</a>Connaissance du C et de l'assembleur</span>)</span> </li> +</ul></form>(toute dernière | toute première) Voir (50 plus récentes) (50 plus anciennes) (<a href="/index.php5?title=Pr%C3%A9requis&limit=20&action=history" title="Prérequis" class="mw-numlink">20</a> | <a href="/index.php5?title=Pr%C3%A9requis&limit=50&action=history" title="Prérequis" class="mw-numlink">50</a> | <a href="/index.php5?title=Pr%C3%A9requis&limit=100&action=history" title="Prérequis" class="mw-numlink">100</a> | <a href="/index.php5?title=Pr%C3%A9requis&limit=250&action=history" title="Prérequis" class="mw-numlink">250</a> | <a href="/index.php5?title=Pr%C3%A9requis&limit=500&action=history" title="Prérequis" class="mw-numlink">500</a>).<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Pr%C3%A9requis">https://wiki.gruntnetwork.com/Pr%C3%A9requis</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Pr%C3%A9requis" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Pr%C3%A9requis&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history" class="selected"><a href="/index.php5?title=Pr%C3%A9requis&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Pr%C3%A9requis" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Pr%C3%A9requis">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Pr%C3%A9requis" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> + <li id="feedlinks"><a id="feed-rss" href="/index.php5?title=Pr%C3%A9requis&feed=rss&action=history" rel="alternate" type="application/rss+xml" class="feedlink" title="Flux RSS pour cette page">RSS</a> + <a id="feed-atom" href="/index.php5?title=Pr%C3%A9requis&feed=atom&action=history" rel="alternate" type="application/atom+xml" class="feedlink" title="Flux Atom pour cette page">Atom</a> + </li><li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.335 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&oldid=33.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&oldid=33.html @@ -0,0 +1,242 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Prérequis" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Prérequis&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Prérequis - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Prérequis"; + var wgTitle = "Prérequis"; + var wgAction = "view"; + var wgArticleId = 2; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 33; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Prérequis skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Prérequis</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 8 février 2009 à 17:15 par <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Contributions/78.115.6.242" title="Spécial:Contributions/78.115.6.242" class="mw-userlink">78.115.6.242</a> <span class="mw-usertoollinks">(<a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion_utilisateur:78.115.6.242&action=edit&redlink=1" class="new" title="Discussion utilisateur:78.115.6.242 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Prérequis&oldid=33.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Prérequis&oldid=33.html#searchInput">rechercher</a></div> <!-- start content --> + <p><b>Une chose à retenir</b> : Si vous êtes largués, si vous ne comprenez pas, si vous piétinez sur un bout de code qui compile pas : n'attendez pas le déluge pour vous signaler ! +Il y aura toujours quelqu'un pour vous aider à comprendre ce qui vous pose problème. +</p><p>Certaines pages lisées ici sont en anglais : si vous avez du mal, envoyez-moi un message et je ferai une traduction. +</p> +<table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Prérequis&oldid=33.html#Un_peu_de_lecture"><span class="tocnumber">1</span> <span class="toctext">Un peu de lecture</span></a> +<ul> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Prérequis&oldid=33.html#Conception_D.27OS_.28GNU.2FLinux_Magazine.29"><span class="tocnumber">1.1</span> <span class="toctext">Conception D'OS (GNU/Linux Magazine)</span></a></li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Prérequis&oldid=33.html#a_Simple_Operating_System"><span class="tocnumber">1.2</span> <span class="toctext">a Simple Operating System</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Prérequis&oldid=33.html#Connaissance_du_C_et_de_l.27assembleur"><span class="tocnumber">2</span> <span class="toctext">Connaissance du C et de l'assembleur</span></a> +<ul> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Prérequis&oldid=33.html#Cours_de_C_:"><span class="tocnumber">2.1</span> <span class="toctext">Cours de C :</span></a></li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Prérequis&oldid=33.html#Cours_d.27ASM_pour_plateforme_x86_:"><span class="tocnumber">2.2</span> <span class="toctext">Cours d'ASM pour plateforme x86 :</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Prérequis&oldid=33.html#Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"><span class="tocnumber">3</span> <span class="toctext">Compréhension de la procédure de démarrage (Boot)</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Prérequis&oldid=33.html#Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"><span class="tocnumber">4</span> <span class="toctext">Interruptions du BIOS (pages de référence)</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Un_peu_de_lecture" id="Un_peu_de_lecture"></a><h2> <span class="mw-headline"> Un peu de lecture </span></h2> +<a name="Conception_D.27OS_.28GNU.2FLinux_Magazine.29" id="Conception_D.27OS_.28GNU.2FLinux_Magazine.29"></a><h3> <span class="mw-headline"> Conception D'OS (GNU/Linux Magazine) </span></h3> +<p>Dans GNU/Linux Magazine France est paru il y a quelques années une série d'articles sur la conception de systèmes d'exploitation. Les articles expliquent, pas à pas, comment créer un système simple. Je recommande vivement à tout le monde d'avoir lu ces articles d'ici la mi-janvier, comme ça on saura tous de quoi on parle. +</p><p><a href="http://sos.enix.org/fr/SOSDownload" class="external text" title="http://sos.enix.org/fr/SOSDownload" rel="nofollow">Les articles</a> sont disponibles gratuitement sur internet. +</p><p>N°s des magazines : +</p> +<ul><li> 62 : Boot + Console +</li><li> 63 : Segmentation et Interruptions +</li><li> 65 : Pagination +</li><li> 68 : Multitâche et changement de contexte +</li><li> 69 : Threads +</li><li> 70 : Espaces d'adressage, appels système et applications utilisateur +</li><li> 72 : Gestion de l'espace virtuel utilisateur +</li><li> 74 : VFS (système de fichiers virtuel) +</li></ul> +<p>Vu que ce dernier numéro contient la deuxième partie d'un article très intéressant sur la compression de données, vous voudrez peut-être la première partie : n° 73. +Le site <a href="http://www.ed-diamond.com/" class="external text" title="http://www.ed-diamond.com/" rel="nofollow">ed-diamond</a> vous permet de commander ces anciens numéros. Il propose un « PowerPack x10 » à 25€, donc ça fait un bon cadeau de noël pour pas trop cher :) +</p> +<a name="a_Simple_Operating_System" id="a_Simple_Operating_System"></a><h3> <span class="mw-headline"> a Simple Operating System </span></h3> +<p>Un système d'exploitation simple : <a href="http://minso.free.fr/cavinfo/systeme/sos.html" class="external text" title="http://minso.free.fr/cavinfo/systeme/sos.html" rel="nofollow">sos</a> +</p> +<a name="Connaissance_du_C_et_de_l.27assembleur" id="Connaissance_du_C_et_de_l.27assembleur"></a><h2> <span class="mw-headline"> Connaissance du C et de l'assembleur </span></h2> +<a name="Cours_de_C_:" id="Cours_de_C_:"></a><h4> <span class="mw-headline"> Cours de C : </span></h4> +<ul><li> <a href="http://c.developpez.com/cours/" class="external free" title="http://c.developpez.com/cours/" rel="nofollow">http://c.developpez.com/cours/</a> +</li><li> <a href="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" class="external free" title="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" rel="nofollow">http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html</a> +</li><li> <a href="http://c.developpez.com/faq/" class="external free" title="http://c.developpez.com/faq/" rel="nofollow">http://c.developpez.com/faq/</a> +</li></ul> +<a name="Cours_d.27ASM_pour_plateforme_x86_:" id="Cours_d.27ASM_pour_plateforme_x86_:"></a><h4> <span class="mw-headline"> Cours d'ASM pour plateforme x86 : </span></h4> +<ul><li> <a href="http://benoit-m.developpez.com/assembleur/tutoriel/" class="external free" title="http://benoit-m.developpez.com/assembleur/tutoriel/" rel="nofollow">http://benoit-m.developpez.com/assembleur/tutoriel/</a> +</li><li> <a href="http://www.scribd.com/search?c=all&query=x86&commit=Search" class="external free" title="http://www.scribd.com/search?c=all&query=x86&commit=Search" rel="nofollow">http://www.scribd.com/search?c=all&query=x86&commit=Search</a> +</li></ul> +<a name="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29" id="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"></a><h2> <span class="mw-headline"> Compréhension de la procédure de démarrage (Boot) </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Master_boot_record" class="external text" title="http://fr.wikipedia.org/wiki/Master_boot_record" rel="nofollow">MBR</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">GRUB</a> +</li><li> (Une des) <a href="http://fr.wikipedia.org/wiki/Init" class="external text" title="http://fr.wikipedia.org/wiki/Init" rel="nofollow">procédure(s) d'initialisation</a> de GNU/Linux (Nous n'utiliserons probablement pas cette méthode, mais c'est bon à connaître). +</li></ul> +<p><br /> +Nous utiliserons Grub et le standard Multiboot plutôt que de programmer notre propre chargeur de démarrage, cependant les méchanismes du MBR et de GRUB sont à comprendre pour maîtriser la chose (et pour la soutenance orale...). +</p> +<a name="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29" id="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"></a><h2> <span class="mw-headline"> Interruptions du BIOS (pages de référence) </span></h2> +<ul><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Liste des interruptions</a> et de comment on s'en sert +</li><li> Les interruptions int 10h et int 13h seront utilisées. +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" rel="nofollow">int 10h</a> +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" rel="nofollow">int 13h (VGA)</a> +</li><li> <a href="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" class="external text" title="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" rel="nofollow">Modes VESA</a> +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 9/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:2-0!1!0!!fr!2!edit=0 and timestamp 20230503142416 --> +<div class="printfooter"> +Récupérée de « <a href="./Spécial:Page_au_hasard.html">https://wiki.gruntnetwork.com/Pr%C3%A9requis</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="./Spécial:Page_au_hasard.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Prérequis&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Prérequis&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Prérequis.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Prérequis.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Prérequis.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Prérequis.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&oldid=33&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Prérequis&oldid=33.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.467 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&oldid=33.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&oldid=33.orig @@ -0,0 +1,242 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <meta name="keywords" content="Prérequis" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Pr%C3%A9requis&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Prérequis - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Prérequis"; + var wgTitle = "Prérequis"; + var wgAction = "view"; + var wgArticleId = 2; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 33; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Prérequis skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Prérequis</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"> + <div id="mw-revision-info">Version du 8 février 2009 à 17:15 par <a href="/Sp%C3%A9cial:Contributions/78.115.6.242" title="Spécial:Contributions/78.115.6.242" class="mw-userlink">78.115.6.242</a> <span class="mw-usertoollinks">(<a href="/index.php5?title=Discussion_utilisateur:78.115.6.242&action=edit&redlink=1" class="new" title="Discussion utilisateur:78.115.6.242 (page inexistante)">discuter</a>)</span></div> + + <div id="mw-revision-nav">(diff) ← Version précédente | Voir la version courante (diff) | Version suivante → (diff)</div> + </div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p><b>Une chose à retenir</b> : Si vous êtes largués, si vous ne comprenez pas, si vous piétinez sur un bout de code qui compile pas : n'attendez pas le déluge pour vous signaler ! +Il y aura toujours quelqu'un pour vous aider à comprendre ce qui vous pose problème. +</p><p>Certaines pages lisées ici sont en anglais : si vous avez du mal, envoyez-moi un message et je ferai une traduction. +</p> +<table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#Un_peu_de_lecture"><span class="tocnumber">1</span> <span class="toctext">Un peu de lecture</span></a> +<ul> +<li class="toclevel-2"><a href="#Conception_D.27OS_.28GNU.2FLinux_Magazine.29"><span class="tocnumber">1.1</span> <span class="toctext">Conception D'OS (GNU/Linux Magazine)</span></a></li> +<li class="toclevel-2"><a href="#a_Simple_Operating_System"><span class="tocnumber">1.2</span> <span class="toctext">a Simple Operating System</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="#Connaissance_du_C_et_de_l.27assembleur"><span class="tocnumber">2</span> <span class="toctext">Connaissance du C et de l'assembleur</span></a> +<ul> +<li class="toclevel-2"><a href="#Cours_de_C_:"><span class="tocnumber">2.1</span> <span class="toctext">Cours de C :</span></a></li> +<li class="toclevel-2"><a href="#Cours_d.27ASM_pour_plateforme_x86_:"><span class="tocnumber">2.2</span> <span class="toctext">Cours d'ASM pour plateforme x86 :</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="#Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"><span class="tocnumber">3</span> <span class="toctext">Compréhension de la procédure de démarrage (Boot)</span></a></li> +<li class="toclevel-1"><a href="#Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"><span class="tocnumber">4</span> <span class="toctext">Interruptions du BIOS (pages de référence)</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Un_peu_de_lecture" id="Un_peu_de_lecture"></a><h2> <span class="mw-headline"> Un peu de lecture </span></h2> +<a name="Conception_D.27OS_.28GNU.2FLinux_Magazine.29" id="Conception_D.27OS_.28GNU.2FLinux_Magazine.29"></a><h3> <span class="mw-headline"> Conception D'OS (GNU/Linux Magazine) </span></h3> +<p>Dans GNU/Linux Magazine France est paru il y a quelques années une série d'articles sur la conception de systèmes d'exploitation. Les articles expliquent, pas à pas, comment créer un système simple. Je recommande vivement à tout le monde d'avoir lu ces articles d'ici la mi-janvier, comme ça on saura tous de quoi on parle. +</p><p><a href="http://sos.enix.org/fr/SOSDownload" class="external text" title="http://sos.enix.org/fr/SOSDownload" rel="nofollow">Les articles</a> sont disponibles gratuitement sur internet. +</p><p>N°s des magazines : +</p> +<ul><li> 62 : Boot + Console +</li><li> 63 : Segmentation et Interruptions +</li><li> 65 : Pagination +</li><li> 68 : Multitâche et changement de contexte +</li><li> 69 : Threads +</li><li> 70 : Espaces d'adressage, appels système et applications utilisateur +</li><li> 72 : Gestion de l'espace virtuel utilisateur +</li><li> 74 : VFS (système de fichiers virtuel) +</li></ul> +<p>Vu que ce dernier numéro contient la deuxième partie d'un article très intéressant sur la compression de données, vous voudrez peut-être la première partie : n° 73. +Le site <a href="http://www.ed-diamond.com/" class="external text" title="http://www.ed-diamond.com/" rel="nofollow">ed-diamond</a> vous permet de commander ces anciens numéros. Il propose un « PowerPack x10 » à 25€, donc ça fait un bon cadeau de noël pour pas trop cher :) +</p> +<a name="a_Simple_Operating_System" id="a_Simple_Operating_System"></a><h3> <span class="mw-headline"> a Simple Operating System </span></h3> +<p>Un système d'exploitation simple : <a href="http://minso.free.fr/cavinfo/systeme/sos.html" class="external text" title="http://minso.free.fr/cavinfo/systeme/sos.html" rel="nofollow">sos</a> +</p> +<a name="Connaissance_du_C_et_de_l.27assembleur" id="Connaissance_du_C_et_de_l.27assembleur"></a><h2> <span class="mw-headline"> Connaissance du C et de l'assembleur </span></h2> +<a name="Cours_de_C_:" id="Cours_de_C_:"></a><h4> <span class="mw-headline"> Cours de C : </span></h4> +<ul><li> <a href="http://c.developpez.com/cours/" class="external free" title="http://c.developpez.com/cours/" rel="nofollow">http://c.developpez.com/cours/</a> +</li><li> <a href="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" class="external free" title="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" rel="nofollow">http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html</a> +</li><li> <a href="http://c.developpez.com/faq/" class="external free" title="http://c.developpez.com/faq/" rel="nofollow">http://c.developpez.com/faq/</a> +</li></ul> +<a name="Cours_d.27ASM_pour_plateforme_x86_:" id="Cours_d.27ASM_pour_plateforme_x86_:"></a><h4> <span class="mw-headline"> Cours d'ASM pour plateforme x86 : </span></h4> +<ul><li> <a href="http://benoit-m.developpez.com/assembleur/tutoriel/" class="external free" title="http://benoit-m.developpez.com/assembleur/tutoriel/" rel="nofollow">http://benoit-m.developpez.com/assembleur/tutoriel/</a> +</li><li> <a href="http://www.scribd.com/search?c=all&query=x86&commit=Search" class="external free" title="http://www.scribd.com/search?c=all&query=x86&commit=Search" rel="nofollow">http://www.scribd.com/search?c=all&query=x86&commit=Search</a> +</li></ul> +<a name="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29" id="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"></a><h2> <span class="mw-headline"> Compréhension de la procédure de démarrage (Boot) </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Master_boot_record" class="external text" title="http://fr.wikipedia.org/wiki/Master_boot_record" rel="nofollow">MBR</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">GRUB</a> +</li><li> (Une des) <a href="http://fr.wikipedia.org/wiki/Init" class="external text" title="http://fr.wikipedia.org/wiki/Init" rel="nofollow">procédure(s) d'initialisation</a> de GNU/Linux (Nous n'utiliserons probablement pas cette méthode, mais c'est bon à connaître). +</li></ul> +<p><br /> +Nous utiliserons Grub et le standard Multiboot plutôt que de programmer notre propre chargeur de démarrage, cependant les méchanismes du MBR et de GRUB sont à comprendre pour maîtriser la chose (et pour la soutenance orale...). +</p> +<a name="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29" id="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"></a><h2> <span class="mw-headline"> Interruptions du BIOS (pages de référence) </span></h2> +<ul><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Liste des interruptions</a> et de comment on s'en sert +</li><li> Les interruptions int 10h et int 13h seront utilisées. +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" rel="nofollow">int 10h</a> +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" rel="nofollow">int 13h (VGA)</a> +</li><li> <a href="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" class="external text" title="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" rel="nofollow">Modes VESA</a> +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 9/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:2-0!1!0!!fr!2!edit=0 and timestamp 20230503142416 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Pr%C3%A9requis">https://wiki.gruntnetwork.com/Pr%C3%A9requis</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Pr%C3%A9requis" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Pr%C3%A9requis&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Pr%C3%A9requis&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Pr%C3%A9requis" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Pr%C3%A9requis">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Pr%C3%A9requis" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Pr%C3%A9requis&oldid=33&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Pr%C3%A9requis&oldid=33" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.467 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&printable=yes&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&printable=yes&printable=yes.html @@ -0,0 +1,234 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Prérequis" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Prérequis&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Prérequis - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Prérequis"; + var wgTitle = "Prérequis"; + var wgAction = "view"; + var wgArticleId = "2"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 33; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Prérequis skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Prérequis</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Prérequis&printable=yes&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Prérequis&printable=yes&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <p><b>Une chose à retenir</b> : Si vous êtes largués, si vous ne comprenez pas, si vous piétinez sur un bout de code qui compile pas : n'attendez pas le déluge pour vous signaler ! +Il y aura toujours quelqu'un pour vous aider à comprendre ce qui vous pose problème. +</p><p>Certaines pages lisées ici sont en anglais : si vous avez du mal, envoyez-moi un message et je ferai une traduction. +</p> +<table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Prérequis&printable=yes&printable=yes.html#Un_peu_de_lecture"><span class="tocnumber">1</span> <span class="toctext">Un peu de lecture</span></a> +<ul> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Prérequis&printable=yes&printable=yes.html#Conception_D.27OS_.28GNU.2FLinux_Magazine.29"><span class="tocnumber">1.1</span> <span class="toctext">Conception D'OS (GNU/Linux Magazine)</span></a></li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Prérequis&printable=yes&printable=yes.html#a_Simple_Operating_System"><span class="tocnumber">1.2</span> <span class="toctext">a Simple Operating System</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Prérequis&printable=yes&printable=yes.html#Connaissance_du_C_et_de_l.27assembleur"><span class="tocnumber">2</span> <span class="toctext">Connaissance du C et de l'assembleur</span></a> +<ul> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Prérequis&printable=yes&printable=yes.html#Cours_de_C_:"><span class="tocnumber">2.1</span> <span class="toctext">Cours de C :</span></a></li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Prérequis&printable=yes&printable=yes.html#Cours_d.27ASM_pour_plateforme_x86_:"><span class="tocnumber">2.2</span> <span class="toctext">Cours d'ASM pour plateforme x86 :</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Prérequis&printable=yes&printable=yes.html#Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"><span class="tocnumber">3</span> <span class="toctext">Compréhension de la procédure de démarrage (Boot)</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Prérequis&printable=yes&printable=yes.html#Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"><span class="tocnumber">4</span> <span class="toctext">Interruptions du BIOS (pages de référence)</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Un_peu_de_lecture" id="Un_peu_de_lecture"></a><h2> <span class="mw-headline"> Un peu de lecture </span></h2> +<a name="Conception_D.27OS_.28GNU.2FLinux_Magazine.29" id="Conception_D.27OS_.28GNU.2FLinux_Magazine.29"></a><h3> <span class="mw-headline"> Conception D'OS (GNU/Linux Magazine) </span></h3> +<p>Dans GNU/Linux Magazine France est paru il y a quelques années une série d'articles sur la conception de systèmes d'exploitation. Les articles expliquent, pas à pas, comment créer un système simple. Je recommande vivement à tout le monde d'avoir lu ces articles d'ici la mi-janvier, comme ça on saura tous de quoi on parle. +</p><p><a href="http://sos.enix.org/fr/SOSDownload" class="external text" title="http://sos.enix.org/fr/SOSDownload" rel="nofollow">Les articles</a> sont disponibles gratuitement sur internet. +</p><p>N°s des magazines : +</p> +<ul><li> 62 : Boot + Console +</li><li> 63 : Segmentation et Interruptions +</li><li> 65 : Pagination +</li><li> 68 : Multitâche et changement de contexte +</li><li> 69 : Threads +</li><li> 70 : Espaces d'adressage, appels système et applications utilisateur +</li><li> 72 : Gestion de l'espace virtuel utilisateur +</li><li> 74 : VFS (système de fichiers virtuel) +</li></ul> +<p>Vu que ce dernier numéro contient la deuxième partie d'un article très intéressant sur la compression de données, vous voudrez peut-être la première partie : n° 73. +Le site <a href="http://www.ed-diamond.com/" class="external text" title="http://www.ed-diamond.com/" rel="nofollow">ed-diamond</a> vous permet de commander ces anciens numéros. Il propose un « PowerPack x10 » à 25€, donc ça fait un bon cadeau de noël pour pas trop cher :) +</p> +<a name="a_Simple_Operating_System" id="a_Simple_Operating_System"></a><h3> <span class="mw-headline"> a Simple Operating System </span></h3> +<p>Un système d'exploitation simple : <a href="http://minso.free.fr/cavinfo/systeme/sos.html" class="external text" title="http://minso.free.fr/cavinfo/systeme/sos.html" rel="nofollow">sos</a> +</p> +<a name="Connaissance_du_C_et_de_l.27assembleur" id="Connaissance_du_C_et_de_l.27assembleur"></a><h2> <span class="mw-headline"> Connaissance du C et de l'assembleur </span></h2> +<a name="Cours_de_C_:" id="Cours_de_C_:"></a><h4> <span class="mw-headline"> Cours de C : </span></h4> +<ul><li> <a href="http://c.developpez.com/cours/" class="external free" title="http://c.developpez.com/cours/" rel="nofollow">http://c.developpez.com/cours/</a> +</li><li> <a href="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" class="external free" title="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" rel="nofollow">http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html</a> +</li><li> <a href="http://c.developpez.com/faq/" class="external free" title="http://c.developpez.com/faq/" rel="nofollow">http://c.developpez.com/faq/</a> +</li></ul> +<a name="Cours_d.27ASM_pour_plateforme_x86_:" id="Cours_d.27ASM_pour_plateforme_x86_:"></a><h4> <span class="mw-headline"> Cours d'ASM pour plateforme x86 : </span></h4> +<ul><li> <a href="http://benoit-m.developpez.com/assembleur/tutoriel/" class="external free" title="http://benoit-m.developpez.com/assembleur/tutoriel/" rel="nofollow">http://benoit-m.developpez.com/assembleur/tutoriel/</a> +</li><li> <a href="http://www.scribd.com/search?c=all&query=x86&commit=Search" class="external free" title="http://www.scribd.com/search?c=all&query=x86&commit=Search" rel="nofollow">http://www.scribd.com/search?c=all&query=x86&commit=Search</a> +</li></ul> +<a name="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29" id="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"></a><h2> <span class="mw-headline"> Compréhension de la procédure de démarrage (Boot) </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Master_boot_record" class="external text" title="http://fr.wikipedia.org/wiki/Master_boot_record" rel="nofollow">MBR</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">GRUB</a> +</li><li> (Une des) <a href="http://fr.wikipedia.org/wiki/Init" class="external text" title="http://fr.wikipedia.org/wiki/Init" rel="nofollow">procédure(s) d'initialisation</a> de GNU/Linux (Nous n'utiliserons probablement pas cette méthode, mais c'est bon à connaître). +</li></ul> +<p><br /> +Nous utiliserons Grub et le standard Multiboot plutôt que de programmer notre propre chargeur de démarrage, cependant les méchanismes du MBR et de GRUB sont à comprendre pour maîtriser la chose (et pour la soutenance orale...). +</p> +<a name="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29" id="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"></a><h2> <span class="mw-headline"> Interruptions du BIOS (pages de référence) </span></h2> +<ul><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Liste des interruptions</a> et de comment on s'en sert +</li><li> Les interruptions int 10h et int 13h seront utilisées. +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" rel="nofollow">int 10h</a> +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" rel="nofollow">int 13h (VGA)</a> +</li><li> <a href="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" class="external text" title="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" rel="nofollow">Modes VESA</a> +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 9/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:2-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144146 --> +<div class="printfooter"> +Récupérée de « <a href="./Spécial:Page_au_hasard.html">https://wiki.gruntnetwork.com/Pr%C3%A9requis</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="./Spécial:Page_au_hasard.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Prérequis&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Prérequis&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Prérequis.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Prérequis.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Prérequis.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Prérequis.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Prérequis&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Prérequis&oldid=33.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 8 février 2009 à 17:15.<br /></li> + <li id="viewcount">Cette page a été consultée 2 006 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.713 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&printable=yes&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&printable=yes&printable=yes.orig @@ -0,0 +1,234 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Prérequis" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Pr%C3%A9requis&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Prérequis - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Prérequis"; + var wgTitle = "Prérequis"; + var wgAction = "view"; + var wgArticleId = "2"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 33; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Prérequis skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Prérequis</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p><b>Une chose à retenir</b> : Si vous êtes largués, si vous ne comprenez pas, si vous piétinez sur un bout de code qui compile pas : n'attendez pas le déluge pour vous signaler ! +Il y aura toujours quelqu'un pour vous aider à comprendre ce qui vous pose problème. +</p><p>Certaines pages lisées ici sont en anglais : si vous avez du mal, envoyez-moi un message et je ferai une traduction. +</p> +<table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#Un_peu_de_lecture"><span class="tocnumber">1</span> <span class="toctext">Un peu de lecture</span></a> +<ul> +<li class="toclevel-2"><a href="#Conception_D.27OS_.28GNU.2FLinux_Magazine.29"><span class="tocnumber">1.1</span> <span class="toctext">Conception D'OS (GNU/Linux Magazine)</span></a></li> +<li class="toclevel-2"><a href="#a_Simple_Operating_System"><span class="tocnumber">1.2</span> <span class="toctext">a Simple Operating System</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="#Connaissance_du_C_et_de_l.27assembleur"><span class="tocnumber">2</span> <span class="toctext">Connaissance du C et de l'assembleur</span></a> +<ul> +<li class="toclevel-2"><a href="#Cours_de_C_:"><span class="tocnumber">2.1</span> <span class="toctext">Cours de C :</span></a></li> +<li class="toclevel-2"><a href="#Cours_d.27ASM_pour_plateforme_x86_:"><span class="tocnumber">2.2</span> <span class="toctext">Cours d'ASM pour plateforme x86 :</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="#Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"><span class="tocnumber">3</span> <span class="toctext">Compréhension de la procédure de démarrage (Boot)</span></a></li> +<li class="toclevel-1"><a href="#Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"><span class="tocnumber">4</span> <span class="toctext">Interruptions du BIOS (pages de référence)</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Un_peu_de_lecture" id="Un_peu_de_lecture"></a><h2> <span class="mw-headline"> Un peu de lecture </span></h2> +<a name="Conception_D.27OS_.28GNU.2FLinux_Magazine.29" id="Conception_D.27OS_.28GNU.2FLinux_Magazine.29"></a><h3> <span class="mw-headline"> Conception D'OS (GNU/Linux Magazine) </span></h3> +<p>Dans GNU/Linux Magazine France est paru il y a quelques années une série d'articles sur la conception de systèmes d'exploitation. Les articles expliquent, pas à pas, comment créer un système simple. Je recommande vivement à tout le monde d'avoir lu ces articles d'ici la mi-janvier, comme ça on saura tous de quoi on parle. +</p><p><a href="http://sos.enix.org/fr/SOSDownload" class="external text" title="http://sos.enix.org/fr/SOSDownload" rel="nofollow">Les articles</a> sont disponibles gratuitement sur internet. +</p><p>N°s des magazines : +</p> +<ul><li> 62 : Boot + Console +</li><li> 63 : Segmentation et Interruptions +</li><li> 65 : Pagination +</li><li> 68 : Multitâche et changement de contexte +</li><li> 69 : Threads +</li><li> 70 : Espaces d'adressage, appels système et applications utilisateur +</li><li> 72 : Gestion de l'espace virtuel utilisateur +</li><li> 74 : VFS (système de fichiers virtuel) +</li></ul> +<p>Vu que ce dernier numéro contient la deuxième partie d'un article très intéressant sur la compression de données, vous voudrez peut-être la première partie : n° 73. +Le site <a href="http://www.ed-diamond.com/" class="external text" title="http://www.ed-diamond.com/" rel="nofollow">ed-diamond</a> vous permet de commander ces anciens numéros. Il propose un « PowerPack x10 » à 25€, donc ça fait un bon cadeau de noël pour pas trop cher :) +</p> +<a name="a_Simple_Operating_System" id="a_Simple_Operating_System"></a><h3> <span class="mw-headline"> a Simple Operating System </span></h3> +<p>Un système d'exploitation simple : <a href="http://minso.free.fr/cavinfo/systeme/sos.html" class="external text" title="http://minso.free.fr/cavinfo/systeme/sos.html" rel="nofollow">sos</a> +</p> +<a name="Connaissance_du_C_et_de_l.27assembleur" id="Connaissance_du_C_et_de_l.27assembleur"></a><h2> <span class="mw-headline"> Connaissance du C et de l'assembleur </span></h2> +<a name="Cours_de_C_:" id="Cours_de_C_:"></a><h4> <span class="mw-headline"> Cours de C : </span></h4> +<ul><li> <a href="http://c.developpez.com/cours/" class="external free" title="http://c.developpez.com/cours/" rel="nofollow">http://c.developpez.com/cours/</a> +</li><li> <a href="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" class="external free" title="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" rel="nofollow">http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html</a> +</li><li> <a href="http://c.developpez.com/faq/" class="external free" title="http://c.developpez.com/faq/" rel="nofollow">http://c.developpez.com/faq/</a> +</li></ul> +<a name="Cours_d.27ASM_pour_plateforme_x86_:" id="Cours_d.27ASM_pour_plateforme_x86_:"></a><h4> <span class="mw-headline"> Cours d'ASM pour plateforme x86 : </span></h4> +<ul><li> <a href="http://benoit-m.developpez.com/assembleur/tutoriel/" class="external free" title="http://benoit-m.developpez.com/assembleur/tutoriel/" rel="nofollow">http://benoit-m.developpez.com/assembleur/tutoriel/</a> +</li><li> <a href="http://www.scribd.com/search?c=all&query=x86&commit=Search" class="external free" title="http://www.scribd.com/search?c=all&query=x86&commit=Search" rel="nofollow">http://www.scribd.com/search?c=all&query=x86&commit=Search</a> +</li></ul> +<a name="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29" id="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"></a><h2> <span class="mw-headline"> Compréhension de la procédure de démarrage (Boot) </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Master_boot_record" class="external text" title="http://fr.wikipedia.org/wiki/Master_boot_record" rel="nofollow">MBR</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">GRUB</a> +</li><li> (Une des) <a href="http://fr.wikipedia.org/wiki/Init" class="external text" title="http://fr.wikipedia.org/wiki/Init" rel="nofollow">procédure(s) d'initialisation</a> de GNU/Linux (Nous n'utiliserons probablement pas cette méthode, mais c'est bon à connaître). +</li></ul> +<p><br /> +Nous utiliserons Grub et le standard Multiboot plutôt que de programmer notre propre chargeur de démarrage, cependant les méchanismes du MBR et de GRUB sont à comprendre pour maîtriser la chose (et pour la soutenance orale...). +</p> +<a name="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29" id="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"></a><h2> <span class="mw-headline"> Interruptions du BIOS (pages de référence) </span></h2> +<ul><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Liste des interruptions</a> et de comment on s'en sert +</li><li> Les interruptions int 10h et int 13h seront utilisées. +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" rel="nofollow">int 10h</a> +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" rel="nofollow">int 13h (VGA)</a> +</li><li> <a href="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" class="external text" title="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" rel="nofollow">Modes VESA</a> +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 9/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:2-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144146 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Pr%C3%A9requis">https://wiki.gruntnetwork.com/Pr%C3%A9requis</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Pr%C3%A9requis" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Pr%C3%A9requis&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Pr%C3%A9requis&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Pr%C3%A9requis" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Pr%C3%A9requis">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Pr%C3%A9requis" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Pr%C3%A9requis&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Pr%C3%A9requis&oldid=33" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 8 février 2009 à 17:15.<br /></li> + <li id="viewcount">Cette page a été consultée 2 006 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.713 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&printable=yes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&printable=yes.html @@ -0,0 +1,234 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Prérequis" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="index.php5%3Ftitle=Prérequis&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Prérequis - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Prérequis"; + var wgTitle = "Prérequis"; + var wgAction = "view"; + var wgArticleId = "2"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 33; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Prérequis skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Prérequis</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="index.php5%3Ftitle=Prérequis&printable=yes.html#column-one">Navigation</a>, <a href="index.php5%3Ftitle=Prérequis&printable=yes.html#searchInput">rechercher</a></div> <!-- start content --> + <p><b>Une chose à retenir</b> : Si vous êtes largués, si vous ne comprenez pas, si vous piétinez sur un bout de code qui compile pas : n'attendez pas le déluge pour vous signaler ! +Il y aura toujours quelqu'un pour vous aider à comprendre ce qui vous pose problème. +</p><p>Certaines pages lisées ici sont en anglais : si vous avez du mal, envoyez-moi un message et je ferai une traduction. +</p> +<table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Prérequis&printable=yes.html#Un_peu_de_lecture"><span class="tocnumber">1</span> <span class="toctext">Un peu de lecture</span></a> +<ul> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Prérequis&printable=yes.html#Conception_D.27OS_.28GNU.2FLinux_Magazine.29"><span class="tocnumber">1.1</span> <span class="toctext">Conception D'OS (GNU/Linux Magazine)</span></a></li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Prérequis&printable=yes.html#a_Simple_Operating_System"><span class="tocnumber">1.2</span> <span class="toctext">a Simple Operating System</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Prérequis&printable=yes.html#Connaissance_du_C_et_de_l.27assembleur"><span class="tocnumber">2</span> <span class="toctext">Connaissance du C et de l'assembleur</span></a> +<ul> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Prérequis&printable=yes.html#Cours_de_C_:"><span class="tocnumber">2.1</span> <span class="toctext">Cours de C :</span></a></li> +<li class="toclevel-2"><a href="index.php5%3Ftitle=Prérequis&printable=yes.html#Cours_d.27ASM_pour_plateforme_x86_:"><span class="tocnumber">2.2</span> <span class="toctext">Cours d'ASM pour plateforme x86 :</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Prérequis&printable=yes.html#Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"><span class="tocnumber">3</span> <span class="toctext">Compréhension de la procédure de démarrage (Boot)</span></a></li> +<li class="toclevel-1"><a href="index.php5%3Ftitle=Prérequis&printable=yes.html#Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"><span class="tocnumber">4</span> <span class="toctext">Interruptions du BIOS (pages de référence)</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Un_peu_de_lecture" id="Un_peu_de_lecture"></a><h2> <span class="mw-headline"> Un peu de lecture </span></h2> +<a name="Conception_D.27OS_.28GNU.2FLinux_Magazine.29" id="Conception_D.27OS_.28GNU.2FLinux_Magazine.29"></a><h3> <span class="mw-headline"> Conception D'OS (GNU/Linux Magazine) </span></h3> +<p>Dans GNU/Linux Magazine France est paru il y a quelques années une série d'articles sur la conception de systèmes d'exploitation. Les articles expliquent, pas à pas, comment créer un système simple. Je recommande vivement à tout le monde d'avoir lu ces articles d'ici la mi-janvier, comme ça on saura tous de quoi on parle. +</p><p><a href="http://sos.enix.org/fr/SOSDownload" class="external text" title="http://sos.enix.org/fr/SOSDownload" rel="nofollow">Les articles</a> sont disponibles gratuitement sur internet. +</p><p>N°s des magazines : +</p> +<ul><li> 62 : Boot + Console +</li><li> 63 : Segmentation et Interruptions +</li><li> 65 : Pagination +</li><li> 68 : Multitâche et changement de contexte +</li><li> 69 : Threads +</li><li> 70 : Espaces d'adressage, appels système et applications utilisateur +</li><li> 72 : Gestion de l'espace virtuel utilisateur +</li><li> 74 : VFS (système de fichiers virtuel) +</li></ul> +<p>Vu que ce dernier numéro contient la deuxième partie d'un article très intéressant sur la compression de données, vous voudrez peut-être la première partie : n° 73. +Le site <a href="http://www.ed-diamond.com/" class="external text" title="http://www.ed-diamond.com/" rel="nofollow">ed-diamond</a> vous permet de commander ces anciens numéros. Il propose un « PowerPack x10 » à 25€, donc ça fait un bon cadeau de noël pour pas trop cher :) +</p> +<a name="a_Simple_Operating_System" id="a_Simple_Operating_System"></a><h3> <span class="mw-headline"> a Simple Operating System </span></h3> +<p>Un système d'exploitation simple : <a href="http://minso.free.fr/cavinfo/systeme/sos.html" class="external text" title="http://minso.free.fr/cavinfo/systeme/sos.html" rel="nofollow">sos</a> +</p> +<a name="Connaissance_du_C_et_de_l.27assembleur" id="Connaissance_du_C_et_de_l.27assembleur"></a><h2> <span class="mw-headline"> Connaissance du C et de l'assembleur </span></h2> +<a name="Cours_de_C_:" id="Cours_de_C_:"></a><h4> <span class="mw-headline"> Cours de C : </span></h4> +<ul><li> <a href="http://c.developpez.com/cours/" class="external free" title="http://c.developpez.com/cours/" rel="nofollow">http://c.developpez.com/cours/</a> +</li><li> <a href="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" class="external free" title="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" rel="nofollow">http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html</a> +</li><li> <a href="http://c.developpez.com/faq/" class="external free" title="http://c.developpez.com/faq/" rel="nofollow">http://c.developpez.com/faq/</a> +</li></ul> +<a name="Cours_d.27ASM_pour_plateforme_x86_:" id="Cours_d.27ASM_pour_plateforme_x86_:"></a><h4> <span class="mw-headline"> Cours d'ASM pour plateforme x86 : </span></h4> +<ul><li> <a href="http://benoit-m.developpez.com/assembleur/tutoriel/" class="external free" title="http://benoit-m.developpez.com/assembleur/tutoriel/" rel="nofollow">http://benoit-m.developpez.com/assembleur/tutoriel/</a> +</li><li> <a href="http://www.scribd.com/search?c=all&query=x86&commit=Search" class="external free" title="http://www.scribd.com/search?c=all&query=x86&commit=Search" rel="nofollow">http://www.scribd.com/search?c=all&query=x86&commit=Search</a> +</li></ul> +<a name="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29" id="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"></a><h2> <span class="mw-headline"> Compréhension de la procédure de démarrage (Boot) </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Master_boot_record" class="external text" title="http://fr.wikipedia.org/wiki/Master_boot_record" rel="nofollow">MBR</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">GRUB</a> +</li><li> (Une des) <a href="http://fr.wikipedia.org/wiki/Init" class="external text" title="http://fr.wikipedia.org/wiki/Init" rel="nofollow">procédure(s) d'initialisation</a> de GNU/Linux (Nous n'utiliserons probablement pas cette méthode, mais c'est bon à connaître). +</li></ul> +<p><br /> +Nous utiliserons Grub et le standard Multiboot plutôt que de programmer notre propre chargeur de démarrage, cependant les méchanismes du MBR et de GRUB sont à comprendre pour maîtriser la chose (et pour la soutenance orale...). +</p> +<a name="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29" id="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"></a><h2> <span class="mw-headline"> Interruptions du BIOS (pages de référence) </span></h2> +<ul><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Liste des interruptions</a> et de comment on s'en sert +</li><li> Les interruptions int 10h et int 13h seront utilisées. +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" rel="nofollow">int 10h</a> +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" rel="nofollow">int 13h (VGA)</a> +</li><li> <a href="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" class="external text" title="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" rel="nofollow">Modes VESA</a> +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 9/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:2-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144146 --> +<div class="printfooter"> +Récupérée de « <a href="./Spécial:Page_au_hasard.html">https://wiki.gruntnetwork.com/Pr%C3%A9requis</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="./Spécial:Page_au_hasard.html" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="https://wiki.gruntnetwork.com/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="index.php5%3Ftitle=Prérequis&action=edit.html" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="index.php5%3Ftitle=Prérequis&action=history.html" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Prérequis.html" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Prérequis.html">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="./Spécial:Pages_liées/Prérequis.html" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="./Spécial:Suivi_des_liens/Prérequis.html" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="index.php5%3Ftitle=Prérequis&printable=yes&printable=yes.html" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="index.php5%3Ftitle=Prérequis&oldid=33.html" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 8 février 2009 à 17:15.<br /></li> + <li id="viewcount">Cette page a été consultée 2 004 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 1.776 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&printable=yes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Prérequis&printable=yes.orig @@ -0,0 +1,234 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,follow" /> + <meta name="keywords" content="Prérequis" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link title="Creative Commons" type="application/rdf+xml" href="/index.php5?title=Pr%C3%A9requis&action=creativecommons" rel="meta" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Prérequis - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = ""; + var wgCanonicalSpecialPageName = false; + var wgNamespaceNumber = 0; + var wgPageName = "Prérequis"; + var wgTitle = "Prérequis"; + var wgAction = "view"; + var wgArticleId = "2"; + var wgIsArticle = true; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 33; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns-0 ns-subject page-Prérequis skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Prérequis</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <p><b>Une chose à retenir</b> : Si vous êtes largués, si vous ne comprenez pas, si vous piétinez sur un bout de code qui compile pas : n'attendez pas le déluge pour vous signaler ! +Il y aura toujours quelqu'un pour vous aider à comprendre ce qui vous pose problème. +</p><p>Certaines pages lisées ici sont en anglais : si vous avez du mal, envoyez-moi un message et je ferai une traduction. +</p> +<table id="toc" class="toc" summary="Sommaire"><tr><td><div id="toctitle"><h2>Sommaire</h2></div> +<ul> +<li class="toclevel-1"><a href="#Un_peu_de_lecture"><span class="tocnumber">1</span> <span class="toctext">Un peu de lecture</span></a> +<ul> +<li class="toclevel-2"><a href="#Conception_D.27OS_.28GNU.2FLinux_Magazine.29"><span class="tocnumber">1.1</span> <span class="toctext">Conception D'OS (GNU/Linux Magazine)</span></a></li> +<li class="toclevel-2"><a href="#a_Simple_Operating_System"><span class="tocnumber">1.2</span> <span class="toctext">a Simple Operating System</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="#Connaissance_du_C_et_de_l.27assembleur"><span class="tocnumber">2</span> <span class="toctext">Connaissance du C et de l'assembleur</span></a> +<ul> +<li class="toclevel-2"><a href="#Cours_de_C_:"><span class="tocnumber">2.1</span> <span class="toctext">Cours de C :</span></a></li> +<li class="toclevel-2"><a href="#Cours_d.27ASM_pour_plateforme_x86_:"><span class="tocnumber">2.2</span> <span class="toctext">Cours d'ASM pour plateforme x86 :</span></a></li> +</ul> +</li> +<li class="toclevel-1"><a href="#Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"><span class="tocnumber">3</span> <span class="toctext">Compréhension de la procédure de démarrage (Boot)</span></a></li> +<li class="toclevel-1"><a href="#Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"><span class="tocnumber">4</span> <span class="toctext">Interruptions du BIOS (pages de référence)</span></a></li> +</ul> +</td></tr></table><script type="text/javascript"> if (window.showTocToggle) { var tocShowText = "afficher"; var tocHideText = "masquer"; showTocToggle(); } </script> +<a name="Un_peu_de_lecture" id="Un_peu_de_lecture"></a><h2> <span class="mw-headline"> Un peu de lecture </span></h2> +<a name="Conception_D.27OS_.28GNU.2FLinux_Magazine.29" id="Conception_D.27OS_.28GNU.2FLinux_Magazine.29"></a><h3> <span class="mw-headline"> Conception D'OS (GNU/Linux Magazine) </span></h3> +<p>Dans GNU/Linux Magazine France est paru il y a quelques années une série d'articles sur la conception de systèmes d'exploitation. Les articles expliquent, pas à pas, comment créer un système simple. Je recommande vivement à tout le monde d'avoir lu ces articles d'ici la mi-janvier, comme ça on saura tous de quoi on parle. +</p><p><a href="http://sos.enix.org/fr/SOSDownload" class="external text" title="http://sos.enix.org/fr/SOSDownload" rel="nofollow">Les articles</a> sont disponibles gratuitement sur internet. +</p><p>N°s des magazines : +</p> +<ul><li> 62 : Boot + Console +</li><li> 63 : Segmentation et Interruptions +</li><li> 65 : Pagination +</li><li> 68 : Multitâche et changement de contexte +</li><li> 69 : Threads +</li><li> 70 : Espaces d'adressage, appels système et applications utilisateur +</li><li> 72 : Gestion de l'espace virtuel utilisateur +</li><li> 74 : VFS (système de fichiers virtuel) +</li></ul> +<p>Vu que ce dernier numéro contient la deuxième partie d'un article très intéressant sur la compression de données, vous voudrez peut-être la première partie : n° 73. +Le site <a href="http://www.ed-diamond.com/" class="external text" title="http://www.ed-diamond.com/" rel="nofollow">ed-diamond</a> vous permet de commander ces anciens numéros. Il propose un « PowerPack x10 » à 25€, donc ça fait un bon cadeau de noël pour pas trop cher :) +</p> +<a name="a_Simple_Operating_System" id="a_Simple_Operating_System"></a><h3> <span class="mw-headline"> a Simple Operating System </span></h3> +<p>Un système d'exploitation simple : <a href="http://minso.free.fr/cavinfo/systeme/sos.html" class="external text" title="http://minso.free.fr/cavinfo/systeme/sos.html" rel="nofollow">sos</a> +</p> +<a name="Connaissance_du_C_et_de_l.27assembleur" id="Connaissance_du_C_et_de_l.27assembleur"></a><h2> <span class="mw-headline"> Connaissance du C et de l'assembleur </span></h2> +<a name="Cours_de_C_:" id="Cours_de_C_:"></a><h4> <span class="mw-headline"> Cours de C : </span></h4> +<ul><li> <a href="http://c.developpez.com/cours/" class="external free" title="http://c.developpez.com/cours/" rel="nofollow">http://c.developpez.com/cours/</a> +</li><li> <a href="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" class="external free" title="http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html" rel="nofollow">http://www.siteduzero.com/tutoriel-3-14189-apprenez-a-programmer-en-c.html</a> +</li><li> <a href="http://c.developpez.com/faq/" class="external free" title="http://c.developpez.com/faq/" rel="nofollow">http://c.developpez.com/faq/</a> +</li></ul> +<a name="Cours_d.27ASM_pour_plateforme_x86_:" id="Cours_d.27ASM_pour_plateforme_x86_:"></a><h4> <span class="mw-headline"> Cours d'ASM pour plateforme x86 : </span></h4> +<ul><li> <a href="http://benoit-m.developpez.com/assembleur/tutoriel/" class="external free" title="http://benoit-m.developpez.com/assembleur/tutoriel/" rel="nofollow">http://benoit-m.developpez.com/assembleur/tutoriel/</a> +</li><li> <a href="http://www.scribd.com/search?c=all&query=x86&commit=Search" class="external free" title="http://www.scribd.com/search?c=all&query=x86&commit=Search" rel="nofollow">http://www.scribd.com/search?c=all&query=x86&commit=Search</a> +</li></ul> +<a name="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29" id="Compr.C3.A9hension_de_la_proc.C3.A9dure_de_d.C3.A9marrage_.28Boot.29"></a><h2> <span class="mw-headline"> Compréhension de la procédure de démarrage (Boot) </span></h2> +<ul><li> <a href="http://fr.wikipedia.org/wiki/Master_boot_record" class="external text" title="http://fr.wikipedia.org/wiki/Master_boot_record" rel="nofollow">MBR</a> +</li><li> <a href="http://www.pixelbeat.org/docs/disk/" class="external text" title="http://www.pixelbeat.org/docs/disk/" rel="nofollow">GRUB</a> +</li><li> (Une des) <a href="http://fr.wikipedia.org/wiki/Init" class="external text" title="http://fr.wikipedia.org/wiki/Init" rel="nofollow">procédure(s) d'initialisation</a> de GNU/Linux (Nous n'utiliserons probablement pas cette méthode, mais c'est bon à connaître). +</li></ul> +<p><br /> +Nous utiliserons Grub et le standard Multiboot plutôt que de programmer notre propre chargeur de démarrage, cependant les méchanismes du MBR et de GRUB sont à comprendre pour maîtriser la chose (et pour la soutenance orale...). +</p> +<a name="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29" id="Interruptions_du_BIOS_.28pages_de_r.C3.A9f.C3.A9rence.29"></a><h2> <span class="mw-headline"> Interruptions du BIOS (pages de référence) </span></h2> +<ul><li> <a href="http://www.ctyme.com/intr/int.htm" class="external text" title="http://www.ctyme.com/intr/int.htm" rel="nofollow">Liste des interruptions</a> et de comment on s'en sert +</li><li> Les interruptions int 10h et int 13h seront utilisées. +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-int10h.html" rel="nofollow">int 10h</a> +</li><li> <a href="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" class="external text" title="http://courses.ece.uiuc.edu/ece390/books/labmanual/graphics-mode13h.html" rel="nofollow">int 13h (VGA)</a> +</li><li> <a href="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" class="external text" title="http://pdos.csail.mit.edu/6.828/2008/readings/hardware/vgadoc/VESA.TXT" rel="nofollow">Modes VESA</a> +</li></ul> + +<!-- +NewPP limit report +Preprocessor node count: 9/1000000 +Post-expand include size: 0/2097152 bytes +Template argument size: 0/2097152 bytes +Expensive parser function count: 0/100 +--> + +<!-- Saved in parser cache with key gruntnetwork_wiki:pcache:idhash:2-0!1!0!!fr!2!edit=0!printable=1 and timestamp 20230503144146 --> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Pr%C3%A9requis">https://wiki.gruntnetwork.com/Pr%C3%A9requis</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-main" class="selected"><a href="/Pr%C3%A9requis" title="Voir la page de contenu [c]" accesskey="c">Page</a></li> + <li id="ca-talk" class="new"><a href="/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1" title="Discussion au sujet de cette page de contenu [t]" accesskey="t">Discussion</a></li> + <li id="ca-viewsource"><a href="/index.php5?title=Pr%C3%A9requis&action=edit" title="Cette page est protégée. Vous pouvez toutefois en visualiser la source. [e]" accesskey="e">Voir le texte source</a></li> + <li id="ca-history"><a href="/index.php5?title=Pr%C3%A9requis&action=history" title="Les versions passées de cette page (avec leurs contributeurs) [h]" accesskey="h">Historique</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Pr%C3%A9requis" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Pr%C3%A9requis">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> + <li id="t-whatlinkshere"><a href="/Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis" title="Liste des pages liées à celle-ci [j]" accesskey="j">Pages liées</a></li> + <li id="t-recentchangeslinked"><a href="/Sp%C3%A9cial:Suivi_des_liens/Pr%C3%A9requis" title="Liste des modifications récentes des pages liées à celle-ci [k]" accesskey="k">Suivi des pages liées</a></li> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + <li id="t-print"><a href="/index.php5?title=Pr%C3%A9requis&printable=yes&printable=yes" rel="alternate" title="Version imprimable de cette page [p]" accesskey="p">Version imprimable</a></li> <li id="t-permalink"><a href="/index.php5?title=Pr%C3%A9requis&oldid=33" title="Lien permanent vers cette version de la page">Lien historique</a></li> </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="lastmod"> Dernière modification de cette page le 8 février 2009 à 17:15.<br /></li> + <li id="viewcount">Cette page a été consultée 2 004 fois.</li> + <li id="copyright">Contenu disponible sous <a href="http://www.gnu.org/copyleft/fdl.html" class="external " title="http://www.gnu.org/copyleft/fdl.html">GNU Free Documentation License 1.2</a>.</li> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 1.776 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Accueil.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Accueil.html @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Accueil.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Accueil.html#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Accueil"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Accueil.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.249 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Accueil.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Accueil.orig @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Accueil"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Accueil" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.249 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Affichage_Graphique.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Affichage_Graphique.html @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Affichage_Graphique.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Affichage_Graphique.html#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Affichage_Graphique"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Affichage_Graphique.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.231 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Affichage_Graphique.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Affichage_Graphique.orig @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Affichage_Graphique"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Affichage_Graphique" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.231 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Conventions.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Conventions.html @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Conventions.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Conventions.html#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Conventions"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Conventions.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.231 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Conventions.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Conventions.orig @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Conventions"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Conventions" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.231 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Accueil.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Accueil.html @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Accueil.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Accueil.html#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Discussion:Accueil"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Accueil.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.232 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Accueil.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Accueil.orig @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Discussion:Accueil"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Accueil" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.232 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Liens.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Liens.html @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Liens.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Liens.html#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Discussion:Liens"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Discussion:Liens.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.225 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Liens.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Liens.orig @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Discussion:Liens"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Liens" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.225 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Environnement_de_programmation.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Environnement_de_programmation.html @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Environnement_de_programmation.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Environnement_de_programmation.html#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Environnement_de_programmation"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Environnement_de_programmation.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.221 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Environnement_de_programmation.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Environnement_de_programmation.orig @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Environnement_de_programmation"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Environnement_de_programmation" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.221 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=GRUB.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=GRUB.html @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=GRUB.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=GRUB.html#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=GRUB"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=GRUB.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.229 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=GRUB.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=GRUB.orig @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=GRUB"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=GRUB" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.229 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Liens.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Liens.html @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Liens.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Liens.html#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Liens"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Liens.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.252 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Liens.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Liens.orig @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Liens"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Liens" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.252 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Notes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Notes.html @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Notes.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Notes.html#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Notes"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Notes.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.226 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Notes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Notes.orig @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Notes"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Notes" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.226 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Prérequis.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Prérequis.html @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Prérequis.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Prérequis.html#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Pr%C3%A9requis"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:Connexion&returnto=Prérequis.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.240 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Prérequis.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Prérequis.orig @@ -0,0 +1,198 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Créer un compte ou se connecter - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "Userlogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:Connexion"; + var wgTitle = "Connexion"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_Connexion skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Créer un compte ou se connecter</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + +<div id="loginstart"></div> +<div id="userloginForm"> +<form name="userlogin" method="post" action="/index.php5?title=Sp%C3%A9cial:Connexion&action=submitlogin&type=login&returnto=Pr%C3%A9requis"> + <h2>Connexion</h2> + <p id="userloginlink"></p> + <div id="userloginprompt"><p>Vous devez activer les témoins (<i>cookies</i>) pour vous connecter à Gruntnetwork. +</p></div> + <table> + <tr> + <td class="mw-label"><label for='wpName1'>Nom d’utilisateur :</label></td> + <td class="mw-input"> + <input type='text' class='loginText' name="wpName" id="wpName1" + tabindex="1" + value="" size='20' /> + </td> + </tr> + <tr> + <td class="mw-label"><label for='wpPassword1'>Mot de passe :</label></td> + <td class="mw-input"> + <input type='password' class='loginPassword' name="wpPassword" id="wpPassword1" + tabindex="2" + value="" size='20' /> + </td> + </tr> + <tr> + <td></td> + <td class="mw-input"> + <input type='checkbox' name="wpRemember" + tabindex="4" + value="1" id="wpRemember" + /> <label for="wpRemember">Me reconnecter automatiquement à la prochaine visite (cookie)</label> + </td> + </tr> + <tr> + <td></td> + <td class="mw-submit"> + <input type='submit' name="wpLoginattempt" id="wpLoginattempt" tabindex="5" value="Connexion" /> <input type='submit' name="wpMailmypassword" id="wpMailmypassword" + tabindex="6" + value="Recevoir un nouveau mot de passe par courriel" /> + </td> + </tr> + </table> +</form> +</div> +<div id="loginend"></div> +<div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion">https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Pr%C3%A9requis" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:Connexion" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:Connexion">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.240 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Modifications_récentes&feed=atom b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Modifications_récentes&feed=atom @@ -0,0 +1,12 @@ +<?xml version="1.0"?> +<?xml-stylesheet type="text/css" href="https://wiki.gruntnetwork.com/skins/common/feed.css?207"?> +<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="fr"> + <id>https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom</id> + <title>Gruntnetwork - Modifications récentes [fr]</title> + <link rel="self" type="application/atom+xml" href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom"/> + <link rel="alternate" type="text/html" href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Modifications_r%C3%A9centes"/> + <updated>2023-05-04T11:36:48Z</updated> + <subtitle>Suivre les dernières modifications de ce wiki dans un flux.</subtitle> + <generator>MediaWiki 1.15.1</generator> + + </feed> +\ No newline at end of file diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Modifications_récentes&feed=rss b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:Modifications_récentes&feed=rss @@ -0,0 +1,12 @@ +<?xml version="1.0"?> +<?xml-stylesheet type="text/css" href="https://wiki.gruntnetwork.com/skins/common/feed.css?207"?> +<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"> + <channel> + <title>Gruntnetwork - Modifications récentes [fr]</title> + <link>https://wiki.gruntnetwork.com/Sp%C3%A9cial:Modifications_r%C3%A9centes</link> + <description>Suivre les dernières modifications de ce wiki dans un flux.</description> + <language>fr</language> + <generator>MediaWiki 1.15.1</generator> + <lastBuildDate>Thu, 04 May 2023 11:36:48 GMT</lastBuildDate> + </channel> +</rss> +\ No newline at end of file diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Accueil.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Accueil.html @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Accueil.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Accueil.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Accueil.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.274 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Accueil.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Accueil.orig @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Accueil" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.274 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.225 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Affichage_Graphique.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Affichage_Graphique.orig @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Affichage_Graphique" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.225 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Conventions.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Conventions.html @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Conventions.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Conventions.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Conventions.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.253 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Conventions.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Conventions.orig @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Conventions" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.253 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.239 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Accueil.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Accueil.orig @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Accueil" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.239 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Liens.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Liens.html @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Liens.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Liens.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Discussion:Liens.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.234 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Liens.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Liens.orig @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Liens" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.234 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.216 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.orig @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Environnement_de_programmation" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.216 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=GRUB.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=GRUB.html @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=GRUB.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=GRUB.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=GRUB.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.220 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=GRUB.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=GRUB.orig @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=GRUB" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.220 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Liens.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Liens.html @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Liens.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Liens.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Liens.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.260 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Liens.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Liens.orig @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Liens" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.260 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Notes.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Notes.html @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Notes.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Notes.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Notes.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.214 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Notes.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Notes.orig @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Notes" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.214 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Prérequis.html b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Prérequis.html @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="https://wiki.gruntnetwork.com/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="./index.php5%3Ftitle=Spécial:Modifications_récentes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="skins/common/shared.css%3F207.css" type="text/css" media="screen" /> + <link rel="stylesheet" href="skins/common/commonPrint.css%3F207.css" type="text/css" media="print" /> + <link rel="stylesheet" href="skins/monobook/main.css%3F207.css" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Common.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Print.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" media="print" /> + <link rel="stylesheet" href="./index.php5%3Ftitle=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%252Fcss&smaxage=18000&action=raw&maxage=18000.css" type="text/css" /> + <link rel="stylesheet" href="index.php5%3Ftitle=-&action=raw&maxage=18000&gen=css.css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="skins/common/wikibits.js%3F207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="skins/common/ajax.js%3F207"></script> + <script type="text/javascript" src="index.php5%3Ftitle=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Prérequis.html#column-one">Navigation</a>, <a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Prérequis.html#searchInput">rechercher</a></div> <!-- start content --> + <form action="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="./index.php5%3Ftitle=Spécial:OpenIDLogin&returnto=Prérequis.html" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(skins/common/images/wiki.png);" href="index.html" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="index.html">Accueil</a></li> + <li id="n-portal"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="./Spécial:Modifications_récentes.html" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="./Spécial:Page_au_hasard.html" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="https://wiki.gruntnetwork.com/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="https://wiki.gruntnetwork.com/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="./Spécial:Pages_spéciales.html" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.307 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Prérequis.orig b/wget/https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Prérequis.orig @@ -0,0 +1,157 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr" dir="ltr"> + <head> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> + <meta http-equiv="Content-Style-Type" content="text/css" /> + <meta name="generator" content="MediaWiki 1.15.1" /> + <meta name="robots" content="noindex,nofollow" /> + <link rel="shortcut icon" href="/favicon.ico" /> + <link rel="search" type="application/opensearchdescription+xml" href="/opensearch_desc.php5" title="Gruntnetwork (fr)" /> + <link rel="copyright" href="http://www.gnu.org/copyleft/fdl.html" /> + <link rel="alternate" type="application/rss+xml" title="Flux RSS de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss" /> + <link rel="alternate" type="application/atom+xml" title="Flux Atom de Gruntnetwork" href="/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom" /> + <title>Se connecter avec OpenID - Gruntnetwork</title> + <link rel="stylesheet" href="/skins/common/shared.css?207" type="text/css" media="screen" /> + <link rel="stylesheet" href="/skins/common/commonPrint.css?207" type="text/css" media="print" /> + <link rel="stylesheet" href="/skins/monobook/main.css?207" type="text/css" media="screen" /> + <!--[if lt IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE50Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 5.5000]><link rel="stylesheet" href="/skins/monobook/IE55Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 6]><link rel="stylesheet" href="/skins/monobook/IE60Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <!--[if IE 7]><link rel="stylesheet" href="/skins/monobook/IE70Fixes.css?207" type="text/css" media="screen" /><![endif]--> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" media="print" /> + <link rel="stylesheet" href="/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000" type="text/css" /> + <link rel="stylesheet" href="/index.php5?title=-&action=raw&maxage=18000&gen=css" type="text/css" /> + <!--[if lt IE 7]><script type="text/javascript" src="/skins/common/IEFixes.js?207"></script> + <meta http-equiv="imagetoolbar" content="no" /><![endif]--> + + <script type= "text/javascript">/*<![CDATA[*/ + var skin = "monobook"; + var stylepath = "/skins"; + var wgArticlePath = "/$1"; + var wgScriptPath = ""; + var wgScript = "/index.php5"; + var wgVariantArticlePath = false; + var wgActionPaths = {}; + var wgServer = "https://wiki.gruntnetwork.com"; + var wgCanonicalNamespace = "Special"; + var wgCanonicalSpecialPageName = "OpenIDLogin"; + var wgNamespaceNumber = -1; + var wgPageName = "Spécial:OpenIDLogin"; + var wgTitle = "OpenIDLogin"; + var wgAction = "view"; + var wgArticleId = 0; + var wgIsArticle = false; + var wgUserName = null; + var wgUserGroups = null; + var wgUserLanguage = "fr"; + var wgContentLanguage = "fr"; + var wgBreakFrames = false; + var wgCurRevisionId = 0; + var wgVersion = "1.15.1"; + var wgEnableAPI = true; + var wgEnableWriteAPI = true; + var wgSeparatorTransformTable = [", .", " ,"]; + var wgDigitTransformTable = ["", ""]; + var wgRestrictionEdit = []; + var wgRestrictionMove = []; + /*]]>*/</script> + + <script type="text/javascript" src="/skins/common/wikibits.js?207"><!-- wikibits js --></script> + <!-- Head Scripts --> + <script type="text/javascript" src="/skins/common/ajax.js?207"></script> + <script type="text/javascript" src="/index.php5?title=-&action=raw&gen=js&useskin=monobook"><!-- site js --></script> + </head> +<body class="mediawiki ltr ns--1 ns-special page-Spécial_OpenIDLogin skin-monobook"> + <div id="globalWrapper"> + <div id="column-content"> + <div id="content"> + <a name="top" id="top"></a> + <h1 id="firstHeading" class="firstHeading">Se connecter avec OpenID</h1> + <div id="bodyContent"> + <h3 id="siteSub">De Gruntnetwork.</h3> + <div id="contentSub"></div> + <div id="jump-to-nav">Aller à : <a href="#column-one">Navigation</a>, <a href="#searchInput">rechercher</a></div> <!-- start content --> + <form action="/Sp%C3%A9cial:OpenIDLogin" method="POST"><label for="openid_url">Adresse OpenID</label> <input type="text" name="openid_url" id="openid_url" size="30" style="background: url(http://www.openid.net/login-bg.gif) no-repeat; background-color: #fff; background-position: 0 50%; color: #000; padding-left: 18px;" value="" /><input type="submit" value="Connexion" /></form><p>Gruntnetwork supporte le standard <a href="http://openid.net/" class="external text" title="http://openid.net/" rel="nofollow">OpenID</a> pour une seule signature entre des sites Internet. +OpenID vous permet de vous connecter sur plusieurs sites différents sans à avoir à utiliser un mot de passe différent pour chacun d’entre eux. +(Voyez <a href="http://fr.wikipedia.org/wiki/OpenID" class="external text" title="http://fr.wikipedia.org/wiki/OpenID" rel="nofollow">l'article de Wikipédia</a> pour plus d'informations.) +</p><p>Si vous avez déjà un compte sur Gruntnetwork, vous pouvez vous <a href="/Sp%C3%A9cial:Connexion" title="Spécial:Connexion">connecter</a> avec votre nom d'utilisateur et son mot de pas comme d’habitude. Pour utiliser OpenID, à l’avenir, vous pouvez <a href="/Sp%C3%A9cial:OpenIDConvert" title="Spécial:OpenIDConvert">convertir votre compte en OpenID</a> après que vous vous soyez connecté normallement. +</p><p>Il existe plusieurs <a href="http://openid.net/get/" class="external text" title="http://openid.net/get/" rel="nofollow">fournisseur d'OpenID</a>, et vous pouvez déjà obtenir un compte OpenID activé sur un autre service. +</p><div class="printfooter"> +Récupérée de « <a href="https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin">https://wiki.gruntnetwork.com/Sp%C3%A9cial:OpenIDLogin</a> »</div> + <!-- end content --> + <div class="visualClear"></div> + </div> + </div> + </div> + <div id="column-one"> + <div id="p-cactions" class="portlet"> + <h5>Affichages</h5> + <div class="pBody"> + <ul> + + <li id="ca-nstab-special" class="selected"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Pr%C3%A9requis" title="Ceci est une page spéciale, vous ne pouvez pas la modifier.">Page spéciale</a></li> </ul> + </div> + </div> + <div class="portlet" id="p-personal"> + <h5>Outils personnels</h5> + <div class="pBody"> + <ul> + <li id="pt-anonuserpage"><a href="/Utilisateur:90.192.224.164" title="La page utilisateur de l’IP avec laquelle vous contribuez [.]" accesskey="." class="new">90.192.224.164</a></li> + <li id="pt-anontalk"><a href="/Discussion_utilisateur:90.192.224.164" title="La page de discussion pour les contributions depuis cette adresse IP [n]" accesskey="n" class="new">Discussion avec cette adresse IP</a></li> + <li id="pt-anonlogin"><a href="/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Sp%C3%A9cial:OpenIDLogin" title="Vous êtes encouragé(e) à vous identifier ; ce n’est cependant pas obligatoire. [o]" accesskey="o">Connexion</a></li> + <li id="pt-openidlogin" class="active"><a href="/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Sp%C3%A9cial:OpenIDLogin">Se connecter avec OpenID</a></li> + </ul> + </div> + </div> + <div class="portlet" id="p-logo"> + <a style="background-image: url(/skins/common/images/wiki.png);" href="/Accueil" title="Page principale [z]" accesskey="z"></a> + </div> + <script type="text/javascript"> if (window.isMSIE55) fixalpha(); </script> + <div class='generated-sidebar portlet' id='p-navigation'> + <h5>Navigation</h5> + <div class='pBody'> + <ul> + <li id="n-mainpage-description"><a href="/Accueil">Accueil</a></li> + <li id="n-portal"><a href="/Gruntnetwork:Accueil" title="À propos du projet">Communauté</a></li> + <li id="n-currentevents"><a href="/Gruntnetwork:Actualit%C3%A9s" title="Trouver les informations de fond sur l’actualité du moment">Actualités</a></li> + <li id="n-recentchanges"><a href="/Sp%C3%A9cial:Modifications_r%C3%A9centes" title="Liste des modifications récentes sur le wiki [r]" accesskey="r">Modifications récentes</a></li> + <li id="n-randompage"><a href="/Sp%C3%A9cial:Page_au_hasard" title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li> + <li id="n-help"><a href="/Aide:Accueil" title="Aide">Aide</a></li> + </ul> + </div> + </div> + <div id="p-search" class="portlet"> + <h5><label for="searchInput">Rechercher</label></h5> + <div id="searchBody" class="pBody"> + <form action="/index.php5" id="searchform"><div> + <input type='hidden' name="title" value="Spécial:Search"/> + <input id="searchInput" name="search" type="text" title="Rechercher dans Gruntnetwork [f]" accesskey="f" value="" /> + <input type='submit' name="go" class="searchButton" id="searchGoButton" value="Lire" title="Aller vers une page portant exactement ce nom si elle existe." /> + <input type='submit' name="fulltext" class="searchButton" id="mw-searchButton" value="Rechercher" title="Rechercher les pages comportant ce texte." /> + </div></form> + </div> + </div> + <div class="portlet" id="p-tb"> + <h5>Boîte à outils</h5> + <div class="pBody"> + <ul> +<li id="t-specialpages"><a href="/Sp%C3%A9cial:Pages_sp%C3%A9ciales" title="Liste de toutes les pages spéciales [q]" accesskey="q">Pages spéciales</a></li> + </ul> + </div> + </div> + </div><!-- end of the left (by default at least) column --> + <div class="visualClear"></div> + <div id="footer"> + <div id="f-poweredbyico"><a href="http://www.mediawiki.org/"><img src="/skins/common/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" /></a></div> + <div id="f-copyrightico"><a href="http://www.gnu.org/copyleft/fdl.html"><img src="/skins/common/images/gnu-fdl.png" alt='GNU Free Documentation License 1.2' /></a></div> + <ul id="f-list"> + <li id="privacy"><a href="/Gruntnetwork:Confidentialit%C3%A9" title="Gruntnetwork:Confidentialité">Politique de confidentialité</a></li> + <li id="about"><a href="/Gruntnetwork:%C3%80_propos" title="Gruntnetwork:À propos">À propos de Gruntnetwork</a></li> + <li id="disclaimer"><a href="/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux" title="Gruntnetwork:Avertissements généraux">Avertissements</a></li> + </ul> + </div> +</div> + + <script type="text/javascript">if (window.runOnloadHook) runOnloadHook();</script> +<!-- Served in 0.307 secs. --></body></html> diff --git a/wget/https/wiki.gruntnetwork.com/opensearch_desc.php5 b/wget/https/wiki.gruntnetwork.com/opensearch_desc.php5 @@ -0,0 +1 @@ +<?xml version="1.0"?><OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/" xmlns:moz="http://www.mozilla.org/2006/browser/search/"><ShortName>Gruntnetwork (fr)</ShortName><Description>Gruntnetwork (fr)</Description><Image height="16" width="16" type="image/x-icon">https://wiki.gruntnetwork.com/favicon.ico</Image><Url type="text/html" method="get" template="https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Recherche&search={searchTerms}" /><Url type="application/x-suggestions+json" method="get" template="https://wiki.gruntnetwork.com/api.php?action=opensearch&search={searchTerms}&namespace=0" /><moz:SearchForm>https://wiki.gruntnetwork.com/Sp%C3%A9cial:Recherche</moz:SearchForm></OpenSearchDescription> +\ No newline at end of file diff --git a/wget/https/wiki.gruntnetwork.com/skins/common/ajax.js?207 b/wget/https/wiki.gruntnetwork.com/skins/common/ajax.js?207 @@ -0,0 +1,167 @@ +// remote scripting library +// (c) copyright 2005 modernmethod, inc +var sajax_debug_mode = false; +var sajax_request_type = "GET"; + +/** +* if sajax_debug_mode is true, this function outputs given the message into +* the element with id = sajax_debug; if no such element exists in the document, +* it is injected. +*/ +function sajax_debug(text) { + if (!sajax_debug_mode) return false; + + var e= document.getElementById('sajax_debug'); + + if (!e) { + e= document.createElement("p"); + e.className= 'sajax_debug'; + e.id= 'sajax_debug'; + + var b= document.getElementsByTagName("body")[0]; + + if (b.firstChild) b.insertBefore(e, b.firstChild); + else b.appendChild(e); + } + + var m= document.createElement("div"); + m.appendChild( document.createTextNode( text ) ); + + e.appendChild( m ); + + return true; +} + +/** +* compatibility wrapper for creating a new XMLHttpRequest object. +*/ +function sajax_init_object() { + sajax_debug("sajax_init_object() called..") + var A; + try { + // Try the new style before ActiveX so we don't + // unnecessarily trigger warnings in IE 7 when + // set to prompt about ActiveX usage + A = new XMLHttpRequest(); + } catch (e) { + try { + A=new ActiveXObject("Msxml2.XMLHTTP"); + } catch (e) { + try { + A=new ActiveXObject("Microsoft.XMLHTTP"); + } catch (oc) { + A=null; + } + } + } + if (!A) + sajax_debug("Could not create connection object."); + + return A; +} + +/** +* Perform an ajax call to mediawiki. Calls are handeled by AjaxDispatcher.php +* func_name - the name of the function to call. Must be registered in $wgAjaxExportList +* args - an array of arguments to that function +* target - the target that will handle the result of the call. If this is a function, +* if will be called with the XMLHttpRequest as a parameter; if it's an input +* element, its value will be set to the resultText; if it's another type of +* element, its innerHTML will be set to the resultText. +* +* Example: +* sajax_do_call('doFoo', [1, 2, 3], document.getElementById("showFoo")); +* +* This will call the doFoo function via MediaWiki's AjaxDispatcher, with +* (1, 2, 3) as the parameter list, and will show the result in the element +* with id = showFoo +*/ +function sajax_do_call(func_name, args, target) { + var i, x, n; + var uri; + var post_data; + uri = wgServer + + ((wgScript == null) ? (wgScriptPath + "/index.php") : wgScript) + + "?action=ajax"; + if (sajax_request_type == "GET") { + if (uri.indexOf("?") == -1) + uri = uri + "?rs=" + encodeURIComponent(func_name); + else + uri = uri + "&rs=" + encodeURIComponent(func_name); + for (i = 0; i < args.length; i++) + uri = uri + "&rsargs[]=" + encodeURIComponent(args[i]); + //uri = uri + "&rsrnd=" + new Date().getTime(); + post_data = null; + } else { + post_data = "rs=" + encodeURIComponent(func_name); + for (i = 0; i < args.length; i++) + post_data = post_data + "&rsargs[]=" + encodeURIComponent(args[i]); + } + x = sajax_init_object(); + if (!x) { + alert("AJAX not supported"); + return false; + } + + try { + x.open(sajax_request_type, uri, true); + } catch (e) { + if (window.location.hostname == "localhost") { + alert("Your browser blocks XMLHttpRequest to 'localhost', try using a real hostname for development/testing."); + } + throw e; + } + if (sajax_request_type == "POST") { + x.setRequestHeader("Method", "POST " + uri + " HTTP/1.1"); + x.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); + } + x.setRequestHeader("Pragma", "cache=yes"); + x.setRequestHeader("Cache-Control", "no-transform"); + x.onreadystatechange = function() { + if (x.readyState != 4) + return; + + sajax_debug("received (" + x.status + " " + x.statusText + ") " + x.responseText); + + //if (x.status != 200) + // alert("Error: " + x.status + " " + x.statusText + ": " + x.responseText); + //else + + if ( typeof( target ) == 'function' ) { + target( x ); + } + else if ( typeof( target ) == 'object' ) { + if ( target.tagName == 'INPUT' ) { + if (x.status == 200) target.value= x.responseText; + //else alert("Error: " + x.status + " " + x.statusText + " (" + x.responseText + ")"); + } + else { + if (x.status == 200) target.innerHTML = x.responseText; + else target.innerHTML= "<div class='error'>Error: " + x.status + " " + x.statusText + " (" + x.responseText + ")</div>"; + } + } + else { + alert("bad target for sajax_do_call: not a function or object: " + target); + } + + return; + } + + sajax_debug(func_name + " uri = " + uri + " / post = " + post_data); + x.send(post_data); + sajax_debug(func_name + " waiting.."); + delete x; + + return true; +} + +/** + * @return boolean whether the browser supports XMLHttpRequest + */ +function wfSupportsAjax() { + var request = sajax_init_object(); + var supportsAjax = request ? true : false; + delete request; + return supportsAjax; +} + diff --git a/wget/https/wiki.gruntnetwork.com/skins/common/commonPrint.css?207.css b/wget/https/wiki.gruntnetwork.com/skins/common/commonPrint.css?207.css @@ -0,0 +1,267 @@ +/* +** MediaWiki Print style sheet for CSS2-capable browsers. +** Copyright Gabriel Wicke, http://www.aulinx.de/ +** +** Derived from the plone (http://plone.org/) styles +** Copyright Alexander Limi +*/ + +/* Thanks to A List Apart (http://alistapart.com/) for useful extras */ +a.stub, +a.new{ color:#ba0000; text-decoration:none; } + +#toc { + /*border:1px solid #2f6fab;*/ + border:1px solid #aaaaaa; + background-color:#f9f9f9; + padding:5px; +} +.tocindent { + margin-left: 2em; +} +.tocline { + margin-bottom: 0px; +} + +/* images */ +div.floatright { + float: right; + clear: right; + margin: 0; + position:relative; + border: 0.5em solid White; + border-width: 0.5em 0 0.8em 1.4em; +} +div.floatright p { font-style: italic;} +div.floatleft { + float: left; + margin: 0.3em 0.5em 0.5em 0; + position:relative; + border: 0.5em solid White; + border-width: 0.5em 1.4em 0.8em 0; +} +div.floatleft p { font-style: italic; } +/* thumbnails */ +div.thumb { + margin-bottom: 0.5em; + border-style: solid; border-color: White; + width: auto; + overflow: hidden; +} +div.thumb div { + border:1px solid #cccccc; + padding: 3px !important; + background-color:#f9f9f9; + font-size: 94%; + text-align: center; +} +div.thumb div a img { + border:1px solid #cccccc; +} +div.thumb div div.thumbcaption { + border: none; + padding: 0.3em 0 0.1em 0; +} +div.magnify { display: none; } +div.tright { + float: right; + clear: right; + border-width: 0.5em 0 0.8em 1.4em; +} +div.tleft { + float: left; + margin-right:0.5em; + border-width: 0.5em 1.4em 0.8em 0; +} +img.thumbborder { + border: 1px solid #dddddd; +} + +/* table standards */ +table.rimage { + float:right; + width:1pt; + position:relative; + margin-left:1em; + margin-bottom:1em; + text-align:center; +} + +body { + background: White; + /*font-size: 11pt !important;*/ + color: Black; + margin: 0; + padding: 0; +} + +.noprint, +div#jump-to-nav, +div.top, +div#column-one, +#colophon, +.editsection, +.toctoggle, +.tochidden, +div#f-poweredbyico, +div#f-copyrightico, +li#viewcount, +li#about, +li#disclaimer, +li#privacy { + /* Hides all the elements irrelevant for printing */ + display: none; +} + +ul { + list-style-type: square; +} + +#content { + background: none; + border: none ! important; + padding: 0 ! important; + margin: 0 ! important; +} +#footer { + background : white; + color : black; + border-top: 1px solid black; +} + +h1, h2, h3, h4, h5, h6 { + font-weight: bold; +} + +p, .documentDescription { + margin: 1em 0 ! important; + line-height: 1.2em; +} + +.tocindent p { + margin: 0 0 0 0 ! important; +} + +pre { + border: 1pt dashed black; + white-space: pre; + font-size: 8pt; + overflow: auto; + padding: 1em 0; + background : white; + color : black; +} + +table.listing, +table.listing td { + border: 1pt solid black; + border-collapse: collapse; +} + +a { + color: Black !important; + background: none !important; + padding: 0 !important; +} + +a:link, a:visited { + color: #520; + background: transparent; + text-decoration: underline; +} + +#content a.external.text:after, #content a.external.autonumber:after { + /* Expand URLs for printing */ + content: " (" attr(href) ") "; +} + +#globalWrapper { + width: 100% !important; + min-width: 0 !important; +} + +#content { + background : white; + color : black; +} + +#column-content { + margin: 0 !important; +} + +#column-content #content { + padding: 1em; + margin: 0 !important; +} +/* MSIE/Win doesn't understand 'inherit' */ +a, a.external, a.new, a.stub { + color: black ! important; + text-decoration: none ! important; +} + +/* Continue ... */ +a, a.external, a.new, a.stub { + color: inherit ! important; + text-decoration: inherit ! important; +} + +img { border: none; } +img.tex { vertical-align: middle; } +span.texhtml { font-family: serif; } + +#siteNotice { display: none; } + +table.gallery { + border: 1px solid #cccccc; + margin: 2px; + padding: 2px; + background-color:#ffffff; +} + +table.gallery tr { + vertical-align:top; +} + +div.gallerybox { + border: 1px solid #cccccc; + margin: 2px; + background-color:#f9f9f9; + width: 150px; +} + +div.gallerybox div.thumb { + text-align: center; + border: 1px solid #cccccc; + margin: 2px; +} + +div.gallerytext { + font-size: 94%; + padding: 2px 4px; +} + +/* +** Diff rendering +*/ +table.diff { background:white; } +td.diff-otitle { background:#ffffff; } +td.diff-ntitle { background:#ffffff; } +td.diff-addedline { + background:#ccffcc; + font-size: smaller; + border: solid 2px black; +} +td.diff-deletedline { + background:#ffffaa; + font-size: smaller; + border: dotted 2px black; +} +td.diff-context { + background:#eeeeee; + font-size: smaller; +} +.diffchange { + color: silver; + font-weight: bold; + text-decoration: underline; +} diff --git a/wget/https/wiki.gruntnetwork.com/skins/common/images/feed-icon.png b/wget/https/wiki.gruntnetwork.com/skins/common/images/feed-icon.png Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/common/images/gnu-fdl.png b/wget/https/wiki.gruntnetwork.com/skins/common/images/gnu-fdl.png Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/common/images/poweredby_mediawiki_88x31.png b/wget/https/wiki.gruntnetwork.com/skins/common/images/poweredby_mediawiki_88x31.png Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/common/images/wiki.png b/wget/https/wiki.gruntnetwork.com/skins/common/images/wiki.png Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/common/shared.css?207.css b/wget/https/wiki.gruntnetwork.com/skins/common/shared.css?207.css @@ -0,0 +1,342 @@ +/** + * CSS in this file is used by *all* skins (that have any CSS at all). Be + * careful what you put in here, since what looks good in one skin may not in + * another, but don't ignore the poor non-Monobook users either. + */ +.mw-plusminus-null { color: #aaa; } + +.texvc { direction: ltr; unicode-bidi: embed; } +img.tex { vertical-align: middle; } +span.texhtml { font-family: serif; } + +/* add a bit of margin space between the preview and the toolbar */ +/* this replaces the ugly <p><br /></p> we used to insert into the page source */ +#wikiPreview.ontop { margin-bottom: 1em; } + +/* Stop floats from intruding into edit area in previews */ +#editform, #toolbar, #wpTextbox1 { clear: both; } + +div#mw-js-message { + margin: 1em 5%; + padding: 0.5em 2.5%; + border: solid 1px #ddd; + background-color: #fcfcfc; +} + +/* Edit section links */ +.editsection { + float: right; + margin-left: 5px; +} + +/** + * File histories + */ +table.filehistory { + border:1px solid #ccc; + border-collapse:collapse; +} + +table.filehistory th, +table.filehistory td { + padding: 0 0.2em 0 0.2em; + vertical-align:top; + border:1px solid #ccc; +} +table.filehistory th { + text-align: left; +} +table.filehistory td.mw-imagepage-filesize, +table.filehistory th.mw-imagepage-filesize { + white-space:nowrap; +} + +table.filehistory td.filehistory-selected { + font-weight: bold; +} + +/* + * rev_deleted stuff + */ +li span.deleted, span.history-deleted { + text-decoration: line-through; + color: #888; + font-style: italic; +} + +/** + * Forms + */ +body.ltr td.mw-label { text-align: right; } +body.ltr td.mw-input { text-align: left; } +body.ltr td.mw-submit { text-align: left; } +body.rtl td.mw-label { text-align: left; } +body.rtl td.mw-input { text-align: right; } +body.rtl td.mw-submit { text-align: right; } + +td.mw-label { vertical-align: top; } +td.mw-submit { white-space: nowrap; } + +/** + * Image captions + */ +body.rtl .thumbcaption { text-align:right; } +body.rtl .magnify { float:left; } + +body.ltr .thumbcaption { text-align:left; } +body.ltr .magnify { float:right; } + +/** + * Hidden categories + */ +.mw-hidden-cats-hidden { display: none; } +.catlinks-allhidden { display: none; } + +/* Convenience links to edit block, delete and protect reasons */ +p.mw-ipb-conveniencelinks, p.mw-protect-editreasons, +p.mw-filedelete-editreasons, p.mw-delete-editreasons { + font-size: 90%; + float: right; +} + +/* Search results */ +div.searchresult { + font-size: 95%; + width:38em; +} +.mw-search-results li { + padding-bottom: 1em; + list-style:none; +} +.mw-search-result-data { + color: green; + font-size: 97%; +} + +td#mw-search-menu { + padding-left:6em; + font-size:85%; +} + +div#mw-search-interwiki { + float: right; + width: 18em; + border-style: solid; + border-color: #AAAAAA; + border-width: 1px; + margin-top: 2ex; +} + +div#mw-search-interwiki li { + font-size: 95%; +} + +.mw-search-interwiki-more { + float: right; + font-size: 90%; +} + +span.searchalttitle { + font-size: 95%; +} + +div.searchdidyoumean { + font-size: 127%; + margin-bottom: 1ex; + margin-top: 1ex; + /* Note that this color won't affect the link, as desired. */ + color: #c00; +} + +div.searchdidyoumean em { + font-weight: bold; +} + +.searchmatch { + font-weight: bold; +} + +div.searchresults { + border:1px solid darkblue; + padding-top: 10px; + padding-bottom: 10px; + padding-left: 20px; + padding-right: 20px; +} + +/* + * UserRights stuff + */ +.mw-userrights-disabled { + color: #888; +} + +table.mw-userrights-groups * td,table.mw-userrights-groups * th { + padding-right: 1.5em; +} + +/* + * OpenSearch ajax suggestions + */ +.os-suggest { + overflow: auto; + overflow-x: hidden; + position: absolute; + top: 0px; + left: 0px; + width: 0px; + background-color: white; + background-color: Window; + border-style: solid; + border-color: #AAAAAA; + border-width: 1px; + z-index:99; + visibility:hidden; + font-size:95%; +} + +table.os-suggest-results { + font-size: 95%; + cursor: pointer; + border: 0; + border-collapse: collapse; + width: 100%; +} + +td.os-suggest-result, td.os-suggest-result-hl { + white-space: nowrap; + background-color: white; + background-color: Window; + color: black; + color: WindowText; + padding: 2px; +} +td.os-suggest-result-hl, +td.os-suggest-result-hl-webkit { + background-color: #4C59A6; + color: white; +} +td.os-suggest-result-hl { + /* System colors are misimplemented in Safari 3.0 and earlier, + making highlighted text illegible... */ + background-color: Highlight; + color: HighlightText; +} + +.os-suggest-toggle { + position: relative; + left: 1ex; + font-size: 65%; +} +.os-suggest-toggle-def { + position: absolute; + top: 0px; + left: 0px; + font-size: 65%; + visibility: hidden; +} + +/* Page history styling */ +/* the auto-generated edit comments */ +.autocomment { color: gray; } +#pagehistory .history-user { + margin-left: 0.4em; + margin-right: 0.2em; +} +#pagehistory span.minor { font-weight: bold; } +#pagehistory li { border: 1px solid white; } +#pagehistory li.selected { + background-color: #f9f9f9; + border: 1px dashed #aaa; +} + +/* + * Special:ListGroupRights styling + * Special:Statistics styling + * Special:Tags styling +*/ + +table.mw-listgrouprights-table, +table.mw-statistics-table, +table.mw-tags-table { + border: 1px solid #ccc; + border-collapse: collapse; +} + +table.mw-listgrouprights-table tr { + vertical-align: top; +} + +table.mw-listgrouprights-table td, table.mw-listgrouprights-table th, +table.mw-statistics-table td, table.mw-statistics-table th, +table.mw-tags-table td, table.mw-tags-table th { + padding: 0.5em 0.2em 0.5em 0.2em; + border: 1px solid #ccc; +} + +td.mw-statistics-numbers { + text-align: right; +} + +/* Special:SpecialPages styling */ +h4.mw-specialpagesgroup { + background-color: #dcdcdc; + padding: 2px; + margin: .3em 0em 0em 0em; +} +.mw-specialpagerestricted { + font-weight: bold; +} + +#shared-image-dup, #shared-image-conflict { + font-style: italic; +} + +/* Special:EmailUser styling */ +table.mw-emailuser-table { + width: 98%; +} +td#mw-emailuser-sender, td#mw-emailuser-recipient { + font-weight: bold; +} + +/* Special:Prefixindex styling */ +table#mw-prefixindex-list-table, +table#mw-prefixindex-nav-table { + width: 98%; + background-color: transparent; +} +td#mw-prefixindex-nav-form { + font-size: smaller; + margin-bottom: 1em; + text-align: right; + vertical-align: top; +} + +/* + * Recreating deleted page warning + * Reupload file warning + * Page protection warning + * incl. log entries for these warnings + */ +div.mw-warning-with-logexcerpt { + padding: 3px; + margin-bottom: 3px; + border: 2px solid #2F6FAB; +} +div.mw-warning-with-logexcerpt ul li { + font-size: 90%; +} + +/* (show/hide) revision deletion links */ +span.mw-revdelundel-link, +strong.mw-revdelundel-link { + font-family: monospace; + font-size: smaller; +} + +/* feed links */ +a.feedlink { + background: url("images/feed-icon.png") center left no-repeat; + padding-left: 16px; +} diff --git a/wget/https/wiki.gruntnetwork.com/skins/common/shared.css?207orig b/wget/https/wiki.gruntnetwork.com/skins/common/shared.css?207orig @@ -0,0 +1,342 @@ +/** + * CSS in this file is used by *all* skins (that have any CSS at all). Be + * careful what you put in here, since what looks good in one skin may not in + * another, but don't ignore the poor non-Monobook users either. + */ +.mw-plusminus-null { color: #aaa; } + +.texvc { direction: ltr; unicode-bidi: embed; } +img.tex { vertical-align: middle; } +span.texhtml { font-family: serif; } + +/* add a bit of margin space between the preview and the toolbar */ +/* this replaces the ugly <p><br /></p> we used to insert into the page source */ +#wikiPreview.ontop { margin-bottom: 1em; } + +/* Stop floats from intruding into edit area in previews */ +#editform, #toolbar, #wpTextbox1 { clear: both; } + +div#mw-js-message { + margin: 1em 5%; + padding: 0.5em 2.5%; + border: solid 1px #ddd; + background-color: #fcfcfc; +} + +/* Edit section links */ +.editsection { + float: right; + margin-left: 5px; +} + +/** + * File histories + */ +table.filehistory { + border:1px solid #ccc; + border-collapse:collapse; +} + +table.filehistory th, +table.filehistory td { + padding: 0 0.2em 0 0.2em; + vertical-align:top; + border:1px solid #ccc; +} +table.filehistory th { + text-align: left; +} +table.filehistory td.mw-imagepage-filesize, +table.filehistory th.mw-imagepage-filesize { + white-space:nowrap; +} + +table.filehistory td.filehistory-selected { + font-weight: bold; +} + +/* + * rev_deleted stuff + */ +li span.deleted, span.history-deleted { + text-decoration: line-through; + color: #888; + font-style: italic; +} + +/** + * Forms + */ +body.ltr td.mw-label { text-align: right; } +body.ltr td.mw-input { text-align: left; } +body.ltr td.mw-submit { text-align: left; } +body.rtl td.mw-label { text-align: left; } +body.rtl td.mw-input { text-align: right; } +body.rtl td.mw-submit { text-align: right; } + +td.mw-label { vertical-align: top; } +td.mw-submit { white-space: nowrap; } + +/** + * Image captions + */ +body.rtl .thumbcaption { text-align:right; } +body.rtl .magnify { float:left; } + +body.ltr .thumbcaption { text-align:left; } +body.ltr .magnify { float:right; } + +/** + * Hidden categories + */ +.mw-hidden-cats-hidden { display: none; } +.catlinks-allhidden { display: none; } + +/* Convenience links to edit block, delete and protect reasons */ +p.mw-ipb-conveniencelinks, p.mw-protect-editreasons, +p.mw-filedelete-editreasons, p.mw-delete-editreasons { + font-size: 90%; + float: right; +} + +/* Search results */ +div.searchresult { + font-size: 95%; + width:38em; +} +.mw-search-results li { + padding-bottom: 1em; + list-style:none; +} +.mw-search-result-data { + color: green; + font-size: 97%; +} + +td#mw-search-menu { + padding-left:6em; + font-size:85%; +} + +div#mw-search-interwiki { + float: right; + width: 18em; + border-style: solid; + border-color: #AAAAAA; + border-width: 1px; + margin-top: 2ex; +} + +div#mw-search-interwiki li { + font-size: 95%; +} + +.mw-search-interwiki-more { + float: right; + font-size: 90%; +} + +span.searchalttitle { + font-size: 95%; +} + +div.searchdidyoumean { + font-size: 127%; + margin-bottom: 1ex; + margin-top: 1ex; + /* Note that this color won't affect the link, as desired. */ + color: #c00; +} + +div.searchdidyoumean em { + font-weight: bold; +} + +.searchmatch { + font-weight: bold; +} + +div.searchresults { + border:1px solid darkblue; + padding-top: 10px; + padding-bottom: 10px; + padding-left: 20px; + padding-right: 20px; +} + +/* + * UserRights stuff + */ +.mw-userrights-disabled { + color: #888; +} + +table.mw-userrights-groups * td,table.mw-userrights-groups * th { + padding-right: 1.5em; +} + +/* + * OpenSearch ajax suggestions + */ +.os-suggest { + overflow: auto; + overflow-x: hidden; + position: absolute; + top: 0px; + left: 0px; + width: 0px; + background-color: white; + background-color: Window; + border-style: solid; + border-color: #AAAAAA; + border-width: 1px; + z-index:99; + visibility:hidden; + font-size:95%; +} + +table.os-suggest-results { + font-size: 95%; + cursor: pointer; + border: 0; + border-collapse: collapse; + width: 100%; +} + +td.os-suggest-result, td.os-suggest-result-hl { + white-space: nowrap; + background-color: white; + background-color: Window; + color: black; + color: WindowText; + padding: 2px; +} +td.os-suggest-result-hl, +td.os-suggest-result-hl-webkit { + background-color: #4C59A6; + color: white; +} +td.os-suggest-result-hl { + /* System colors are misimplemented in Safari 3.0 and earlier, + making highlighted text illegible... */ + background-color: Highlight; + color: HighlightText; +} + +.os-suggest-toggle { + position: relative; + left: 1ex; + font-size: 65%; +} +.os-suggest-toggle-def { + position: absolute; + top: 0px; + left: 0px; + font-size: 65%; + visibility: hidden; +} + +/* Page history styling */ +/* the auto-generated edit comments */ +.autocomment { color: gray; } +#pagehistory .history-user { + margin-left: 0.4em; + margin-right: 0.2em; +} +#pagehistory span.minor { font-weight: bold; } +#pagehistory li { border: 1px solid white; } +#pagehistory li.selected { + background-color: #f9f9f9; + border: 1px dashed #aaa; +} + +/* + * Special:ListGroupRights styling + * Special:Statistics styling + * Special:Tags styling +*/ + +table.mw-listgrouprights-table, +table.mw-statistics-table, +table.mw-tags-table { + border: 1px solid #ccc; + border-collapse: collapse; +} + +table.mw-listgrouprights-table tr { + vertical-align: top; +} + +table.mw-listgrouprights-table td, table.mw-listgrouprights-table th, +table.mw-statistics-table td, table.mw-statistics-table th, +table.mw-tags-table td, table.mw-tags-table th { + padding: 0.5em 0.2em 0.5em 0.2em; + border: 1px solid #ccc; +} + +td.mw-statistics-numbers { + text-align: right; +} + +/* Special:SpecialPages styling */ +h4.mw-specialpagesgroup { + background-color: #dcdcdc; + padding: 2px; + margin: .3em 0em 0em 0em; +} +.mw-specialpagerestricted { + font-weight: bold; +} + +#shared-image-dup, #shared-image-conflict { + font-style: italic; +} + +/* Special:EmailUser styling */ +table.mw-emailuser-table { + width: 98%; +} +td#mw-emailuser-sender, td#mw-emailuser-recipient { + font-weight: bold; +} + +/* Special:Prefixindex styling */ +table#mw-prefixindex-list-table, +table#mw-prefixindex-nav-table { + width: 98%; + background-color: transparent; +} +td#mw-prefixindex-nav-form { + font-size: smaller; + margin-bottom: 1em; + text-align: right; + vertical-align: top; +} + +/* + * Recreating deleted page warning + * Reupload file warning + * Page protection warning + * incl. log entries for these warnings + */ +div.mw-warning-with-logexcerpt { + padding: 3px; + margin-bottom: 3px; + border: 2px solid #2F6FAB; +} +div.mw-warning-with-logexcerpt ul li { + font-size: 90%; +} + +/* (show/hide) revision deletion links */ +span.mw-revdelundel-link, +strong.mw-revdelundel-link { + font-family: monospace; + font-size: smaller; +} + +/* feed links */ +a.feedlink { + background: url("images/feed-icon.png") center left no-repeat; + padding-left: 16px; +} diff --git a/wget/https/wiki.gruntnetwork.com/skins/common/wikibits.js?207 b/wget/https/wiki.gruntnetwork.com/skins/common/wikibits.js?207 @@ -0,0 +1,1000 @@ +// MediaWiki JavaScript support functions + +var clientPC = navigator.userAgent.toLowerCase(); // Get client info +var is_gecko = /gecko/.test( clientPC ) && + !/khtml|spoofer|netscape\/7\.0/.test(clientPC); +var webkit_match = clientPC.match(/applewebkit\/(\d+)/); +if (webkit_match) { + var is_safari = clientPC.indexOf('applewebkit') != -1 && + clientPC.indexOf('spoofer') == -1; + var is_safari_win = is_safari && clientPC.indexOf('windows') != -1; + var webkit_version = parseInt(webkit_match[1]); +} +var is_khtml = navigator.vendor == 'KDE' || + ( document.childNodes && !document.all && !navigator.taintEnabled ); +// For accesskeys; note that FF3+ is included here! +var is_ff2 = /firefox\/[2-9]|minefield\/3/.test( clientPC ); +var is_ff2_ = /firefox\/2/.test( clientPC ); +// These aren't used here, but some custom scripts rely on them +var is_ff2_win = is_ff2 && clientPC.indexOf('windows') != -1; +var is_ff2_x11 = is_ff2 && clientPC.indexOf('x11') != -1; +if (clientPC.indexOf('opera') != -1) { + var is_opera = true; + var is_opera_preseven = window.opera && !document.childNodes; + var is_opera_seven = window.opera && document.childNodes; + var is_opera_95 = /opera\/(9.[5-9]|[1-9][0-9])/.test( clientPC ); +} + +// Global external objects used by this script. +/*extern ta, stylepath, skin */ + +// add any onload functions in this hook (please don't hard-code any events in the xhtml source) +var doneOnloadHook; + +if (!window.onloadFuncts) { + var onloadFuncts = []; +} + +function addOnloadHook(hookFunct) { + // Allows add-on scripts to add onload functions + if(!doneOnloadHook) { + onloadFuncts[onloadFuncts.length] = hookFunct; + } else { + hookFunct(); // bug in MSIE script loading + } +} + +function hookEvent(hookName, hookFunct) { + addHandler(window, hookName, hookFunct); +} + +function importScript(page) { + var uri = wgScript + '?title=' + + encodeURIComponent(page.replace(/ /g,'_')).replace('%2F','/').replace('%3A',':') + + '&action=raw&ctype=text/javascript'; + return importScriptURI(uri); +} + +var loadedScripts = {}; // included-scripts tracker +function importScriptURI(url) { + if (loadedScripts[url]) { + return null; + } + loadedScripts[url] = true; + var s = document.createElement('script'); + s.setAttribute('src',url); + s.setAttribute('type','text/javascript'); + document.getElementsByTagName('head')[0].appendChild(s); + return s; +} + +function importStylesheet(page) { + return importStylesheetURI(wgScript + '?action=raw&ctype=text/css&title=' + encodeURIComponent(page.replace(/ /g,'_'))); +} + +function importStylesheetURI(url) { + return document.createStyleSheet ? document.createStyleSheet(url) : appendCSS('@import "' + url + '";'); +} + +function appendCSS(text) { + var s = document.createElement('style'); + s.type = 'text/css'; + s.rel = 'stylesheet'; + if (s.styleSheet) s.styleSheet.cssText = text //IE + else s.appendChild(document.createTextNode(text + '')) //Safari sometimes borks on null + document.getElementsByTagName('head')[0].appendChild(s); + return s; +} + +// special stylesheet links +if (typeof stylepath != 'undefined' && typeof skin != 'undefined') { + if (is_opera_preseven) { + importStylesheetURI(stylepath+'/'+skin+'/Opera6Fixes.css'); + } else if (is_opera_seven && !is_opera_95) { + importStylesheetURI(stylepath+'/'+skin+'/Opera7Fixes.css'); + } else if (is_opera_95) { + importStylesheetURI(stylepath+'/'+skin+'/Opera9Fixes.css'); + } else if (is_khtml) { + importStylesheetURI(stylepath+'/'+skin+'/KHTMLFixes.css'); + } else if (is_ff2_) { + importStylesheetURI(stylepath+'/'+skin+'/FF2Fixes.css'); + } +} + +if (wgBreakFrames) { + // Un-trap us from framesets + if (window.top != window) { + window.top.location = window.location; + } +} + +function showTocToggle() { + if (document.createTextNode) { + // Uses DOM calls to avoid document.write + XHTML issues + + var linkHolder = document.getElementById('toctitle'); + if (!linkHolder) { + return; + } + + var outerSpan = document.createElement('span'); + outerSpan.className = 'toctoggle'; + + var toggleLink = document.createElement('a'); + toggleLink.id = 'togglelink'; + toggleLink.className = 'internal'; + toggleLink.href = 'javascript:toggleToc()'; + toggleLink.appendChild(document.createTextNode(tocHideText)); + + outerSpan.appendChild(document.createTextNode('[')); + outerSpan.appendChild(toggleLink); + outerSpan.appendChild(document.createTextNode(']')); + + linkHolder.appendChild(document.createTextNode(' ')); + linkHolder.appendChild(outerSpan); + + var cookiePos = document.cookie.indexOf("hidetoc="); + if (cookiePos > -1 && document.cookie.charAt(cookiePos + 8) == 1) { + toggleToc(); + } + } +} + +function changeText(el, newText) { + // Safari work around + if (el.innerText) { + el.innerText = newText; + } else if (el.firstChild && el.firstChild.nodeValue) { + el.firstChild.nodeValue = newText; + } +} + +function toggleToc() { + var toc = document.getElementById('toc').getElementsByTagName('ul')[0]; + var toggleLink = document.getElementById('togglelink'); + + if (toc && toggleLink && toc.style.display == 'none') { + changeText(toggleLink, tocHideText); + toc.style.display = 'block'; + document.cookie = "hidetoc=0"; + } else { + changeText(toggleLink, tocShowText); + toc.style.display = 'none'; + document.cookie = "hidetoc=1"; + } +} + +var mwEditButtons = []; +var mwCustomEditButtons = []; // eg to add in MediaWiki:Common.js + +function escapeQuotes(text) { + var re = new RegExp("'","g"); + text = text.replace(re,"\\'"); + re = new RegExp("\\n","g"); + text = text.replace(re,"\\n"); + return escapeQuotesHTML(text); +} + +function escapeQuotesHTML(text) { + var re = new RegExp('&',"g"); + text = text.replace(re,"&"); + re = new RegExp('"',"g"); + text = text.replace(re,"""); + re = new RegExp('<',"g"); + text = text.replace(re,"<"); + re = new RegExp('>',"g"); + text = text.replace(re,">"); + return text; +} + + +/** + * Set the accesskey prefix based on browser detection. + */ +var tooltipAccessKeyPrefix = 'alt-'; +if (is_opera) { + tooltipAccessKeyPrefix = 'shift-esc-'; +} else if (!is_safari_win && is_safari && webkit_version > 526) { + tooltipAccessKeyPrefix = 'ctrl-alt-'; +} else if (!is_safari_win && (is_safari + || clientPC.indexOf('mac') != -1 + || clientPC.indexOf('konqueror') != -1 )) { + tooltipAccessKeyPrefix = 'ctrl-'; +} else if (is_ff2) { + tooltipAccessKeyPrefix = 'alt-shift-'; +} +var tooltipAccessKeyRegexp = /\[(ctrl-)?(alt-)?(shift-)?(esc-)?(.)\]$/; + +/** + * Add the appropriate prefix to the accesskey shown in the tooltip. + * If the nodeList parameter is given, only those nodes are updated; + * otherwise, all the nodes that will probably have accesskeys by + * default are updated. + * + * @param Array nodeList -- list of elements to update + */ +function updateTooltipAccessKeys( nodeList ) { + if ( !nodeList ) { + // skins without a "column-one" element don't seem to have links with accesskeys either + var columnOne = document.getElementById("column-one"); + if ( columnOne ) + updateTooltipAccessKeys( columnOne.getElementsByTagName("a") ); + // these are rare enough that no such optimization is needed + updateTooltipAccessKeys( document.getElementsByTagName("input") ); + updateTooltipAccessKeys( document.getElementsByTagName("label") ); + return; + } + + for ( var i = 0; i < nodeList.length; i++ ) { + var element = nodeList[i]; + var tip = element.getAttribute("title"); + if ( tip && tooltipAccessKeyRegexp.exec(tip) ) { + tip = tip.replace(tooltipAccessKeyRegexp, + "["+tooltipAccessKeyPrefix+"$5]"); + element.setAttribute("title", tip ); + } + } +} + +/** + * Add a link to one of the portlet menus on the page, including: + * + * p-cactions: Content actions (shown as tabs above the main content in Monobook) + * p-personal: Personal tools (shown at the top right of the page in Monobook) + * p-navigation: Navigation + * p-tb: Toolbox + * + * This function exists for the convenience of custom JS authors. All + * but the first three parameters are optional, though providing at + * least an id and a tooltip is recommended. + * + * By default the new link will be added to the end of the list. To + * add the link before a given existing item, pass the DOM node of + * that item (easily obtained with document.getElementById()) as the + * nextnode parameter; to add the link _after_ an existing item, pass + * the node's nextSibling instead. + * + * @param String portlet -- id of the target portlet ("p-cactions", "p-personal", "p-navigation" or "p-tb") + * @param String href -- link URL + * @param String text -- link text (will be automatically lowercased by CSS for p-cactions in Monobook) + * @param String id -- id of the new item, should be unique and preferably have the appropriate prefix ("ca-", "pt-", "n-" or "t-") + * @param String tooltip -- text to show when hovering over the link, without accesskey suffix + * @param String accesskey -- accesskey to activate this link (one character, try to avoid conflicts) + * @param Node nextnode -- the DOM node before which the new item should be added, should be another item in the same list + * + * @return Node -- the DOM node of the new item (an LI element) or null + */ +function addPortletLink(portlet, href, text, id, tooltip, accesskey, nextnode) { + var node = document.getElementById(portlet); + if ( !node ) return null; + node = node.getElementsByTagName( "ul" )[0]; + if ( !node ) return null; + + var link = document.createElement( "a" ); + link.appendChild( document.createTextNode( text ) ); + link.href = href; + + var item = document.createElement( "li" ); + item.appendChild( link ); + if ( id ) item.id = id; + + if ( accesskey ) { + link.setAttribute( "accesskey", accesskey ); + tooltip += " ["+accesskey+"]"; + } + if ( tooltip ) { + link.setAttribute( "title", tooltip ); + } + if ( accesskey && tooltip ) { + updateTooltipAccessKeys( new Array( link ) ); + } + + if ( nextnode && nextnode.parentNode == node ) + node.insertBefore( item, nextnode ); + else + node.appendChild( item ); // IE compatibility (?) + + return item; +} + +function getInnerText(el) { + if (typeof el == "string") return el; + if (typeof el == "undefined") { return el }; + if (el.textContent) return el.textContent; // not needed but it is faster + if (el.innerText) return el.innerText; // IE doesn't have textContent + var str = ""; + + var cs = el.childNodes; + var l = cs.length; + for (var i = 0; i < l; i++) { + switch (cs[i].nodeType) { + case 1: //ELEMENT_NODE + str += ts_getInnerText(cs[i]); + break; + case 3: //TEXT_NODE + str += cs[i].nodeValue; + break; + } + } + return str; +} + + +/** + * Set up accesskeys/tooltips from the deprecated ta array. If doId + * is specified, only set up for that id. Note that this function is + * deprecated and will not be supported indefinitely -- use + * updateTooltipAccessKey() instead. + * + * @param mixed doId string or null + */ +function akeytt( doId ) { + // A lot of user scripts (and some of the code below) break if + // ta isn't defined, so we make sure it is. Explictly using + // window.ta avoids a "ta is not defined" error. + if (!window.ta) window.ta = new Array; + + // Make a local, possibly restricted, copy to avoid clobbering + // the original. + var ta; + if ( doId ) { + ta = [doId]; + } else { + ta = window.ta; + } + + // Now deal with evil deprecated ta + var watchCheckboxExists = document.getElementById( 'wpWatchthis' ) ? true : false; + for (var id in ta) { + var n = document.getElementById(id); + if (n) { + var a = null; + var ak = ''; + // Are we putting accesskey in it + if (ta[id][0].length > 0) { + // Is this object a object? If not assume it's the next child. + + if (n.nodeName.toLowerCase() == "a") { + a = n; + } else { + a = n.childNodes[0]; + } + // Don't add an accesskey for the watch tab if the watch + // checkbox is also available. + if (a && ((id != 'ca-watch' && id != 'ca-unwatch') || !watchCheckboxExists)) { + a.accessKey = ta[id][0]; + ak = ' ['+tooltipAccessKeyPrefix+ta[id][0]+']'; + } + } else { + // We don't care what type the object is when assigning tooltip + a = n; + ak = ''; + } + + if (a) { + a.title = ta[id][1]+ak; + } + } + } +} + +var checkboxes; +var lastCheckbox; + +function setupCheckboxShiftClick() { + checkboxes = []; + lastCheckbox = null; + var inputs = document.getElementsByTagName('input'); + addCheckboxClickHandlers(inputs); +} + +function addCheckboxClickHandlers(inputs, start) { + if ( !start) start = 0; + + var finish = start + 250; + if ( finish > inputs.length ) + finish = inputs.length; + + for ( var i = start; i < finish; i++ ) { + var cb = inputs[i]; + if ( !cb.type || cb.type.toLowerCase() != 'checkbox' ) + continue; + var end = checkboxes.length; + checkboxes[end] = cb; + cb.index = end; + cb.onclick = checkboxClickHandler; + } + + if ( finish < inputs.length ) { + setTimeout( function () { + addCheckboxClickHandlers(inputs, finish); + }, 200 ); + } +} + +function checkboxClickHandler(e) { + if (typeof e == 'undefined') { + e = window.event; + } + if ( !e.shiftKey || lastCheckbox === null ) { + lastCheckbox = this.index; + return true; + } + var endState = this.checked; + var start, finish; + if ( this.index < lastCheckbox ) { + start = this.index + 1; + finish = lastCheckbox; + } else { + start = lastCheckbox; + finish = this.index - 1; + } + for (var i = start; i <= finish; ++i ) { + checkboxes[i].checked = endState; + } + lastCheckbox = this.index; + return true; +} + +function toggle_element_activation(ida,idb) { + if (!document.getElementById) { + return; + } + document.getElementById(ida).disabled=true; + document.getElementById(idb).disabled=false; +} + +function toggle_element_check(ida,idb) { + if (!document.getElementById) { + return; + } + document.getElementById(ida).checked=true; + document.getElementById(idb).checked=false; +} + +/* + Written by Jonathan Snook, http://www.snook.ca/jonathan + Add-ons by Robert Nyman, http://www.robertnyman.com + Author says "The credit comment is all it takes, no license. Go crazy with it!:-)" + From http://www.robertnyman.com/2005/11/07/the-ultimate-getelementsbyclassname/ +*/ +function getElementsByClassName(oElm, strTagName, oClassNames){ + var arrReturnElements = new Array(); + if ( typeof( oElm.getElementsByClassName ) == "function" ) { + /* Use a native implementation where possible FF3, Saf3.2, Opera 9.5 */ + var arrNativeReturn = oElm.getElementsByClassName( oClassNames ); + if ( strTagName == "*" ) + return arrNativeReturn; + for ( var h=0; h < arrNativeReturn.length; h++ ) { + if( arrNativeReturn[h].tagName.toLowerCase() == strTagName.toLowerCase() ) + arrReturnElements[arrReturnElements.length] = arrNativeReturn[h]; + } + return arrReturnElements; + } + var arrElements = (strTagName == "*" && oElm.all)? oElm.all : oElm.getElementsByTagName(strTagName); + var arrRegExpClassNames = new Array(); + if(typeof oClassNames == "object"){ + for(var i=0; i<oClassNames.length; i++){ + arrRegExpClassNames[arrRegExpClassNames.length] = + new RegExp("(^|\\s)" + oClassNames[i].replace(/\-/g, "\\-") + "(\\s|$)"); + } + } + else{ + arrRegExpClassNames[arrRegExpClassNames.length] = + new RegExp("(^|\\s)" + oClassNames.replace(/\-/g, "\\-") + "(\\s|$)"); + } + var oElement; + var bMatchesAll; + for(var j=0; j<arrElements.length; j++){ + oElement = arrElements[j]; + bMatchesAll = true; + for(var k=0; k<arrRegExpClassNames.length; k++){ + if(!arrRegExpClassNames[k].test(oElement.className)){ + bMatchesAll = false; + break; + } + } + if(bMatchesAll){ + arrReturnElements[arrReturnElements.length] = oElement; + } + } + return (arrReturnElements) +} + +function redirectToFragment(fragment) { + var match = navigator.userAgent.match(/AppleWebKit\/(\d+)/); + if (match) { + var webKitVersion = parseInt(match[1]); + if (webKitVersion < 420) { + // Released Safari w/ WebKit 418.9.1 messes up horribly + // Nightlies of 420+ are ok + return; + } + } + if (is_gecko) { + // Mozilla needs to wait until after load, otherwise the window doesn't scroll + addOnloadHook(function () { + if (window.location.hash == "") + window.location.hash = fragment; + }); + } else { + if (window.location.hash == "") + window.location.hash = fragment; + } +} + +/* + * Table sorting script based on one (c) 1997-2006 Stuart Langridge and Joost + * de Valk: + * http://www.joostdevalk.nl/code/sortable-table/ + * http://www.kryogenix.org/code/browser/sorttable/ + * + * @todo don't break on colspans/rowspans (bug 8028) + * @todo language-specific digit grouping/decimals (bug 8063) + * @todo support all accepted date formats (bug 8226) + */ + +var ts_image_path = stylepath+"/common/images/"; +var ts_image_up = "sort_up.gif"; +var ts_image_down = "sort_down.gif"; +var ts_image_none = "sort_none.gif"; +var ts_europeandate = wgContentLanguage != "en"; // The non-American-inclined can change to "true" +var ts_alternate_row_colors = false; +var ts_number_transform_table = null; +var ts_number_regex = null; + +function sortables_init() { + var idnum = 0; + // Find all tables with class sortable and make them sortable + var tables = getElementsByClassName(document, "table", "sortable"); + for (var ti = 0; ti < tables.length ; ti++) { + if (!tables[ti].id) { + tables[ti].setAttribute('id','sortable_table_id_'+idnum); + ++idnum; + } + ts_makeSortable(tables[ti]); + } +} + +function ts_makeSortable(table) { + var firstRow; + if (table.rows && table.rows.length > 0) { + if (table.tHead && table.tHead.rows.length > 0) { + firstRow = table.tHead.rows[table.tHead.rows.length-1]; + } else { + firstRow = table.rows[0]; + } + } + if (!firstRow) return; + + // We have a first row: assume it's the header, and make its contents clickable links + for (var i = 0; i < firstRow.cells.length; i++) { + var cell = firstRow.cells[i]; + if ((" "+cell.className+" ").indexOf(" unsortable ") == -1) { + cell.innerHTML += ' ' + + '<a href="#" class="sortheader" ' + + 'onclick="ts_resortTable(this);return false;">' + + '<span class="sortarrow">' + + '<img src="' + + ts_image_path + + ts_image_none + + '" alt="↓"/></span></a>'; + } + } + if (ts_alternate_row_colors) { + ts_alternate(table); + } +} + +function ts_getInnerText(el) { + return getInnerText( el ); +} + +function ts_resortTable(lnk) { + // get the span + var span = lnk.getElementsByTagName('span')[0]; + + var td = lnk.parentNode; + var tr = td.parentNode; + var column = td.cellIndex; + + var table = tr.parentNode; + while (table && !(table.tagName && table.tagName.toLowerCase() == 'table')) + table = table.parentNode; + if (!table) return; + + if (table.rows.length <= 1) return; + + // Generate the number transform table if it's not done already + if (ts_number_transform_table == null) { + ts_initTransformTable(); + } + + // Work out a type for the column + // Skip the first row if that's where the headings are + var rowStart = (table.tHead && table.tHead.rows.length > 0 ? 0 : 1); + + var itm = ""; + for (var i = rowStart; i < table.rows.length; i++) { + if (table.rows[i].cells.length > column) { + itm = ts_getInnerText(table.rows[i].cells[column]); + itm = itm.replace(/^[\s\xa0]+/, "").replace(/[\s\xa0]+$/, ""); + if (itm != "") break; + } + } + + // TODO: bug 8226, localised date formats + var sortfn = ts_sort_generic; + var preprocessor = ts_toLowerCase; + if (/^\d\d[\/. -][a-zA-Z]{3}[\/. -]\d\d\d\d$/.test(itm)) { + preprocessor = ts_dateToSortKey; + } else if (/^\d\d[\/.-]\d\d[\/.-]\d\d\d\d$/.test(itm)) { + preprocessor = ts_dateToSortKey; + } else if (/^\d\d[\/.-]\d\d[\/.-]\d\d$/.test(itm)) { + preprocessor = ts_dateToSortKey; + // pound dollar euro yen currency cents + } else if (/(^[\u00a3$\u20ac\u00a4\u00a5]|\u00a2$)/.test(itm)) { + preprocessor = ts_currencyToSortKey; + } else if (ts_number_regex.test(itm)) { + preprocessor = ts_parseFloat; + } + + var reverse = (span.getAttribute("sortdir") == 'down'); + + var newRows = new Array(); + var staticRows = new Array(); + for (var j = rowStart; j < table.rows.length; j++) { + var row = table.rows[j]; + if((" "+row.className+" ").indexOf(" unsortable ") < 0) { + var keyText = ts_getInnerText(row.cells[column]); + var oldIndex = (reverse ? -j : j); + var preprocessed = preprocessor( keyText ); + + newRows[newRows.length] = new Array(row, preprocessed, oldIndex); + } else staticRows[staticRows.length] = new Array(row, false, j-rowStart); + } + + newRows.sort(sortfn); + + var arrowHTML; + if (reverse) { + arrowHTML = '<img src="'+ ts_image_path + ts_image_down + '" alt="↓"/>'; + newRows.reverse(); + span.setAttribute('sortdir','up'); + } else { + arrowHTML = '<img src="'+ ts_image_path + ts_image_up + '" alt="↑"/>'; + span.setAttribute('sortdir','down'); + } + + for (var i = 0; i < staticRows.length; i++) { + var row = staticRows[i]; + newRows.splice(row[2], 0, row); + } + + // We appendChild rows that already exist to the tbody, so it moves them rather than creating new ones + // don't do sortbottom rows + for (var i = 0; i < newRows.length; i++) { + if ((" "+newRows[i][0].className+" ").indexOf(" sortbottom ") == -1) + table.tBodies[0].appendChild(newRows[i][0]); + } + // do sortbottom rows only + for (var i = 0; i < newRows.length; i++) { + if ((" "+newRows[i][0].className+" ").indexOf(" sortbottom ") != -1) + table.tBodies[0].appendChild(newRows[i][0]); + } + + // Delete any other arrows there may be showing + var spans = getElementsByClassName(tr, "span", "sortarrow"); + for (var i = 0; i < spans.length; i++) { + spans[i].innerHTML = '<img src="'+ ts_image_path + ts_image_none + '" alt="↓"/>'; + } + span.innerHTML = arrowHTML; + + if (ts_alternate_row_colors) { + ts_alternate(table); + } +} + +function ts_initTransformTable() { + if ( typeof wgSeparatorTransformTable == "undefined" + || ( wgSeparatorTransformTable[0] == '' && wgDigitTransformTable[2] == '' ) ) + { + digitClass = "[0-9,.]"; + ts_number_transform_table = false; + } else { + ts_number_transform_table = {}; + // Unpack the transform table + // Separators + ascii = wgSeparatorTransformTable[0].split("\t"); + localised = wgSeparatorTransformTable[1].split("\t"); + for ( var i = 0; i < ascii.length; i++ ) { + ts_number_transform_table[localised[i]] = ascii[i]; + } + // Digits + ascii = wgDigitTransformTable[0].split("\t"); + localised = wgDigitTransformTable[1].split("\t"); + for ( var i = 0; i < ascii.length; i++ ) { + ts_number_transform_table[localised[i]] = ascii[i]; + } + + // Construct regex for number identification + digits = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', ',', '\\.']; + maxDigitLength = 1; + for ( var digit in ts_number_transform_table ) { + // Escape regex metacharacters + digits.push( + digit.replace( /[\\\\$\*\+\?\.\(\)\|\{\}\[\]\-]/, + function( s ) { return '\\' + s; } ) + ); + if (digit.length > maxDigitLength) { + maxDigitLength = digit.length; + } + } + if ( maxDigitLength > 1 ) { + digitClass = '[' + digits.join( '', digits ) + ']'; + } else { + digitClass = '(' + digits.join( '|', digits ) + ')'; + } + } + + // We allow a trailing percent sign, which we just strip. This works fine + // if percents and regular numbers aren't being mixed. + ts_number_regex = new RegExp( + "^(" + + "[+-]?[0-9][0-9,]*(\\.[0-9,]*)?(E[+-]?[0-9][0-9,]*)?" + // Fortran-style scientific + "|" + + "[+-]?" + digitClass + "+%?" + // Generic localised + ")$", "i" + ); +} + +function ts_toLowerCase( s ) { + return s.toLowerCase(); +} + +function ts_dateToSortKey(date) { + // y2k notes: two digit years less than 50 are treated as 20XX, greater than 50 are treated as 19XX + if (date.length == 11) { + switch (date.substr(3,3).toLowerCase()) { + case "jan": var month = "01"; break; + case "feb": var month = "02"; break; + case "mar": var month = "03"; break; + case "apr": var month = "04"; break; + case "may": var month = "05"; break; + case "jun": var month = "06"; break; + case "jul": var month = "07"; break; + case "aug": var month = "08"; break; + case "sep": var month = "09"; break; + case "oct": var month = "10"; break; + case "nov": var month = "11"; break; + case "dec": var month = "12"; break; + // default: var month = "00"; + } + return date.substr(7,4)+month+date.substr(0,2); + } else if (date.length == 10) { + if (ts_europeandate == false) { + return date.substr(6,4)+date.substr(0,2)+date.substr(3,2); + } else { + return date.substr(6,4)+date.substr(3,2)+date.substr(0,2); + } + } else if (date.length == 8) { + yr = date.substr(6,2); + if (parseInt(yr) < 50) { + yr = '20'+yr; + } else { + yr = '19'+yr; + } + if (ts_europeandate == true) { + return yr+date.substr(3,2)+date.substr(0,2); + } else { + return yr+date.substr(0,2)+date.substr(3,2); + } + } + return "00000000"; +} + +function ts_parseFloat( s ) { + if ( !s ) { + return 0; + } + if (ts_number_transform_table != false) { + var newNum = '', c; + + for ( var p = 0; p < s.length; p++ ) { + c = s.charAt( p ); + if (c in ts_number_transform_table) { + newNum += ts_number_transform_table[c]; + } else { + newNum += c; + } + } + s = newNum; + } + + num = parseFloat(s.replace(/,/g, "")); + return (isNaN(num) ? 0 : num); +} + +function ts_currencyToSortKey( s ) { + return ts_parseFloat(s.replace(/[^0-9.,]/g,'')); +} + +function ts_sort_generic(a, b) { + return a[1] < b[1] ? -1 : a[1] > b[1] ? 1 : a[2] - b[2]; +} + +function ts_alternate(table) { + // Take object table and get all it's tbodies. + var tableBodies = table.getElementsByTagName("tbody"); + // Loop through these tbodies + for (var i = 0; i < tableBodies.length; i++) { + // Take the tbody, and get all it's rows + var tableRows = tableBodies[i].getElementsByTagName("tr"); + // Loop through these rows + // Start at 1 because we want to leave the heading row untouched + for (var j = 0; j < tableRows.length; j++) { + // Check if j is even, and apply classes for both possible results + var oldClasses = tableRows[j].className.split(" "); + var newClassName = ""; + for (var k = 0; k < oldClasses.length; k++) { + if (oldClasses[k] != "" && oldClasses[k] != "even" && oldClasses[k] != "odd") + newClassName += oldClasses[k] + " "; + } + tableRows[j].className = newClassName + (j % 2 == 0 ? "even" : "odd"); + } + } +} + +/* + * End of table sorting code + */ + + +/** + * Add a cute little box at the top of the screen to inform the user of + * something, replacing any preexisting message. + * + * @param String -or- Dom Object message HTML to be put inside the right div + * @param String className Used in adding a class; should be different for each + * call to allow CSS/JS to hide different boxes. null = no class used. + * @return Boolean True on success, false on failure + */ +function jsMsg( message, className ) { + if ( !document.getElementById ) { + return false; + } + // We special-case skin structures provided by the software. Skins that + // choose to abandon or significantly modify our formatting can just define + // an mw-js-message div to start with. + var messageDiv = document.getElementById( 'mw-js-message' ); + if ( !messageDiv ) { + messageDiv = document.createElement( 'div' ); + if ( document.getElementById( 'column-content' ) + && document.getElementById( 'content' ) ) { + // MonoBook, presumably + document.getElementById( 'content' ).insertBefore( + messageDiv, + document.getElementById( 'content' ).firstChild + ); + } else if ( document.getElementById('content') + && document.getElementById( 'article' ) ) { + // Non-Monobook but still recognizable (old-style) + document.getElementById( 'article').insertBefore( + messageDiv, + document.getElementById( 'article' ).firstChild + ); + } else { + return false; + } + } + + messageDiv.setAttribute( 'id', 'mw-js-message' ); + messageDiv.style.display = 'block'; + if( className ) { + messageDiv.setAttribute( 'class', 'mw-js-message-'+className ); + } + + if (typeof message === 'object') { + while (messageDiv.hasChildNodes()) // Remove old content + messageDiv.removeChild(messageDiv.firstChild); + messageDiv.appendChild (message); // Append new content + } + else { + messageDiv.innerHTML = message; + } + return true; +} + +/** + * Inject a cute little progress spinner after the specified element + * + * @param element Element to inject after + * @param id Identifier string (for use with removeSpinner(), below) + */ +function injectSpinner( element, id ) { + var spinner = document.createElement( "img" ); + spinner.id = "mw-spinner-" + id; + spinner.src = stylepath + "/common/images/spinner.gif"; + spinner.alt = spinner.title = "..."; + if( element.nextSibling ) { + element.parentNode.insertBefore( spinner, element.nextSibling ); + } else { + element.parentNode.appendChild( spinner ); + } +} + +/** + * Remove a progress spinner added with injectSpinner() + * + * @param id Identifier string + */ +function removeSpinner( id ) { + var spinner = document.getElementById( "mw-spinner-" + id ); + if( spinner ) { + spinner.parentNode.removeChild( spinner ); + } +} + +function runOnloadHook() { + // don't run anything below this for non-dom browsers + if (doneOnloadHook || !(document.getElementById && document.getElementsByTagName)) { + return; + } + + // set this before running any hooks, since any errors below + // might cause the function to terminate prematurely + doneOnloadHook = true; + + updateTooltipAccessKeys( null ); + akeytt( null ); + setupCheckboxShiftClick(); + sortables_init(); + + // Run any added-on functions + for (var i = 0; i < onloadFuncts.length; i++) { + onloadFuncts[i](); + } +} + +/** + * Add an event handler to an element + * + * @param Element element Element to add handler to + * @param String attach Event to attach to + * @param callable handler Event handler callback + */ +function addHandler( element, attach, handler ) { + if( window.addEventListener ) { + element.addEventListener( attach, handler, false ); + } else if( window.attachEvent ) { + element.attachEvent( 'on' + attach, handler ); + } +} + +/** + * Add a click event handler to an element + * + * @param Element element Element to add handler to + * @param callable handler Event handler callback + */ +function addClickHandler( element, handler ) { + addHandler( element, 'click', handler ); +} + +/** + * Removes an event handler from an element + * + * @param Element element Element to remove handler from + * @param String remove Event to remove + * @param callable handler Event handler callback to remove + */ +function removeHandler( element, remove, handler ) { + if( window.removeEventListener ) { + element.removeEventListener( remove, handler, false ); + } else if( window.detachEvent ) { + element.detachEvent( 'on' + remove, handler ); + } +} +//note: all skins should call runOnloadHook() at the end of html output, +// so the below should be redundant. It's there just in case. +hookEvent("load", runOnloadHook); diff --git a/wget/https/wiki.gruntnetwork.com/skins/monobook/audio.png b/wget/https/wiki.gruntnetwork.com/skins/monobook/audio.png Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/monobook/bullet.gif b/wget/https/wiki.gruntnetwork.com/skins/monobook/bullet.gif Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/monobook/discussionitem_icon.gif b/wget/https/wiki.gruntnetwork.com/skins/monobook/discussionitem_icon.gif Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/monobook/document.png b/wget/https/wiki.gruntnetwork.com/skins/monobook/document.png Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/monobook/external-rtl.png b/wget/https/wiki.gruntnetwork.com/skins/monobook/external-rtl.png Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/monobook/external.png b/wget/https/wiki.gruntnetwork.com/skins/monobook/external.png Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/monobook/file_icon.gif b/wget/https/wiki.gruntnetwork.com/skins/monobook/file_icon.gif Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/monobook/headbg.jpg b/wget/https/wiki.gruntnetwork.com/skins/monobook/headbg.jpg Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/monobook/lock_icon.gif b/wget/https/wiki.gruntnetwork.com/skins/monobook/lock_icon.gif Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/monobook/mail_icon.gif b/wget/https/wiki.gruntnetwork.com/skins/monobook/mail_icon.gif Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/monobook/main.css?207.css b/wget/https/wiki.gruntnetwork.com/skins/monobook/main.css?207.css @@ -0,0 +1,1560 @@ +/* +** MediaWiki 'monobook' style sheet for CSS2-capable browsers. +** Copyright Gabriel Wicke - http://wikidev.net/ +** License: GPL (http://www.gnu.org/copyleft/gpl.html) +** +** Loosely based on http://www.positioniseverything.net/ordered-floats.html by Big John +** and the Plone 2.0 styles, see http://plone.org/ (Alexander Limi,Joe Geldart & Tom Croucher, +** Michael Zeltner and Geir Bækholt) +** All you guys rock :) +*/ + +#column-content { + width: 100%; + float: right; + margin: 0 0 .6em -12.2em; + padding: 0; +} +#content { + margin: 2.8em 0 0 12.2em; + padding: 0 1em 1em 1em; + position: relative; + z-index: 2; +} +#column-one { + padding-top: 160px; +} +#content { + background: white; + color: black; + border: 1px solid #aaa; + border-right: none; + line-height: 1.5em; +} +/* the left column width is specified in class .portlet */ + +/* Font size: +** We take advantage of keyword scaling- browsers won't go below 9px +** More at http://www.w3.org/2003/07/30-font-size +** http://style.cleverchimp.com/font_size_intervals/altintervals.html +*/ + +body { + font: x-small sans-serif; + background: #f9f9f9 url(headbg.jpg) 0 0 no-repeat; + color: black; + margin: 0; + padding: 0; +} + +/* scale back up to a sane default */ +#globalWrapper { + font-size: 127%; + width: 100%; + margin: 0; + padding: 0; +} +.visualClear { + clear: both; +} + +/* general styles */ + +table { + font-size: 100%; + color: black; + /* we don't want the bottom borders of <h2>s to be visible through + floated tables */ + background-color: white; +} +fieldset table { + /* but keep table layouts in forms clean... */ + background: none; +} +a { + text-decoration: none; + color: #002bb8; + background: none; +} +a:visited { + color: #5a3696; +} +a:active { + color: #faa700; +} +a:hover { + text-decoration: underline; +} +a.stub { + color: #772233; +} +a.new, #p-personal a.new { + color: #ba0000; +} +a.new:visited, #p-personal a.new:visited { + color: #a55858; +} + +img { + border: none; + vertical-align: middle; +} +p { + margin: .4em 0 .5em 0; + line-height: 1.5em; +} +p img { + margin: 0; +} + +hr { + height: 1px; + color: #aaa; + background-color: #aaa; + border: 0; + margin: .2em 0 .2em 0; +} + +h1, h2, h3, h4, h5, h6 { + color: black; + background: none; + font-weight: normal; + margin: 0; + padding-top: .5em; + padding-bottom: .17em; + border-bottom: 1px solid #aaa; +} +h1 { font-size: 188%; } +h1 .editsection { font-size: 53%; } +h2 { font-size: 150%; } +h2 .editsection { font-size: 67%; } +h3, h4, h5, h6 { + border-bottom: none; + font-weight: bold; +} +h3 { font-size: 132%; } +h3 .editsection { font-size: 76%; font-weight: normal; } +h4 { font-size: 116%; } +h4 .editsection { font-size: 86%; font-weight: normal; } +h5 { font-size: 100%; } +h5 .editsection { font-weight: normal; } +h6 { font-size: 80%; } +h6 .editsection { font-size: 125%; font-weight: normal; } + +ul { + line-height: 1.5em; + list-style-type: square; + margin: .3em 0 0 1.5em; + padding: 0; + list-style-image: url(bullet.gif); +} +ol { + line-height: 1.5em; + margin: .3em 0 0 3.2em; + padding: 0; + list-style-image: none; +} +li { + margin-bottom: .1em; +} +dt { + font-weight: bold; + margin-bottom: .1em; +} +dl { + margin-top: .2em; + margin-bottom: .5em; +} +dd { + line-height: 1.5em; + margin-left: 2em; + margin-bottom: .1em; +} + +fieldset { + border: 1px solid #2f6fab; + margin: 1em 0 1em 0; + padding: 0 1em 1em; + line-height: 1.5em; +} +fieldset.nested { + margin: 0 0 0.5em 0; + padding: 0 0.5em 0.5em; +} +legend { + padding: .5em; + font-size: 95%; +} +form { + border: none; + margin: 0; +} + +textarea { + width: 100%; + padding: .1em; +} + +input.historysubmit { + padding: 0 .3em .3em .3em !important; + font-size: 94%; + cursor: pointer; + height: 1.7em !important; + margin-left: 1.6em; +} +select { + vertical-align: top; +} +abbr, acronym, .explain { + border-bottom: 1px dotted black; + color: black; + background: none; + cursor: help; +} +q { + font-family: Times, "Times New Roman", serif; + font-style: italic; +} +/* disabled for now +blockquote { + font-family: Times, "Times New Roman", serif; + font-style: italic; +}*/ +code { + background-color: #f9f9f9; +} +pre { + padding: 1em; + border: 1px dashed #2f6fab; + color: black; + background-color: #f9f9f9; + line-height: 1.1em; +} + +/* +** the main content area +*/ + +#siteSub { + display: none; +} +#jump-to-nav { + display: none; +} + +#contentSub, #contentSub2 { + font-size: 84%; + line-height: 1.2em; + margin: 0 0 1.4em 1em; + color: #7d7d7d; + width: auto; +} +span.subpages { + display: block; +} + +/* Some space under the headers in the content area */ +#bodyContent h1, #bodyContent h2 { + margin-bottom: .6em; +} +#bodyContent h3, #bodyContent h4, #bodyContent h5 { + margin-bottom: .3em; +} +#firstHeading { + margin-bottom: .1em; + /* These two rules hack around bug 2013 (fix for more limited bug 11325). + When bug 2013 is fixed properly, they should be removed. */ + line-height: 1.2em; + padding-bottom: 0; +} + +/* user notification thing */ +.usermessage { + background-color: #ffce7b; + border: 1px solid #ffa500; + color: black; + font-weight: bold; + margin: 2em 0 1em; + padding: .5em 1em; + vertical-align: middle; +} +#siteNotice { + text-align: center; + font-size: 95%; + padding: 0 .9em; +} +#siteNotice p { + margin: 0; + padding: 0; +} +.success { + color: green; + font-size: larger; +} +.error { + color: red; + font-size: larger; +} +.errorbox, .successbox { + font-size: larger; + border: 2px solid; + padding: .5em 1em; + float: left; + margin-bottom: 2em; + color: #000; +} +.errorbox { + border-color: red; + background-color: #fff2f2; +} +.successbox { + border-color: green; + background-color: #dfd; +} +.errorbox h2, .successbox h2 { + font-size: 1em; + font-weight: bold; + display: inline; + margin: 0 .5em 0 0; + border: none; +} + +.catlinks { + border: 1px solid #aaa; + background-color: #f9f9f9; + padding: 5px; + margin-top: 1em; + clear: both; +} +/* currently unused, intended to be used by a metadata box +in the bottom-right corner of the content area */ +.documentDescription { + /* The summary text describing the document */ + font-weight: bold; + display: block; + margin: 1em 0; + line-height: 1.5em; +} +.documentByLine { + text-align: right; + font-size: 90%; + clear: both; + font-weight: normal; + color: #76797c; +} + +/* emulate center */ +.center { + width: 100%; + text-align: center; +} +*.center * { + margin-left: auto; + margin-right: auto; +} +/* small for tables and similar */ +.small, .small * { + font-size: 94%; +} +table.small { + font-size: 100%; +} + +/* +** content styles +*/ + +#toc, +.toc, +.mw-warning { + border: 1px solid #aaa; + background-color: #f9f9f9; + padding: 5px; + font-size: 95%; +} +#toc h2, +.toc h2 { + display: inline; + border: none; + padding: 0; + font-size: 100%; + font-weight: bold; +} +#toc #toctitle, +.toc #toctitle, +#toc .toctitle, +.toc .toctitle { + text-align: center; +} +#toc ul, +.toc ul { + list-style-type: none; + list-style-image: none; + margin-left: 0; + padding-left: 0; + text-align: left; +} +#toc ul ul, +.toc ul ul { + margin: 0 0 0 2em; +} +#toc .toctoggle, +.toc .toctoggle { + font-size: 94%; +} + +.mw-warning { + margin-left: 50px; + margin-right: 50px; + text-align: center; +} + +/* images */ +div.floatright, table.floatright { + clear: right; + float: right; + position: relative; + margin: 0 0 .5em .5em; + border: 0; +/* + border: .5em solid white; + border-width: .5em 0 .8em 1.4em; +*/ +} +div.floatright p { font-style: italic; } +div.floatleft, table.floatleft { + float: left; + clear: left; + position: relative; + margin: 0 .5em .5em 0; + border: 0; +/* + margin: .3em .5em .5em 0; + border: .5em solid white; + border-width: .5em 1.4em .8em 0; +*/ +} +div.floatleft p { font-style: italic; } +/* thumbnails */ +div.thumb { + margin-bottom: .5em; + border-style: solid; + border-color: white; + width: auto; +} +div.thumbinner { + border: 1px solid #ccc; + padding: 3px !important; + background-color: #f9f9f9; + font-size: 94%; + text-align: center; + overflow: hidden; +} +html .thumbimage { + border: 1px solid #ccc; +} +html .thumbcaption { + border: none; + text-align: left; + line-height: 1.4em; + padding: 3px !important; + font-size: 94%; +} +div.magnify { + float: right; + border: none !important; + background: none !important; +} +div.magnify a, div.magnify img { + display: block; + border: none !important; + background: none !important; +} +div.tright { + clear: right; + float: right; + border-width: .5em 0 .8em 1.4em; +} +div.tleft { + float: left; + clear: left; + margin-right: .5em; + border-width: .5em 1.4em .8em 0; +} +img.thumbborder { + border: 1px solid #dddddd; +} +.hiddenStructure { + display: none; +} + +/* +** classes for special content elements like town boxes +** intended to be referenced directly from the wiki src +*/ + +/* +** User styles +*/ +/* table standards */ +table.rimage { + float: right; + position: relative; + margin-left: 1em; + margin-bottom: 1em; + text-align: center; +} +.toccolours { + border: 1px solid #aaa; + background-color: #f9f9f9; + padding: 5px; + font-size: 95%; +} + +/* +** edit views etc +*/ +.special li { + line-height: 1.4em; + margin: 0; + padding: 0; +} + +/* +** keep the whitespace in front of the ^=, hides rule from konqueror +** this is css3, the validator doesn't like it when validating as css2 +*/ +#bodyContent a.external, +#bodyContent a[href ^="gopher://"] { + background: url(external.png) center right no-repeat; + padding: 0 13px; +} +.rtl #bodyContent a.external, +.rtl #bodyContent a[href ^="gopher://"] { + background-image: url(external-rtl.png); +} +#bodyContent a[href ^="https://"], +.link-https { + background: url(lock_icon.gif) center right no-repeat; + padding: 0 16px; +} +#bodyContent a[href ^="mailto:"], +.link-mailto { + background: url(mail_icon.gif) center right no-repeat; + padding: 0 18px; +} +#bodyContent a[href ^="news://"] { + background: url(news_icon.png) center right no-repeat; + padding: 0 18px; +} +#bodyContent a[href ^="ftp://"], +.link-ftp { + background: url(file_icon.gif) center right no-repeat; + padding: 0 18px; +} +#bodyContent a[href ^="irc://"], +#bodyContent a.extiw[href ^="irc://"], +.link-irc { + background: url(discussionitem_icon.gif) center right no-repeat; + padding: 0 18px; +} +#bodyContent a.external[href $=".ogg"], #bodyContent a.external[href $=".OGG"], +#bodyContent a.external[href $=".mid"], #bodyContent a.external[href $=".MID"], +#bodyContent a.external[href $=".midi"], #bodyContent a.external[href $=".MIDI"], +#bodyContent a.external[href $=".mp3"], #bodyContent a.external[href $=".MP3"], +#bodyContent a.external[href $=".wav"], #bodyContent a.external[href $=".WAV"], +#bodyContent a.external[href $=".wma"], #bodyContent a.external[href $=".WMA"], +.link-audio { + background: url("audio.png") center right no-repeat; + padding: 0 13px; +} +#bodyContent a.external[href $=".ogm"], #bodyContent a.external[href $=".OGM"], +#bodyContent a.external[href $=".avi"], #bodyContent a.external[href $=".AVI"], +#bodyContent a.external[href $=".mpeg"], #bodyContent a.external[href $=".MPEG"], +#bodyContent a.external[href $=".mpg"], #bodyContent a.external[href $=".MPG"], +.link-video { + background: url("video.png") center right no-repeat; + padding: 0 13px; +} +#bodyContent a.external[href $=".pdf"], #bodyContent a.external[href $=".PDF"], +#bodyContent a.external[href *=".pdf#"], #bodyContent a.external[href *=".PDF#"], +#bodyContent a.external[href *=".pdf?"], #bodyContent a.external[href *=".PDF?"], +.link-document { + background: url("document.png") center right no-repeat; + padding: 0 12px; +} + +/* for rtl wikis */ +.rtl #bodyContent a.external { + background-position: left; + padding-right: 0; +} +.rtl a.feedlink { + background-position: right; + padding-right: 16px; + padding-left: 0; +} + +/* correction for ltr wikis */ +.ltr #bodyContent a.external { + padding-left: 0; +} + +/* disable interwiki styling */ +#bodyContent a.extiw, +#bodyContent a.extiw:active { + color: #36b; + background: none; + padding: 0; +} +#bodyContent a.external { + color: #36b; +} +/* this can be used in the content area to switch off +special external link styling */ +#bodyContent .plainlinks a { + background: none !important; + padding: 0 !important; +} +/* +** Structural Elements +*/ + +/* +** general portlet styles (elements in the quickbar) +*/ +.portlet { + border: none; + margin: 0 0 .5em; + padding: 0; + float: none; + width: 11.6em; + overflow: hidden; +} +.portlet h4 { + font-size: 95%; + font-weight: normal; + white-space: nowrap; +} +.portlet h5 { + background: transparent; + padding: 0 1em 0 .5em; + display: inline; + height: 1em; + text-transform: lowercase; + font-size: 91%; + font-weight: normal; + white-space: nowrap; +} +.portlet h6 { + background: #ffae2e; + border: 1px solid #2f6fab; + border-style: solid solid none solid; + padding: 0 1em 0 1em; + text-transform: lowercase; + display: block; + font-size: 1em; + height: 1.2em; + font-weight: normal; + white-space: nowrap; +} +.pBody { + font-size: 95%; + background-color: white; + color: black; + border-collapse: collapse; + border: 1px solid #aaa; + padding: 0 .8em .3em .5em; +} +.portlet h1, +.portlet h2, +.portlet h3, +.portlet h4 { + margin: 0; + padding: 0; +} +.portlet ul { + line-height: 1.5em; + list-style-type: square; + list-style-image: url(bullet.gif); + font-size: 95%; +} +.portlet li { + padding: 0; + margin: 0; +} + +/* +** Logo properties +*/ + +#p-logo { + top: 0; + left: 0; + position: absolute; /*needed to use z-index */ + z-index: 3; + height: 155px; + width: 12em; + overflow: visible; +} +#p-logo h5 { + display: none; +} +#p-logo a, +#p-logo a:hover { + display: block; + height: 155px; + width: 12.2em; + background-repeat: no-repeat; + background-position: 35% 50% !important; + text-decoration: none; +} + +/* +** Search portlet +*/ +#p-search { + position: relative; + z-index: 3; +} +input.searchButton { + margin-top: 1px; + font-size: 95%; +} +#searchGoButton { + padding-left: .5em; + padding-right: .5em; + font-weight: bold; +} +#searchInput { + width: 10.9em; + margin: 0; + font-size: 95%; +} +#p-search .pBody { + padding: .5em .4em .4em .4em; + text-align: center; +} +#p-search #searchform div div { + margin-top: .4em; + font-size: 95%; +} +/* +** the personal toolbar +*/ +#p-personal { + position: absolute; + left: 0; + top: 0; + z-index: 0; +} +#p-personal { + width: 100%; + white-space: nowrap; + padding: 0; + margin: 0; + border: none; + background: none; + overflow: visible; + line-height: 1.2em; +} +#p-personal h5 { + display: none; +} +#p-personal .portlet, +#p-personal .pBody { + z-index: 0; + padding: 0; + margin: 0; + border: none; + overflow: visible; + background: none; +} +/* this is the ul contained in the portlet */ +#p-personal ul { + border: none; + line-height: 1.4em; + color: #2f6fab; + padding: 0 2em 0 3em; + margin: 0; + text-align: right; + list-style: none; + z-index: 0; + background: none; + cursor: default; +} +#p-personal li { + z-index: 0; + border: none; + padding: 0; + display: inline; + color: #2f6fab; + margin-left: 1em; + line-height: 1.2em; + background: none; +} +#p-personal li a { + text-decoration: none; + color: #005896; + padding-bottom: .2em; + background: none; +} +#p-personal li a:hover { + background-color: white; + padding-bottom: .2em; + text-decoration: none; +} +#p-personal li.active a:hover { + background-color: transparent; +} +/* the icon in front of the user name, single quotes +in bg url to hide it from iemac */ +li#pt-userpage, +li#pt-anonuserpage, +li#pt-login { + background: url(user.gif) top left no-repeat; + padding-left: 20px; + text-transform: none; +} +#p-personal ul { + text-transform: lowercase; +} +#p-personal li.active { + font-weight: bold; +} +/* +** the page-related actions- page/talk, edit etc +*/ +#p-cactions { + position: absolute; + top: 1.3em; + left: 11.5em; + margin: 0; + white-space: nowrap; + width: 76%; + line-height: 1.1em; + overflow: visible; + background: none; + border-collapse: collapse; + padding-left: 1em; + list-style: none; + font-size: 95%; +} +#p-cactions ul { + list-style: none; +} +#p-cactions li { + display: inline; + border: 1px solid #aaa; + border-bottom: none; + padding: 0 0 .1em 0; + margin: 0 .3em 0 0; + overflow: visible; + background: white; +} +#p-cactions li.selected { + border-color: #fabd23; + padding: 0 0 .2em 0; + font-weight: bold; +} +#p-cactions li a { + background-color: #fbfbfb; + color: #002bb8; + border: none; + padding: 0 .8em .3em; + position: relative; + z-index: 0; + margin: 0; + text-decoration: none; +} +#p-cactions li.selected a { + z-index: 3; + padding: 0 1em .2em!important; + background-color: white; +} +#p-cactions .new a { + color: #ba0000; +} +#p-cactions li a:hover { + z-index: 3; + text-decoration: none; + background-color: white; +} +#p-cactions h5 { + display: none; +} +#p-cactions li.istalk { + margin-right: 0; +} +#p-cactions li.istalk a { + padding-right: .5em; +} +#p-cactions #ca-addsection a { + padding-left: .4em; + padding-right: .4em; +} +/* offsets to distinguish the tab groups */ +li#ca-talk { + margin-right: 1.6em; +} +li#ca-watch, li#ca-unwatch, li#ca-varlang-0, li#ca-print { + margin-left: 1.6em; +} +#p-cactions .pBody { + font-size: 1em; + background-color: transparent; + color: inherit; + border-collapse: inherit; + border: 0; + padding: 0; +} +#p-cactions .hiddenStructure { + display: none; +} +#p-cactions li a { + text-transform: lowercase; +} + +#p-lang { + position: relative; + z-index: 3; +} + +/* TODO: #t-iscite is only used by the Cite extension, come up with some + * system which allows extensions to add to this file on the fly + */ +#t-ispermalink, #t-iscite { + color: #999; +} +/* +** footer +*/ +#footer { + background-color: white; + border-top: 1px solid #fabd23; + border-bottom: 1px solid #fabd23; + margin: .6em 0 1em 0; + padding: .4em 0 1.2em 0; + text-align: center; + font-size: 90%; +} +#footer li { + display: inline; + margin: 0 1.3em; +} +#f-poweredbyico, #f-copyrightico { + margin: 0 8px; + position: relative; + top: -2px; /* Bump it up just a tad */ +} +#f-poweredbyico { + float: right; + height: 1%; +} +#f-copyrightico { + float: left; + height: 1%; +} + +/* js pref toc */ +#preftoc { + margin: 0; + padding: 0; + width: 100%; + clear: both; +} +#preftoc li { + background-color: #f0f0f0; + color: #000; +} +#preftoc li { + margin: 1px -2px 1px 2px; + float: left; + padding: 2px 0 3px 0; + border: 1px solid #fff; + border-right-color: #716f64; + border-bottom: 0; + position: relative; + white-space: nowrap; + list-style-type: none; + list-style-image: none; + z-index: 3; +} +#preftoc li.selected { + font-weight: bold; + background-color: #f9f9f9; + border: 1px solid #aaa; + border-bottom: none; + cursor: default; + top: 1px; + padding-top: 2px; + margin-right: -3px; +} +#preftoc > li.selected { + top: 2px; +} +#preftoc a, +#preftoc a:active { + display: block; + color: #000; + padding: 0 .7em; + position: relative; + text-decoration: none; +} +#preftoc li.selected a { + cursor: default; + text-decoration: none; +} +#prefcontrol { + padding-top: 2em; + clear: both; +} +#preferences { + margin: 0; + border: 1px solid #aaa; + clear: both; + padding: 1.5em; + background-color: #F9F9F9; +} +.prefsection { + border: none; + padding: 0; + margin: 0; +} +.prefsection fieldset { + border: 1px solid #aaa; + float: left; + margin-right: 2em; +} +.prefsection legend { + font-weight: bold; +} +.prefsection table, .prefsection legend { + background-color: #F9F9F9; +} +.mainLegend { + display: none; +} +div.prefsectiontip { + font-size: x-small; + padding: .2em 2em; + color: #666; +} +.btnSavePrefs { + font-weight: bold; + padding-left: .3em; + padding-right: .3em; +} + +.preferences-login { + clear: both; + margin-bottom: 1.5em; +} + +.prefcache { + font-size: 90%; + margin-top: 2em; +} + +div#userloginForm form, +div#userlogin form#userlogin2 { + margin: 0 3em 1em 0; + border: 1px solid #aaa; + clear: both; + padding: 1.5em 2em; + background-color: #f9f9f9; + float: left; +} +.rtl div#userloginForm form, +.rtl div#userlogin form#userlogin2 { + float: right; +} + +div#userloginForm table, +div#userlogin form#userlogin2 table { + background-color: #f9f9f9; +} + +div#userloginForm h2, +div#userlogin form#userlogin2 h2 { + padding-top: 0; +} + +div#userlogin .captcha, +div#userloginForm .captcha { + border: 1px solid #bbb; + padding: 1.5em 2em; + background-color: white; +} + +#loginend, #signupend { + clear: both; +} + +#userloginprompt, #languagelinks { + font-size: 85%; +} + +#login-sectiontip { + font-size: 85%; + line-height: 1.2; + padding-top: 2em; +} + +#userlogin .loginText, #userlogin .loginPassword { + width: 12em; +} + +#userloginlink a, #wpLoginattempt, #wpCreateaccount { + font-weight: bold; +} + +/* +** IE/Mac fixes, hope to find a validating way to move this +** to a separate stylesheet. This would work but doesn't validate: +** @import("IEMacFixes.css"); +*/ +/* tabs: border on the a, not the div */ +* > html #p-cactions li { border: none; } +* > html #p-cactions li a { + border: 1px solid #aaa; + border-bottom: none; +} +* > html #p-cactions li.selected a { border-color: #fabd23; } +/* footer icons need a fixed width */ +* > html #f-poweredbyico, +* > html #f-copyrightico { width: 88px; } +* > html #bodyContent, +* > html #bodyContent pre { + overflow-x: auto; + width: 100%; + padding-bottom: 25px; +} + +/* more IE fixes */ +/* float/negative margin brokenness */ +* html #footer {margin-top: 0;} +* html #column-content { + display: inline; + margin-bottom: 0; +} +* html div.editsection { font-size: smaller; } +#pagehistory li.selected { position: relative; } + +/* Mac IE 5.0 fix; floated content turns invisible */ +* > html #column-content { + float: none; +} +* > html #column-one { + position: absolute; + left: 0; + top: 0; +} +* > html #footer { + margin-left: 13.2em; +} +.redirectText { + font-size: 150%; + margin: 5px; +} + +.printfooter { + display: none; +} + +.not-patrolled { + background-color: #ffa; +} +div.patrollink { + clear: both; + font-size: 75%; + text-align: right; +} +span.newpage, span.minor, span.bot { + font-weight: bold; +} +span.unpatrolled { + font-weight: bold; + color: red; +} + +.sharedUploadNotice { + font-style: italic; +} + +span.updatedmarker { + color: black; + background-color: #0f0; +} + +table.gallery { + border: 1px solid #ccc; + margin: 2px; + padding: 2px; + background-color: white; +} + +table.gallery tr { + vertical-align: top; +} + +table.gallery td { + vertical-align: top; + background-color: #f9f9f9; + border: solid 2px white; +} +/* Keep this temporarily so that cached pages will display right */ +table.gallery td.galleryheader { + text-align: center; + font-weight: bold; +} +table.gallery caption { + font-weight: bold; +} + +div.gallerybox { + margin: 2px; +} + +div.gallerybox div.thumb { + text-align: center; + border: 1px solid #ccc; + margin: 2px; +} + +div.gallerytext { + overflow: hidden; + font-size: 94%; + padding: 2px 4px; +} + +span.comment { + font-style: italic; +} + +span.changedby { + font-size: 95%; +} + +.previewnote { + text-indent: 3em; + color: #c00; + border-bottom: 1px solid #aaa; + padding-bottom: 1em; + margin-bottom: 1em; +} + +.previewnote p { + margin: 0; + padding: 0; +} + +.editExternally { + border: 1px solid gray; + background-color: #ffffff; + padding: 3px; + margin-top: 0.5em; + float: left; + font-size: small; + text-align: center; +} +.editExternallyHelp { + font-style: italic; + color: gray; +} + +.toggle { + margin-left: 2em; + text-indent: -2em; +} + +/* Classes for EXIF data display */ +table.mw_metadata { + font-size: 0.8em; + margin-left: 0.5em; + margin-bottom: 0.5em; + width: 300px; +} + +table.mw_metadata caption { + font-weight: bold; +} + +table.mw_metadata th { + font-weight: normal; +} + +table.mw_metadata td { + padding: 0.1em; +} + +table.mw_metadata { + border: none; + border-collapse: collapse; +} + +table.mw_metadata td, table.mw_metadata th { + text-align: center; + border: 1px solid #aaaaaa; + padding-left: 0.1em; + padding-right: 0.1em; +} + +table.mw_metadata th { + background-color: #f9f9f9; +} + +table.mw_metadata td { + background-color: #fcfcfc; +} + +table.collapsed tr.collapsable { + display: none; +} + + +/* filetoc */ +ul#filetoc { + text-align: center; + border: 1px solid #aaaaaa; + background-color: #f9f9f9; + padding: 5px; + font-size: 95%; + margin-bottom: 0.5em; + margin-left: 0; + margin-right: 0; +} + +#filetoc li { + display: inline; + list-style-type: none; + padding-right: 2em; +} + +input#wpSummary { + width: 80%; +} + +/* @bug 1714 */ +input#wpSave, input#wpDiff { + margin-right: 0.33em; +} + +#wpSave { + font-weight: bold; +} + +/* Classes for article validation */ + +table.revisionform_default { + border: 1px solid #000000; +} + +table.revisionform_focus { + border: 1px solid #000000; + background-color:#00BBFF; +} + +tr.revision_tr_default { + background-color:#EEEEEE; +} + +tr.revision_tr_first { + background-color:#DDDDDD; +} + +p.revision_saved { + color: green; + font-weight:bold; +} + +#mw_trackbacks { + border: solid 1px #bbbbff; + background-color: #eeeeff; + padding: 0.2em; +} + + +/* Allmessages table */ + +#allmessagestable th { + background-color: #b2b2ff; +} + +#allmessagestable tr.orig { + background-color: #ffe2e2; +} + +#allmessagestable tr.new { + background-color: #e2ffe2; +} + +#allmessagestable tr.def { + background-color: #f0f0ff; +} + + +/* noarticletext */ +div.noarticletext { + border: 1px solid #ccc; + background: #fff; + padding: .2em 1em; + color: #000; +} + +div#searchTargetContainer { + left: 10px; + top: 10px; + width: 90%; + background: white; +} + +div#searchTarget { + padding: 3px; + margin: 5px; + background: #F0F0F0; + border: solid 1px blue; +} + +div#searchTarget ul li { + list-style: none; +} + +div#searchTarget ul li:before { + color: orange; + content: "\00BB \0020"; +} + +div#searchTargetHide { + float:right; + border:solid 1px black; + background:#DCDCDC; + padding:2px; +} + +#powersearch p { + margin-top:0px; +} + +div.multipageimagenavbox { + border: solid 1px silver; + padding: 4px; + margin: 1em; + background: #f0f0f0; +} + +div.multipageimagenavbox div.thumb { + border: none; + margin-left: 2em; + margin-right: 2em; +} + +div.multipageimagenavbox hr { + margin: 6px; +} + +table.multipageimage td { + text-align: center; +} + +/** Special:Version */ + +table#sv-ext, table#sv-hooks, table#sv-software { + margin: 1em; + padding:0em; +} + +#sv-ext td, #sv-hooks td, #sv-software td, +#sv-ext th, #sv-hooks th, #sv-software th { + border: 1px solid #A0A0A0; + padding: 0 0.15em 0 0.15em; +} +#sv-ext th, #sv-hooks th, #sv-software th { + background-color: #F0F0F0; + color: black; + padding: 0 0.15em 0 0.15em; +} +tr.sv-space{ + height: 0.8em; + border:none; +} +tr.sv-space td { display: none; } + +/* + Table pager (e.g. Special:Imagelist) + - remove underlines from the navigation link + - collapse borders + - set the borders to outsets (similar to Special:Allmessages) + - remove line wrapping for all td and th, set background color + - restore line wrapping for the last two table cells (description and size) +*/ +.TablePager { min-width: 80%; } +.TablePager_nav a { text-decoration: none; } +.TablePager { border-collapse: collapse; } +.TablePager, .TablePager td, .TablePager th { + border: 1px solid #aaaaaa; + padding: 0 0.15em 0 0.15em; +} +.TablePager th { background-color: #eeeeff } +.TablePager td { background-color: #ffffff } +.TablePager tr:hover td { background-color: #eeeeff } + +.imagelist td, .imagelist th { white-space: nowrap } +.imagelist .TablePager_col_links { background-color: #eeeeff } +.imagelist .TablePager_col_img_description { white-space: normal } +.imagelist th.TablePager_sort { background-color: #ccccff } + +.templatesUsed { margin-top: 1.5em; } + +.mw-summary-preview { + margin: 0.1em 0; +} + +/* Friendlier slave lag warnings */ +div.mw-lag-warn-normal, +div.mw-lag-warn-high { + padding: 3px; + text-align: center; + margin: 3px auto; +} +div.mw-lag-warn-normal { + border: 1px solid #FFCC66; + background-color: #FFFFCC; +} +div.mw-lag-warn-high { + font-weight: bold; + border: 2px solid #FF0033; + background-color: #FFCCCC; +} + +.MediaTransformError { + background-color: #ccc; + padding: 0.1em; +} +.MediaTransformError td { + text-align: center; + vertical-align: middle; + font-size: 90%; +} + +/** Special:Search stuff */ +div#mw-search-interwiki-caption { + text-align: center; + font-weight: bold; + font-size: 95%; +} + +.mw-search-interwiki-project { + font-size: 97%; + text-align: left; + padding-left: 0.2em; + padding-right: 0.15em; + padding-bottom: 0.2em; + padding-top: 0.15em; + background: #cae8ff; +} + +/* God-damned hack for the crappy layout */ +.os-suggest { + font-size: 127%; +} diff --git a/wget/https/wiki.gruntnetwork.com/skins/monobook/main.css?207orig b/wget/https/wiki.gruntnetwork.com/skins/monobook/main.css?207orig @@ -0,0 +1,1560 @@ +/* +** MediaWiki 'monobook' style sheet for CSS2-capable browsers. +** Copyright Gabriel Wicke - http://wikidev.net/ +** License: GPL (http://www.gnu.org/copyleft/gpl.html) +** +** Loosely based on http://www.positioniseverything.net/ordered-floats.html by Big John +** and the Plone 2.0 styles, see http://plone.org/ (Alexander Limi,Joe Geldart & Tom Croucher, +** Michael Zeltner and Geir Bækholt) +** All you guys rock :) +*/ + +#column-content { + width: 100%; + float: right; + margin: 0 0 .6em -12.2em; + padding: 0; +} +#content { + margin: 2.8em 0 0 12.2em; + padding: 0 1em 1em 1em; + position: relative; + z-index: 2; +} +#column-one { + padding-top: 160px; +} +#content { + background: white; + color: black; + border: 1px solid #aaa; + border-right: none; + line-height: 1.5em; +} +/* the left column width is specified in class .portlet */ + +/* Font size: +** We take advantage of keyword scaling- browsers won't go below 9px +** More at http://www.w3.org/2003/07/30-font-size +** http://style.cleverchimp.com/font_size_intervals/altintervals.html +*/ + +body { + font: x-small sans-serif; + background: #f9f9f9 url(headbg.jpg) 0 0 no-repeat; + color: black; + margin: 0; + padding: 0; +} + +/* scale back up to a sane default */ +#globalWrapper { + font-size: 127%; + width: 100%; + margin: 0; + padding: 0; +} +.visualClear { + clear: both; +} + +/* general styles */ + +table { + font-size: 100%; + color: black; + /* we don't want the bottom borders of <h2>s to be visible through + floated tables */ + background-color: white; +} +fieldset table { + /* but keep table layouts in forms clean... */ + background: none; +} +a { + text-decoration: none; + color: #002bb8; + background: none; +} +a:visited { + color: #5a3696; +} +a:active { + color: #faa700; +} +a:hover { + text-decoration: underline; +} +a.stub { + color: #772233; +} +a.new, #p-personal a.new { + color: #ba0000; +} +a.new:visited, #p-personal a.new:visited { + color: #a55858; +} + +img { + border: none; + vertical-align: middle; +} +p { + margin: .4em 0 .5em 0; + line-height: 1.5em; +} +p img { + margin: 0; +} + +hr { + height: 1px; + color: #aaa; + background-color: #aaa; + border: 0; + margin: .2em 0 .2em 0; +} + +h1, h2, h3, h4, h5, h6 { + color: black; + background: none; + font-weight: normal; + margin: 0; + padding-top: .5em; + padding-bottom: .17em; + border-bottom: 1px solid #aaa; +} +h1 { font-size: 188%; } +h1 .editsection { font-size: 53%; } +h2 { font-size: 150%; } +h2 .editsection { font-size: 67%; } +h3, h4, h5, h6 { + border-bottom: none; + font-weight: bold; +} +h3 { font-size: 132%; } +h3 .editsection { font-size: 76%; font-weight: normal; } +h4 { font-size: 116%; } +h4 .editsection { font-size: 86%; font-weight: normal; } +h5 { font-size: 100%; } +h5 .editsection { font-weight: normal; } +h6 { font-size: 80%; } +h6 .editsection { font-size: 125%; font-weight: normal; } + +ul { + line-height: 1.5em; + list-style-type: square; + margin: .3em 0 0 1.5em; + padding: 0; + list-style-image: url(bullet.gif); +} +ol { + line-height: 1.5em; + margin: .3em 0 0 3.2em; + padding: 0; + list-style-image: none; +} +li { + margin-bottom: .1em; +} +dt { + font-weight: bold; + margin-bottom: .1em; +} +dl { + margin-top: .2em; + margin-bottom: .5em; +} +dd { + line-height: 1.5em; + margin-left: 2em; + margin-bottom: .1em; +} + +fieldset { + border: 1px solid #2f6fab; + margin: 1em 0 1em 0; + padding: 0 1em 1em; + line-height: 1.5em; +} +fieldset.nested { + margin: 0 0 0.5em 0; + padding: 0 0.5em 0.5em; +} +legend { + padding: .5em; + font-size: 95%; +} +form { + border: none; + margin: 0; +} + +textarea { + width: 100%; + padding: .1em; +} + +input.historysubmit { + padding: 0 .3em .3em .3em !important; + font-size: 94%; + cursor: pointer; + height: 1.7em !important; + margin-left: 1.6em; +} +select { + vertical-align: top; +} +abbr, acronym, .explain { + border-bottom: 1px dotted black; + color: black; + background: none; + cursor: help; +} +q { + font-family: Times, "Times New Roman", serif; + font-style: italic; +} +/* disabled for now +blockquote { + font-family: Times, "Times New Roman", serif; + font-style: italic; +}*/ +code { + background-color: #f9f9f9; +} +pre { + padding: 1em; + border: 1px dashed #2f6fab; + color: black; + background-color: #f9f9f9; + line-height: 1.1em; +} + +/* +** the main content area +*/ + +#siteSub { + display: none; +} +#jump-to-nav { + display: none; +} + +#contentSub, #contentSub2 { + font-size: 84%; + line-height: 1.2em; + margin: 0 0 1.4em 1em; + color: #7d7d7d; + width: auto; +} +span.subpages { + display: block; +} + +/* Some space under the headers in the content area */ +#bodyContent h1, #bodyContent h2 { + margin-bottom: .6em; +} +#bodyContent h3, #bodyContent h4, #bodyContent h5 { + margin-bottom: .3em; +} +#firstHeading { + margin-bottom: .1em; + /* These two rules hack around bug 2013 (fix for more limited bug 11325). + When bug 2013 is fixed properly, they should be removed. */ + line-height: 1.2em; + padding-bottom: 0; +} + +/* user notification thing */ +.usermessage { + background-color: #ffce7b; + border: 1px solid #ffa500; + color: black; + font-weight: bold; + margin: 2em 0 1em; + padding: .5em 1em; + vertical-align: middle; +} +#siteNotice { + text-align: center; + font-size: 95%; + padding: 0 .9em; +} +#siteNotice p { + margin: 0; + padding: 0; +} +.success { + color: green; + font-size: larger; +} +.error { + color: red; + font-size: larger; +} +.errorbox, .successbox { + font-size: larger; + border: 2px solid; + padding: .5em 1em; + float: left; + margin-bottom: 2em; + color: #000; +} +.errorbox { + border-color: red; + background-color: #fff2f2; +} +.successbox { + border-color: green; + background-color: #dfd; +} +.errorbox h2, .successbox h2 { + font-size: 1em; + font-weight: bold; + display: inline; + margin: 0 .5em 0 0; + border: none; +} + +.catlinks { + border: 1px solid #aaa; + background-color: #f9f9f9; + padding: 5px; + margin-top: 1em; + clear: both; +} +/* currently unused, intended to be used by a metadata box +in the bottom-right corner of the content area */ +.documentDescription { + /* The summary text describing the document */ + font-weight: bold; + display: block; + margin: 1em 0; + line-height: 1.5em; +} +.documentByLine { + text-align: right; + font-size: 90%; + clear: both; + font-weight: normal; + color: #76797c; +} + +/* emulate center */ +.center { + width: 100%; + text-align: center; +} +*.center * { + margin-left: auto; + margin-right: auto; +} +/* small for tables and similar */ +.small, .small * { + font-size: 94%; +} +table.small { + font-size: 100%; +} + +/* +** content styles +*/ + +#toc, +.toc, +.mw-warning { + border: 1px solid #aaa; + background-color: #f9f9f9; + padding: 5px; + font-size: 95%; +} +#toc h2, +.toc h2 { + display: inline; + border: none; + padding: 0; + font-size: 100%; + font-weight: bold; +} +#toc #toctitle, +.toc #toctitle, +#toc .toctitle, +.toc .toctitle { + text-align: center; +} +#toc ul, +.toc ul { + list-style-type: none; + list-style-image: none; + margin-left: 0; + padding-left: 0; + text-align: left; +} +#toc ul ul, +.toc ul ul { + margin: 0 0 0 2em; +} +#toc .toctoggle, +.toc .toctoggle { + font-size: 94%; +} + +.mw-warning { + margin-left: 50px; + margin-right: 50px; + text-align: center; +} + +/* images */ +div.floatright, table.floatright { + clear: right; + float: right; + position: relative; + margin: 0 0 .5em .5em; + border: 0; +/* + border: .5em solid white; + border-width: .5em 0 .8em 1.4em; +*/ +} +div.floatright p { font-style: italic; } +div.floatleft, table.floatleft { + float: left; + clear: left; + position: relative; + margin: 0 .5em .5em 0; + border: 0; +/* + margin: .3em .5em .5em 0; + border: .5em solid white; + border-width: .5em 1.4em .8em 0; +*/ +} +div.floatleft p { font-style: italic; } +/* thumbnails */ +div.thumb { + margin-bottom: .5em; + border-style: solid; + border-color: white; + width: auto; +} +div.thumbinner { + border: 1px solid #ccc; + padding: 3px !important; + background-color: #f9f9f9; + font-size: 94%; + text-align: center; + overflow: hidden; +} +html .thumbimage { + border: 1px solid #ccc; +} +html .thumbcaption { + border: none; + text-align: left; + line-height: 1.4em; + padding: 3px !important; + font-size: 94%; +} +div.magnify { + float: right; + border: none !important; + background: none !important; +} +div.magnify a, div.magnify img { + display: block; + border: none !important; + background: none !important; +} +div.tright { + clear: right; + float: right; + border-width: .5em 0 .8em 1.4em; +} +div.tleft { + float: left; + clear: left; + margin-right: .5em; + border-width: .5em 1.4em .8em 0; +} +img.thumbborder { + border: 1px solid #dddddd; +} +.hiddenStructure { + display: none; +} + +/* +** classes for special content elements like town boxes +** intended to be referenced directly from the wiki src +*/ + +/* +** User styles +*/ +/* table standards */ +table.rimage { + float: right; + position: relative; + margin-left: 1em; + margin-bottom: 1em; + text-align: center; +} +.toccolours { + border: 1px solid #aaa; + background-color: #f9f9f9; + padding: 5px; + font-size: 95%; +} + +/* +** edit views etc +*/ +.special li { + line-height: 1.4em; + margin: 0; + padding: 0; +} + +/* +** keep the whitespace in front of the ^=, hides rule from konqueror +** this is css3, the validator doesn't like it when validating as css2 +*/ +#bodyContent a.external, +#bodyContent a[href ^="gopher://"] { + background: url(external.png) center right no-repeat; + padding: 0 13px; +} +.rtl #bodyContent a.external, +.rtl #bodyContent a[href ^="gopher://"] { + background-image: url(external-rtl.png); +} +#bodyContent a[href ^="https://"], +.link-https { + background: url(lock_icon.gif) center right no-repeat; + padding: 0 16px; +} +#bodyContent a[href ^="mailto:"], +.link-mailto { + background: url(mail_icon.gif) center right no-repeat; + padding: 0 18px; +} +#bodyContent a[href ^="news://"] { + background: url(news_icon.png) center right no-repeat; + padding: 0 18px; +} +#bodyContent a[href ^="ftp://"], +.link-ftp { + background: url(file_icon.gif) center right no-repeat; + padding: 0 18px; +} +#bodyContent a[href ^="irc://"], +#bodyContent a.extiw[href ^="irc://"], +.link-irc { + background: url(discussionitem_icon.gif) center right no-repeat; + padding: 0 18px; +} +#bodyContent a.external[href $=".ogg"], #bodyContent a.external[href $=".OGG"], +#bodyContent a.external[href $=".mid"], #bodyContent a.external[href $=".MID"], +#bodyContent a.external[href $=".midi"], #bodyContent a.external[href $=".MIDI"], +#bodyContent a.external[href $=".mp3"], #bodyContent a.external[href $=".MP3"], +#bodyContent a.external[href $=".wav"], #bodyContent a.external[href $=".WAV"], +#bodyContent a.external[href $=".wma"], #bodyContent a.external[href $=".WMA"], +.link-audio { + background: url("audio.png") center right no-repeat; + padding: 0 13px; +} +#bodyContent a.external[href $=".ogm"], #bodyContent a.external[href $=".OGM"], +#bodyContent a.external[href $=".avi"], #bodyContent a.external[href $=".AVI"], +#bodyContent a.external[href $=".mpeg"], #bodyContent a.external[href $=".MPEG"], +#bodyContent a.external[href $=".mpg"], #bodyContent a.external[href $=".MPG"], +.link-video { + background: url("video.png") center right no-repeat; + padding: 0 13px; +} +#bodyContent a.external[href $=".pdf"], #bodyContent a.external[href $=".PDF"], +#bodyContent a.external[href *=".pdf#"], #bodyContent a.external[href *=".PDF#"], +#bodyContent a.external[href *=".pdf?"], #bodyContent a.external[href *=".PDF?"], +.link-document { + background: url("document.png") center right no-repeat; + padding: 0 12px; +} + +/* for rtl wikis */ +.rtl #bodyContent a.external { + background-position: left; + padding-right: 0; +} +.rtl a.feedlink { + background-position: right; + padding-right: 16px; + padding-left: 0; +} + +/* correction for ltr wikis */ +.ltr #bodyContent a.external { + padding-left: 0; +} + +/* disable interwiki styling */ +#bodyContent a.extiw, +#bodyContent a.extiw:active { + color: #36b; + background: none; + padding: 0; +} +#bodyContent a.external { + color: #36b; +} +/* this can be used in the content area to switch off +special external link styling */ +#bodyContent .plainlinks a { + background: none !important; + padding: 0 !important; +} +/* +** Structural Elements +*/ + +/* +** general portlet styles (elements in the quickbar) +*/ +.portlet { + border: none; + margin: 0 0 .5em; + padding: 0; + float: none; + width: 11.6em; + overflow: hidden; +} +.portlet h4 { + font-size: 95%; + font-weight: normal; + white-space: nowrap; +} +.portlet h5 { + background: transparent; + padding: 0 1em 0 .5em; + display: inline; + height: 1em; + text-transform: lowercase; + font-size: 91%; + font-weight: normal; + white-space: nowrap; +} +.portlet h6 { + background: #ffae2e; + border: 1px solid #2f6fab; + border-style: solid solid none solid; + padding: 0 1em 0 1em; + text-transform: lowercase; + display: block; + font-size: 1em; + height: 1.2em; + font-weight: normal; + white-space: nowrap; +} +.pBody { + font-size: 95%; + background-color: white; + color: black; + border-collapse: collapse; + border: 1px solid #aaa; + padding: 0 .8em .3em .5em; +} +.portlet h1, +.portlet h2, +.portlet h3, +.portlet h4 { + margin: 0; + padding: 0; +} +.portlet ul { + line-height: 1.5em; + list-style-type: square; + list-style-image: url(bullet.gif); + font-size: 95%; +} +.portlet li { + padding: 0; + margin: 0; +} + +/* +** Logo properties +*/ + +#p-logo { + top: 0; + left: 0; + position: absolute; /*needed to use z-index */ + z-index: 3; + height: 155px; + width: 12em; + overflow: visible; +} +#p-logo h5 { + display: none; +} +#p-logo a, +#p-logo a:hover { + display: block; + height: 155px; + width: 12.2em; + background-repeat: no-repeat; + background-position: 35% 50% !important; + text-decoration: none; +} + +/* +** Search portlet +*/ +#p-search { + position: relative; + z-index: 3; +} +input.searchButton { + margin-top: 1px; + font-size: 95%; +} +#searchGoButton { + padding-left: .5em; + padding-right: .5em; + font-weight: bold; +} +#searchInput { + width: 10.9em; + margin: 0; + font-size: 95%; +} +#p-search .pBody { + padding: .5em .4em .4em .4em; + text-align: center; +} +#p-search #searchform div div { + margin-top: .4em; + font-size: 95%; +} +/* +** the personal toolbar +*/ +#p-personal { + position: absolute; + left: 0; + top: 0; + z-index: 0; +} +#p-personal { + width: 100%; + white-space: nowrap; + padding: 0; + margin: 0; + border: none; + background: none; + overflow: visible; + line-height: 1.2em; +} +#p-personal h5 { + display: none; +} +#p-personal .portlet, +#p-personal .pBody { + z-index: 0; + padding: 0; + margin: 0; + border: none; + overflow: visible; + background: none; +} +/* this is the ul contained in the portlet */ +#p-personal ul { + border: none; + line-height: 1.4em; + color: #2f6fab; + padding: 0 2em 0 3em; + margin: 0; + text-align: right; + list-style: none; + z-index: 0; + background: none; + cursor: default; +} +#p-personal li { + z-index: 0; + border: none; + padding: 0; + display: inline; + color: #2f6fab; + margin-left: 1em; + line-height: 1.2em; + background: none; +} +#p-personal li a { + text-decoration: none; + color: #005896; + padding-bottom: .2em; + background: none; +} +#p-personal li a:hover { + background-color: white; + padding-bottom: .2em; + text-decoration: none; +} +#p-personal li.active a:hover { + background-color: transparent; +} +/* the icon in front of the user name, single quotes +in bg url to hide it from iemac */ +li#pt-userpage, +li#pt-anonuserpage, +li#pt-login { + background: url(user.gif) top left no-repeat; + padding-left: 20px; + text-transform: none; +} +#p-personal ul { + text-transform: lowercase; +} +#p-personal li.active { + font-weight: bold; +} +/* +** the page-related actions- page/talk, edit etc +*/ +#p-cactions { + position: absolute; + top: 1.3em; + left: 11.5em; + margin: 0; + white-space: nowrap; + width: 76%; + line-height: 1.1em; + overflow: visible; + background: none; + border-collapse: collapse; + padding-left: 1em; + list-style: none; + font-size: 95%; +} +#p-cactions ul { + list-style: none; +} +#p-cactions li { + display: inline; + border: 1px solid #aaa; + border-bottom: none; + padding: 0 0 .1em 0; + margin: 0 .3em 0 0; + overflow: visible; + background: white; +} +#p-cactions li.selected { + border-color: #fabd23; + padding: 0 0 .2em 0; + font-weight: bold; +} +#p-cactions li a { + background-color: #fbfbfb; + color: #002bb8; + border: none; + padding: 0 .8em .3em; + position: relative; + z-index: 0; + margin: 0; + text-decoration: none; +} +#p-cactions li.selected a { + z-index: 3; + padding: 0 1em .2em!important; + background-color: white; +} +#p-cactions .new a { + color: #ba0000; +} +#p-cactions li a:hover { + z-index: 3; + text-decoration: none; + background-color: white; +} +#p-cactions h5 { + display: none; +} +#p-cactions li.istalk { + margin-right: 0; +} +#p-cactions li.istalk a { + padding-right: .5em; +} +#p-cactions #ca-addsection a { + padding-left: .4em; + padding-right: .4em; +} +/* offsets to distinguish the tab groups */ +li#ca-talk { + margin-right: 1.6em; +} +li#ca-watch, li#ca-unwatch, li#ca-varlang-0, li#ca-print { + margin-left: 1.6em; +} +#p-cactions .pBody { + font-size: 1em; + background-color: transparent; + color: inherit; + border-collapse: inherit; + border: 0; + padding: 0; +} +#p-cactions .hiddenStructure { + display: none; +} +#p-cactions li a { + text-transform: lowercase; +} + +#p-lang { + position: relative; + z-index: 3; +} + +/* TODO: #t-iscite is only used by the Cite extension, come up with some + * system which allows extensions to add to this file on the fly + */ +#t-ispermalink, #t-iscite { + color: #999; +} +/* +** footer +*/ +#footer { + background-color: white; + border-top: 1px solid #fabd23; + border-bottom: 1px solid #fabd23; + margin: .6em 0 1em 0; + padding: .4em 0 1.2em 0; + text-align: center; + font-size: 90%; +} +#footer li { + display: inline; + margin: 0 1.3em; +} +#f-poweredbyico, #f-copyrightico { + margin: 0 8px; + position: relative; + top: -2px; /* Bump it up just a tad */ +} +#f-poweredbyico { + float: right; + height: 1%; +} +#f-copyrightico { + float: left; + height: 1%; +} + +/* js pref toc */ +#preftoc { + margin: 0; + padding: 0; + width: 100%; + clear: both; +} +#preftoc li { + background-color: #f0f0f0; + color: #000; +} +#preftoc li { + margin: 1px -2px 1px 2px; + float: left; + padding: 2px 0 3px 0; + border: 1px solid #fff; + border-right-color: #716f64; + border-bottom: 0; + position: relative; + white-space: nowrap; + list-style-type: none; + list-style-image: none; + z-index: 3; +} +#preftoc li.selected { + font-weight: bold; + background-color: #f9f9f9; + border: 1px solid #aaa; + border-bottom: none; + cursor: default; + top: 1px; + padding-top: 2px; + margin-right: -3px; +} +#preftoc > li.selected { + top: 2px; +} +#preftoc a, +#preftoc a:active { + display: block; + color: #000; + padding: 0 .7em; + position: relative; + text-decoration: none; +} +#preftoc li.selected a { + cursor: default; + text-decoration: none; +} +#prefcontrol { + padding-top: 2em; + clear: both; +} +#preferences { + margin: 0; + border: 1px solid #aaa; + clear: both; + padding: 1.5em; + background-color: #F9F9F9; +} +.prefsection { + border: none; + padding: 0; + margin: 0; +} +.prefsection fieldset { + border: 1px solid #aaa; + float: left; + margin-right: 2em; +} +.prefsection legend { + font-weight: bold; +} +.prefsection table, .prefsection legend { + background-color: #F9F9F9; +} +.mainLegend { + display: none; +} +div.prefsectiontip { + font-size: x-small; + padding: .2em 2em; + color: #666; +} +.btnSavePrefs { + font-weight: bold; + padding-left: .3em; + padding-right: .3em; +} + +.preferences-login { + clear: both; + margin-bottom: 1.5em; +} + +.prefcache { + font-size: 90%; + margin-top: 2em; +} + +div#userloginForm form, +div#userlogin form#userlogin2 { + margin: 0 3em 1em 0; + border: 1px solid #aaa; + clear: both; + padding: 1.5em 2em; + background-color: #f9f9f9; + float: left; +} +.rtl div#userloginForm form, +.rtl div#userlogin form#userlogin2 { + float: right; +} + +div#userloginForm table, +div#userlogin form#userlogin2 table { + background-color: #f9f9f9; +} + +div#userloginForm h2, +div#userlogin form#userlogin2 h2 { + padding-top: 0; +} + +div#userlogin .captcha, +div#userloginForm .captcha { + border: 1px solid #bbb; + padding: 1.5em 2em; + background-color: white; +} + +#loginend, #signupend { + clear: both; +} + +#userloginprompt, #languagelinks { + font-size: 85%; +} + +#login-sectiontip { + font-size: 85%; + line-height: 1.2; + padding-top: 2em; +} + +#userlogin .loginText, #userlogin .loginPassword { + width: 12em; +} + +#userloginlink a, #wpLoginattempt, #wpCreateaccount { + font-weight: bold; +} + +/* +** IE/Mac fixes, hope to find a validating way to move this +** to a separate stylesheet. This would work but doesn't validate: +** @import("IEMacFixes.css"); +*/ +/* tabs: border on the a, not the div */ +* > html #p-cactions li { border: none; } +* > html #p-cactions li a { + border: 1px solid #aaa; + border-bottom: none; +} +* > html #p-cactions li.selected a { border-color: #fabd23; } +/* footer icons need a fixed width */ +* > html #f-poweredbyico, +* > html #f-copyrightico { width: 88px; } +* > html #bodyContent, +* > html #bodyContent pre { + overflow-x: auto; + width: 100%; + padding-bottom: 25px; +} + +/* more IE fixes */ +/* float/negative margin brokenness */ +* html #footer {margin-top: 0;} +* html #column-content { + display: inline; + margin-bottom: 0; +} +* html div.editsection { font-size: smaller; } +#pagehistory li.selected { position: relative; } + +/* Mac IE 5.0 fix; floated content turns invisible */ +* > html #column-content { + float: none; +} +* > html #column-one { + position: absolute; + left: 0; + top: 0; +} +* > html #footer { + margin-left: 13.2em; +} +.redirectText { + font-size: 150%; + margin: 5px; +} + +.printfooter { + display: none; +} + +.not-patrolled { + background-color: #ffa; +} +div.patrollink { + clear: both; + font-size: 75%; + text-align: right; +} +span.newpage, span.minor, span.bot { + font-weight: bold; +} +span.unpatrolled { + font-weight: bold; + color: red; +} + +.sharedUploadNotice { + font-style: italic; +} + +span.updatedmarker { + color: black; + background-color: #0f0; +} + +table.gallery { + border: 1px solid #ccc; + margin: 2px; + padding: 2px; + background-color: white; +} + +table.gallery tr { + vertical-align: top; +} + +table.gallery td { + vertical-align: top; + background-color: #f9f9f9; + border: solid 2px white; +} +/* Keep this temporarily so that cached pages will display right */ +table.gallery td.galleryheader { + text-align: center; + font-weight: bold; +} +table.gallery caption { + font-weight: bold; +} + +div.gallerybox { + margin: 2px; +} + +div.gallerybox div.thumb { + text-align: center; + border: 1px solid #ccc; + margin: 2px; +} + +div.gallerytext { + overflow: hidden; + font-size: 94%; + padding: 2px 4px; +} + +span.comment { + font-style: italic; +} + +span.changedby { + font-size: 95%; +} + +.previewnote { + text-indent: 3em; + color: #c00; + border-bottom: 1px solid #aaa; + padding-bottom: 1em; + margin-bottom: 1em; +} + +.previewnote p { + margin: 0; + padding: 0; +} + +.editExternally { + border: 1px solid gray; + background-color: #ffffff; + padding: 3px; + margin-top: 0.5em; + float: left; + font-size: small; + text-align: center; +} +.editExternallyHelp { + font-style: italic; + color: gray; +} + +.toggle { + margin-left: 2em; + text-indent: -2em; +} + +/* Classes for EXIF data display */ +table.mw_metadata { + font-size: 0.8em; + margin-left: 0.5em; + margin-bottom: 0.5em; + width: 300px; +} + +table.mw_metadata caption { + font-weight: bold; +} + +table.mw_metadata th { + font-weight: normal; +} + +table.mw_metadata td { + padding: 0.1em; +} + +table.mw_metadata { + border: none; + border-collapse: collapse; +} + +table.mw_metadata td, table.mw_metadata th { + text-align: center; + border: 1px solid #aaaaaa; + padding-left: 0.1em; + padding-right: 0.1em; +} + +table.mw_metadata th { + background-color: #f9f9f9; +} + +table.mw_metadata td { + background-color: #fcfcfc; +} + +table.collapsed tr.collapsable { + display: none; +} + + +/* filetoc */ +ul#filetoc { + text-align: center; + border: 1px solid #aaaaaa; + background-color: #f9f9f9; + padding: 5px; + font-size: 95%; + margin-bottom: 0.5em; + margin-left: 0; + margin-right: 0; +} + +#filetoc li { + display: inline; + list-style-type: none; + padding-right: 2em; +} + +input#wpSummary { + width: 80%; +} + +/* @bug 1714 */ +input#wpSave, input#wpDiff { + margin-right: 0.33em; +} + +#wpSave { + font-weight: bold; +} + +/* Classes for article validation */ + +table.revisionform_default { + border: 1px solid #000000; +} + +table.revisionform_focus { + border: 1px solid #000000; + background-color:#00BBFF; +} + +tr.revision_tr_default { + background-color:#EEEEEE; +} + +tr.revision_tr_first { + background-color:#DDDDDD; +} + +p.revision_saved { + color: green; + font-weight:bold; +} + +#mw_trackbacks { + border: solid 1px #bbbbff; + background-color: #eeeeff; + padding: 0.2em; +} + + +/* Allmessages table */ + +#allmessagestable th { + background-color: #b2b2ff; +} + +#allmessagestable tr.orig { + background-color: #ffe2e2; +} + +#allmessagestable tr.new { + background-color: #e2ffe2; +} + +#allmessagestable tr.def { + background-color: #f0f0ff; +} + + +/* noarticletext */ +div.noarticletext { + border: 1px solid #ccc; + background: #fff; + padding: .2em 1em; + color: #000; +} + +div#searchTargetContainer { + left: 10px; + top: 10px; + width: 90%; + background: white; +} + +div#searchTarget { + padding: 3px; + margin: 5px; + background: #F0F0F0; + border: solid 1px blue; +} + +div#searchTarget ul li { + list-style: none; +} + +div#searchTarget ul li:before { + color: orange; + content: "\00BB \0020"; +} + +div#searchTargetHide { + float:right; + border:solid 1px black; + background:#DCDCDC; + padding:2px; +} + +#powersearch p { + margin-top:0px; +} + +div.multipageimagenavbox { + border: solid 1px silver; + padding: 4px; + margin: 1em; + background: #f0f0f0; +} + +div.multipageimagenavbox div.thumb { + border: none; + margin-left: 2em; + margin-right: 2em; +} + +div.multipageimagenavbox hr { + margin: 6px; +} + +table.multipageimage td { + text-align: center; +} + +/** Special:Version */ + +table#sv-ext, table#sv-hooks, table#sv-software { + margin: 1em; + padding:0em; +} + +#sv-ext td, #sv-hooks td, #sv-software td, +#sv-ext th, #sv-hooks th, #sv-software th { + border: 1px solid #A0A0A0; + padding: 0 0.15em 0 0.15em; +} +#sv-ext th, #sv-hooks th, #sv-software th { + background-color: #F0F0F0; + color: black; + padding: 0 0.15em 0 0.15em; +} +tr.sv-space{ + height: 0.8em; + border:none; +} +tr.sv-space td { display: none; } + +/* + Table pager (e.g. Special:Imagelist) + - remove underlines from the navigation link + - collapse borders + - set the borders to outsets (similar to Special:Allmessages) + - remove line wrapping for all td and th, set background color + - restore line wrapping for the last two table cells (description and size) +*/ +.TablePager { min-width: 80%; } +.TablePager_nav a { text-decoration: none; } +.TablePager { border-collapse: collapse; } +.TablePager, .TablePager td, .TablePager th { + border: 1px solid #aaaaaa; + padding: 0 0.15em 0 0.15em; +} +.TablePager th { background-color: #eeeeff } +.TablePager td { background-color: #ffffff } +.TablePager tr:hover td { background-color: #eeeeff } + +.imagelist td, .imagelist th { white-space: nowrap } +.imagelist .TablePager_col_links { background-color: #eeeeff } +.imagelist .TablePager_col_img_description { white-space: normal } +.imagelist th.TablePager_sort { background-color: #ccccff } + +.templatesUsed { margin-top: 1.5em; } + +.mw-summary-preview { + margin: 0.1em 0; +} + +/* Friendlier slave lag warnings */ +div.mw-lag-warn-normal, +div.mw-lag-warn-high { + padding: 3px; + text-align: center; + margin: 3px auto; +} +div.mw-lag-warn-normal { + border: 1px solid #FFCC66; + background-color: #FFFFCC; +} +div.mw-lag-warn-high { + font-weight: bold; + border: 2px solid #FF0033; + background-color: #FFCCCC; +} + +.MediaTransformError { + background-color: #ccc; + padding: 0.1em; +} +.MediaTransformError td { + text-align: center; + vertical-align: middle; + font-size: 90%; +} + +/** Special:Search stuff */ +div#mw-search-interwiki-caption { + text-align: center; + font-weight: bold; + font-size: 95%; +} + +.mw-search-interwiki-project { + font-size: 97%; + text-align: left; + padding-left: 0.2em; + padding-right: 0.15em; + padding-bottom: 0.2em; + padding-top: 0.15em; + background: #cae8ff; +} + +/* God-damned hack for the crappy layout */ +.os-suggest { + font-size: 127%; +} diff --git a/wget/https/wiki.gruntnetwork.com/skins/monobook/news_icon.png b/wget/https/wiki.gruntnetwork.com/skins/monobook/news_icon.png Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/monobook/user.gif b/wget/https/wiki.gruntnetwork.com/skins/monobook/user.gif Binary files differ. diff --git a/wget/https/wiki.gruntnetwork.com/skins/monobook/video.png b/wget/https/wiki.gruntnetwork.com/skins/monobook/video.png Binary files differ. diff --git a/wget/wget--cmdline b/wget/wget--cmdline @@ -0,0 +1 @@ +wget --warc-header=operator:\ Suzanne\ Soy\ webarcs@suzanne.soy --warc-cdx --warc-file=wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc --convert-links --adjust-extension --backup-converted -U Mozilla/5.0\ \(Windows\;\ U\;\ Windows\ NT\ 6.1\;\ en-US\)\ AppleWebKit/533.20.25\ \(KHTML\,\ like\ Gecko\)\ Version/5.0.4\ Safari/533.20.27 --mirror --page-requisites --waitretry 5 --timeout=60 --tries=20 --output-file=wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.log --follow-ftp --no-glob --protocol-directories --retry-connrefused --wait=0.05 --random-wait --span-hosts --domains=wiki.gruntnetwork.com --accept=\* https://wiki.gruntnetwork.com/ diff --git a/wget/wget--version b/wget/wget--version @@ -0,0 +1,18 @@ +GNU Wget 1.20.3 built on linux-gnu. + +-cares +digest -gpgme +https +ipv6 +iri +large-file -metalink +nls ++ntlm +opie -psl +ssl/openssl + +Wgetrc: + /nix/store/7khlwgczly5i4ii8hvdnr32dxg4v1fn4-wget-1.20.3/etc/wgetrc (system) +Locale: + /nix/store/7khlwgczly5i4ii8hvdnr32dxg4v1fn4-wget-1.20.3/share/locale + +Copyright (C) 2015 Free Software Foundation, Inc. +License GPLv3+: GNU GPL version 3 or later +<http://www.gnu.org/licenses/gpl.html>. +This is free software: you are free to change and redistribute it. +There is NO WARRANTY, to the extent permitted by law. + +Originally written by Hrvoje Niksic <hniksic@xemacs.org>. +Please send bug reports and questions to <bug-wget@gnu.org>. diff --git a/wget/wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.log b/wget/wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.log @@ -0,0 +1,1919 @@ +Opening WARC file ‘wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz’. + +--2023-05-04 12:36:39-- https://wiki.gruntnetwork.com/ +Resolving wiki.gruntnetwork.com (wiki.gruntnetwork.com)... 212.85.158.4, 2a02:2178:1000:201::4 +Connecting to wiki.gruntnetwork.com (wiki.gruntnetwork.com)|212.85.158.4|:443... connected. +HTTP request sent, awaiting response... 301 Moved Permanently +Location: https://wiki.gruntnetwork.com/Accueil [following] + + 0K 0.00 =0s + +--2023-05-04 12:36:39-- https://wiki.gruntnetwork.com/Accueil +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.html’ + + 0K .......... ... 107M=0s + +2023-05-04 12:36:42 (107 MB/s) - ‘https/wiki.gruntnetwork.com/index.html’ saved [14056] + +Loading robots.txt; please ignore errors. +--2023-05-04 12:36:42-- https://wiki.gruntnetwork.com/robots.txt +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 301 Moved Permanently +Location: https://wiki.gruntnetwork.com/Robots.txt [following] + + 0K 0.00 =0s + +--2023-05-04 12:36:43-- https://wiki.gruntnetwork.com/Robots.txt +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... 72.8M=0s + +2023-05-04 12:36:45 ERROR 404: Not Found. + +Loading robots.txt; please ignore errors. +--2023-05-04 12:36:45-- http://wiki.gruntnetwork.com/robots.txt +Connecting to wiki.gruntnetwork.com (wiki.gruntnetwork.com)|212.85.158.4|:80... connected. +HTTP request sent, awaiting response... 301 Moved Permanently +Location: http://wiki.gruntnetwork.com/Robots.txt [following] + + 0K 0.00 =0s + +--2023-05-04 12:36:45-- http://wiki.gruntnetwork.com/Robots.txt +Reusing existing connection to wiki.gruntnetwork.com:80. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... 65.4M=0s + +2023-05-04 12:36:46 ERROR 404: Not Found. + +--2023-05-04 12:36:46-- https://wiki.gruntnetwork.com/favicon.ico +Connecting to wiki.gruntnetwork.com (wiki.gruntnetwork.com)|212.85.158.4|:443... connected. +HTTP request sent, awaiting response... 301 Moved Permanently +Location: https://wiki.gruntnetwork.com/Favicon.ico [following] + + 0K 0.00 =0s + +--2023-05-04 12:36:46-- https://wiki.gruntnetwork.com/Favicon.ico +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... 98.3M=0s + +2023-05-04 12:36:47 ERROR 404: Not Found. + +--2023-05-04 12:36:47-- https://wiki.gruntnetwork.com/opensearch_desc.php5 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [application/opensearchdescription+xml] +Saving to: ‘https/wiki.gruntnetwork.com/opensearch_desc.php5’ + + 0K 23.7M=0s + +2023-05-04 12:36:47 (23.7 MB/s) - ‘https/wiki.gruntnetwork.com/opensearch_desc.php5’ saved [746] + +--2023-05-04 12:36:47-- https://wiki.gruntnetwork.com/index.php5?title=Accueil&action=creativecommons +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [application/rdf+xml] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=creativecommons’ + + 0K . 41.5M=0s + +2023-05-04 12:36:47 (41.5 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=creativecommons’ saved [1262] + +--2023-05-04 12:36:47-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [application/xml] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Modifications_récentes&feed=rss’ + + 0K 32.1M=0s + +2023-05-04 12:36:48 (32.1 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Modifications_récentes&feed=rss’ saved [582] + +--2023-05-04 12:36:48-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [application/xml] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Modifications_récentes&feed=atom’ + + 0K 44.0M=0s + +2023-05-04 12:36:48 (44.0 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Modifications_récentes&feed=atom’ saved [808] + +--2023-05-04 12:36:48-- https://wiki.gruntnetwork.com/skins/common/shared.css?207 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 6690 (6.5K) [text/css] +Saving to: ‘https/wiki.gruntnetwork.com/skins/common/shared.css?207.css’ + + 0K ...... 100% 235M=0s + +2023-05-04 12:36:49 (235 MB/s) - ‘https/wiki.gruntnetwork.com/skins/common/shared.css?207.css’ saved [6690/6690] + +--2023-05-04 12:36:49-- https://wiki.gruntnetwork.com/skins/common/commonPrint.css?207 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 4852 (4.7K) [text/css] +Saving to: ‘https/wiki.gruntnetwork.com/skins/common/commonPrint.css?207.css’ + + 0K .... 100% 274M=0s + +2023-05-04 12:36:49 (274 MB/s) - ‘https/wiki.gruntnetwork.com/skins/common/commonPrint.css?207.css’ saved [4852/4852] + +--2023-05-04 12:36:49-- https://wiki.gruntnetwork.com/skins/monobook/main.css?207 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 27459 (27K) [text/css] +Saving to: ‘https/wiki.gruntnetwork.com/skins/monobook/main.css?207.css’ + + 0K .......... .......... ...... 100% 85.5M=0s + +2023-05-04 12:36:49 (85.5 MB/s) - ‘https/wiki.gruntnetwork.com/skins/monobook/main.css?207.css’ saved [27459/27459] + +--2023-05-04 12:36:49-- https://wiki.gruntnetwork.com/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/css] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000.css’ + + 0K 1.92M=0s + +2023-05-04 12:36:49 (1.92 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000.css’ saved [62] + +--2023-05-04 12:36:49-- https://wiki.gruntnetwork.com/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/css] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000.css’ + + 0K 1.57M=0s + +2023-05-04 12:36:50 (1.57 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000.css’ saved [49] + +--2023-05-04 12:36:50-- https://wiki.gruntnetwork.com/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/css] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000.css’ + + 0K 1.42M=0s + +2023-05-04 12:36:50 (1.42 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000.css’ saved [77] + +--2023-05-04 12:36:50-- https://wiki.gruntnetwork.com/index.php5?title=-&action=raw&maxage=18000&gen=css +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/css] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=-&action=raw&maxage=18000&gen=css.css’ + + 0K 2.68M=0s + +2023-05-04 12:36:50 (2.68 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=-&action=raw&maxage=18000&gen=css.css’ saved [75] + +--2023-05-04 12:36:50-- https://wiki.gruntnetwork.com/skins/common/wikibits.js?207 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 30339 (30K) [application/javascript] +Saving to: ‘https/wiki.gruntnetwork.com/skins/common/wikibits.js?207’ + + 0K .......... .......... ......... 100% 21.5M=0.001s + +2023-05-04 12:36:50 (21.5 MB/s) - ‘https/wiki.gruntnetwork.com/skins/common/wikibits.js?207’ saved [30339/30339] + +--2023-05-04 12:36:51-- https://wiki.gruntnetwork.com/skins/common/ajax.js?207 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 4777 (4.7K) [application/javascript] +Saving to: ‘https/wiki.gruntnetwork.com/skins/common/ajax.js?207’ + + 0K .... 100% 301M=0s + +2023-05-04 12:36:51 (301 MB/s) - ‘https/wiki.gruntnetwork.com/skins/common/ajax.js?207’ saved [4777/4777] + +--2023-05-04 12:36:51-- https://wiki.gruntnetwork.com/index.php5?title=-&action=raw&gen=js&useskin=monobook +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/javascript] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=-&action=raw&gen=js&useskin=monobook’ + + 0K 18.4M=0s + +2023-05-04 12:36:51 (18.4 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=-&action=raw&gen=js&useskin=monobook’ saved [355] + +--2023-05-04 12:36:51-- http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur +Connecting to wiki.gruntnetwork.com (wiki.gruntnetwork.com)|212.85.158.4|:80... connected. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘http/wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_Développeur.html’ + + 0K ......... 43.3M=0s + +2023-05-04 12:36:52 (43.3 MB/s) - ‘http/wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_Développeur.html’ saved [9858] + +no-follow attribute found in http/wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_Développeur.html. Will not follow any links on this page +--2023-05-04 12:36:52-- https://wiki.gruntnetwork.com/Pr%C3%A9requis +Connecting to wiki.gruntnetwork.com (wiki.gruntnetwork.com)|212.85.158.4|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Prérequis.html’ + + 0K .......... ........ 394K=0.05s + +2023-05-04 12:36:52 (394 KB/s) - ‘https/wiki.gruntnetwork.com/Prérequis.html’ saved [19406] + +--2023-05-04 12:36:52-- https://wiki.gruntnetwork.com/Conventions +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Conventions.html’ + + 0K .......... . 51.6M=0s + +2023-05-04 12:36:53 (51.6 MB/s) - ‘https/wiki.gruntnetwork.com/Conventions.html’ saved [12195] + +--2023-05-04 12:36:53-- https://wiki.gruntnetwork.com/Environnement_de_programmation +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Environnement_de_programmation.html’ + + 0K .......... .... 50.7M=0s + +2023-05-04 12:36:53 (50.7 MB/s) - ‘https/wiki.gruntnetwork.com/Environnement_de_programmation.html’ saved [15193] + +--2023-05-04 12:36:53-- https://wiki.gruntnetwork.com/Liens +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Liens.html’ + + 0K .......... .......... .... 1.28M=0.02s + +2023-05-04 12:36:54 (1.28 MB/s) - ‘https/wiki.gruntnetwork.com/Liens.html’ saved [25078] + +--2023-05-04 12:36:54-- https://wiki.gruntnetwork.com/Notes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Notes.html’ + + 0K .......... . 54.1M=0s + +2023-05-04 12:36:54 (54.1 MB/s) - ‘https/wiki.gruntnetwork.com/Notes.html’ saved [11525] + +--2023-05-04 12:36:54-- https://wiki.gruntnetwork.com/Discussion:Accueil +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Discussion:Accueil.html’ + + 0K .......... . 53.2M=0s + +2023-05-04 12:36:55 (53.2 MB/s) - ‘https/wiki.gruntnetwork.com/Discussion:Accueil.html’ saved [11576] + +--2023-05-04 12:36:55-- https://wiki.gruntnetwork.com/index.php5?title=Accueil&action=edit +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=edit.html’ + + 0K .......... . 66.2M=0s + +2023-05-04 12:36:56 (66.2 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=edit.html’ saved [11548] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=edit.html. Will not follow any links on this page +--2023-05-04 12:36:56-- https://wiki.gruntnetwork.com/index.php5?title=Accueil&action=history +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=history.html’ + + 0K .......... .... 46.1M=0s + +2023-05-04 12:36:56 (46.1 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=history.html’ saved [14421] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=history.html. Will not follow any links on this page +--2023-05-04 12:36:56-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Accueil +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Accueil.html’ + + 0K .......... 41.4M=0s + +2023-05-04 12:36:57 (41.4 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Accueil.html’ saved [10848] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Accueil.html. Will not follow any links on this page +--2023-05-04 12:36:57-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Accueil +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Accueil.html’ + + 0K .......... 37.4M=0s + +2023-05-04 12:36:57 (37.4 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Accueil.html’ saved [10906] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Accueil.html. Will not follow any links on this page +--2023-05-04 12:36:57-- https://wiki.gruntnetwork.com/skins/common/images/wiki.png +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 24954 (24K) [image/png] +Saving to: ‘https/wiki.gruntnetwork.com/skins/common/images/wiki.png’ + + 0K .......... .......... .... 100% 59.0M=0s + +2023-05-04 12:36:57 (59.0 MB/s) - ‘https/wiki.gruntnetwork.com/skins/common/images/wiki.png’ saved [24954/24954] + +--2023-05-04 12:36:57-- https://wiki.gruntnetwork.com/Gruntnetwork:Accueil +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... 68.4M=0s + +2023-05-04 12:36:58 ERROR 404: Not Found. + +--2023-05-04 12:36:58-- https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... 55.9M=0s + +2023-05-04 12:36:58 ERROR 404: Not Found. + +--2023-05-04 12:36:59-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Modifications_r%C3%A9centes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Modifications_récentes.html’ + + 0K .......... ... 38.1M=0s + +2023-05-04 12:36:59 (38.1 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Modifications_récentes.html’ saved [13774] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Modifications_récentes.html. Will not follow any links on this page +--2023-05-04 12:36:59-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Page_au_hasard +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 302 Moved Temporarily +Location: https://wiki.gruntnetwork.com/Pr%C3%A9requis [following] + + 0K 0.00 =0s + +--2023-05-04 12:36:59-- https://wiki.gruntnetwork.com/Pr%C3%A9requis +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Page_au_hasard.html’ + + 0K .......... ........ 29.8M=0.001s + +2023-05-04 12:37:00 (29.8 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Page_au_hasard.html’ saved [19406] + +--2023-05-04 12:37:00-- https://wiki.gruntnetwork.com/Aide:Accueil +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... 53.1M=0s + +2023-05-04 12:37:00 ERROR 404: Not Found. + +--2023-05-04 12:37:00-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Accueil +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Accueil.html’ + + 0K .......... 86.6M=0s + +2023-05-04 12:37:01 (86.6 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Accueil.html’ saved [11204] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Accueil.html. Will not follow any links on this page +--2023-05-04 12:37:01-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Accueil +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Accueil.html’ + + 0K .......... .... 47.2M=0s + +2023-05-04 12:37:02 (47.2 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Accueil.html’ saved [14621] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Accueil.html. Will not follow any links on this page +--2023-05-04 12:37:02-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_sp%C3%A9ciales +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Pages_spéciales.html’ + + 0K .......... .......... 20.5M=0.001s + +2023-05-04 12:37:02 (20.5 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Pages_spéciales.html’ saved [21267] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_spéciales.html. Will not follow any links on this page +--2023-05-04 12:37:02-- https://wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes.html’ + + 0K .......... ... 42.8M=0s + +2023-05-04 12:37:03 (42.8 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes.html’ saved [13817] + +--2023-05-04 12:37:03-- https://wiki.gruntnetwork.com/index.php5?title=Accueil&oldid=11737 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Accueil&oldid=11737.html’ + + 0K .......... .... 39.1M=0s + +2023-05-04 12:37:04 (39.1 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Accueil&oldid=11737.html’ saved [14964] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Accueil&oldid=11737.html. Will not follow any links on this page +--2023-05-04 12:37:04-- https://wiki.gruntnetwork.com/skins/common/images/poweredby_mediawiki_88x31.png +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 1933 (1.9K) [image/png] +Saving to: ‘https/wiki.gruntnetwork.com/skins/common/images/poweredby_mediawiki_88x31.png’ + + 0K . 100% 214M=0s + +2023-05-04 12:37:04 (214 MB/s) - ‘https/wiki.gruntnetwork.com/skins/common/images/poweredby_mediawiki_88x31.png’ saved [1933/1933] + +--2023-05-04 12:37:04-- https://wiki.gruntnetwork.com/skins/common/images/gnu-fdl.png +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 1748 (1.7K) [image/png] +Saving to: ‘https/wiki.gruntnetwork.com/skins/common/images/gnu-fdl.png’ + + 0K . 100% 104M=0s + +2023-05-04 12:37:04 (104 MB/s) - ‘https/wiki.gruntnetwork.com/skins/common/images/gnu-fdl.png’ saved [1748/1748] + +--2023-05-04 12:37:04-- https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... . 55.0M=0s + +2023-05-04 12:37:04 ERROR 404: Not Found. + +--2023-05-04 12:37:04-- https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... 46.6M=0s + +2023-05-04 12:37:05 ERROR 404: Not Found. + +--2023-05-04 12:37:05-- https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... . 43.7M=0s + +2023-05-04 12:37:05 ERROR 404: Not Found. + +--2023-05-04 12:37:05-- https://wiki.gruntnetwork.com/skins/common/images/feed-icon.png +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 557 [image/png] +Saving to: ‘https/wiki.gruntnetwork.com/skins/common/images/feed-icon.png’ + + 0K 100% 43.8M=0s + +2023-05-04 12:37:05 (43.8 MB/s) - ‘https/wiki.gruntnetwork.com/skins/common/images/feed-icon.png’ saved [557/557] + +--2023-05-04 12:37:06-- https://wiki.gruntnetwork.com/skins/monobook/headbg.jpg +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 7881 (7.7K) [image/jpeg] +Saving to: ‘https/wiki.gruntnetwork.com/skins/monobook/headbg.jpg’ + + 0K ....... 100% 373M=0s + +2023-05-04 12:37:06 (373 MB/s) - ‘https/wiki.gruntnetwork.com/skins/monobook/headbg.jpg’ saved [7881/7881] + +--2023-05-04 12:37:06-- https://wiki.gruntnetwork.com/skins/monobook/bullet.gif +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 50 [image/gif] +Saving to: ‘https/wiki.gruntnetwork.com/skins/monobook/bullet.gif’ + + 0K 100% 3.80M=0s + +2023-05-04 12:37:06 (3.80 MB/s) - ‘https/wiki.gruntnetwork.com/skins/monobook/bullet.gif’ saved [50/50] + +--2023-05-04 12:37:06-- https://wiki.gruntnetwork.com/skins/monobook/external.png +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 165 [image/png] +Saving to: ‘https/wiki.gruntnetwork.com/skins/monobook/external.png’ + + 0K 100% 27.3M=0s + +2023-05-04 12:37:06 (27.3 MB/s) - ‘https/wiki.gruntnetwork.com/skins/monobook/external.png’ saved [165/165] + +--2023-05-04 12:37:06-- https://wiki.gruntnetwork.com/skins/monobook/external-rtl.png +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 198 [image/png] +Saving to: ‘https/wiki.gruntnetwork.com/skins/monobook/external-rtl.png’ + + 0K 100% 12.3M=0s + +2023-05-04 12:37:06 (12.3 MB/s) - ‘https/wiki.gruntnetwork.com/skins/monobook/external-rtl.png’ saved [198/198] + +--2023-05-04 12:37:06-- https://wiki.gruntnetwork.com/skins/monobook/lock_icon.gif +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 918 [image/gif] +Saving to: ‘https/wiki.gruntnetwork.com/skins/monobook/lock_icon.gif’ + + 0K 100% 78.4M=0s + +2023-05-04 12:37:06 (78.4 MB/s) - ‘https/wiki.gruntnetwork.com/skins/monobook/lock_icon.gif’ saved [918/918] + +--2023-05-04 12:37:06-- https://wiki.gruntnetwork.com/skins/monobook/mail_icon.gif +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 918 [image/gif] +Saving to: ‘https/wiki.gruntnetwork.com/skins/monobook/mail_icon.gif’ + + 0K 100% 47.8M=0s + +2023-05-04 12:37:06 (47.8 MB/s) - ‘https/wiki.gruntnetwork.com/skins/monobook/mail_icon.gif’ saved [918/918] + +--2023-05-04 12:37:06-- https://wiki.gruntnetwork.com/skins/monobook/news_icon.png +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 297 [image/png] +Saving to: ‘https/wiki.gruntnetwork.com/skins/monobook/news_icon.png’ + + 0K 100% 22.3M=0s + +2023-05-04 12:37:06 (22.3 MB/s) - ‘https/wiki.gruntnetwork.com/skins/monobook/news_icon.png’ saved [297/297] + +--2023-05-04 12:37:06-- https://wiki.gruntnetwork.com/skins/monobook/file_icon.gif +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 921 [image/gif] +Saving to: ‘https/wiki.gruntnetwork.com/skins/monobook/file_icon.gif’ + + 0K 100% 58.1M=0s + +2023-05-04 12:37:07 (58.1 MB/s) - ‘https/wiki.gruntnetwork.com/skins/monobook/file_icon.gif’ saved [921/921] + +--2023-05-04 12:37:07-- https://wiki.gruntnetwork.com/skins/monobook/discussionitem_icon.gif +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 949 [image/gif] +Saving to: ‘https/wiki.gruntnetwork.com/skins/monobook/discussionitem_icon.gif’ + + 0K 100% 83.6M=0s + +2023-05-04 12:37:07 (83.6 MB/s) - ‘https/wiki.gruntnetwork.com/skins/monobook/discussionitem_icon.gif’ saved [949/949] + +--2023-05-04 12:37:07-- https://wiki.gruntnetwork.com/skins/monobook/audio.png +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 312 [image/png] +Saving to: ‘https/wiki.gruntnetwork.com/skins/monobook/audio.png’ + + 0K 100% 17.5M=0s + +2023-05-04 12:37:07 (17.5 MB/s) - ‘https/wiki.gruntnetwork.com/skins/monobook/audio.png’ saved [312/312] + +--2023-05-04 12:37:07-- https://wiki.gruntnetwork.com/skins/monobook/video.png +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 215 [image/png] +Saving to: ‘https/wiki.gruntnetwork.com/skins/monobook/video.png’ + + 0K 100% 13.5M=0s + +2023-05-04 12:37:07 (13.5 MB/s) - ‘https/wiki.gruntnetwork.com/skins/monobook/video.png’ saved [215/215] + +--2023-05-04 12:37:07-- https://wiki.gruntnetwork.com/skins/monobook/document.png +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 270 [image/png] +Saving to: ‘https/wiki.gruntnetwork.com/skins/monobook/document.png’ + + 0K 100% 22.0M=0s + +2023-05-04 12:37:07 (22.0 MB/s) - ‘https/wiki.gruntnetwork.com/skins/monobook/document.png’ saved [270/270] + +--2023-05-04 12:37:07-- https://wiki.gruntnetwork.com/skins/monobook/user.gif +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: 923 [image/gif] +Saving to: ‘https/wiki.gruntnetwork.com/skins/monobook/user.gif’ + + 0K 100% 61.2M=0s + +2023-05-04 12:37:07 (61.2 MB/s) - ‘https/wiki.gruntnetwork.com/skins/monobook/user.gif’ saved [923/923] + +--2023-05-04 12:37:07-- https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&action=creativecommons +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [application/rdf+xml] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=creativecommons’ + + 0K . 47.5M=0s + +2023-05-04 12:37:08 (47.5 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=creativecommons’ saved [1279] + +--2023-05-04 12:37:08-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 302 Moved Temporarily +Location: https://wiki.gruntnetwork.com/Discussion:Pr%C3%A9requis [following] + + 0K 0.00 =0s + +--2023-05-04 12:37:08-- https://wiki.gruntnetwork.com/Discussion:Pr%C3%A9requis +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... 50.3M=0s + +2023-05-04 12:37:09 ERROR 404: Not Found. + +--2023-05-04 12:37:09-- https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&action=edit +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=edit.html’ + + 0K .......... ... 42.7M=0s + +2023-05-04 12:37:09 (42.7 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=edit.html’ saved [14236] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=edit.html. Will not follow any links on this page +--2023-05-04 12:37:09-- https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&action=history +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=history.html’ + + 0K .......... .... 61.5M=0s + +2023-05-04 12:37:10 (61.5 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=history.html’ saved [14910] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=history.html. Will not follow any links on this page +--2023-05-04 12:37:10-- https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... . 55.9M=0s + +2023-05-04 12:37:10 ERROR 404: Not Found. + +--2023-05-04 12:37:10-- https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... . 44.3M=0s + +2023-05-04 12:37:11 ERROR 404: Not Found. + +--2023-05-04 12:37:11-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Pr%C3%A9requis +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Prérequis.html’ + + 0K .......... 33.6M=0s + +2023-05-04 12:37:11 (33.6 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Prérequis.html’ saved [10862] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Prérequis.html. Will not follow any links on this page +--2023-05-04 12:37:11-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Pr%C3%A9requis +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Prérequis.html’ + + 0K .......... 58.0M=0s + +2023-05-04 12:37:12 (58.0 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Prérequis.html’ saved [10913] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Prérequis.html. Will not follow any links on this page +--2023-05-04 12:37:12-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Prérequis.html’ + + 0K .......... ... 38.6M=0s + +2023-05-04 12:37:12 (38.6 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Prérequis.html’ saved [13349] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Prérequis.html. Will not follow any links on this page +--2023-05-04 12:37:12-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Pr%C3%A9requis +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Prérequis.html’ + + 0K .......... .... 53.7M=0s + +2023-05-04 12:37:13 (53.7 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Prérequis.html’ saved [14783] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Prérequis.html. Will not follow any links on this page +--2023-05-04 12:37:13-- https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Prérequis&printable=yes.html’ + + 0K .......... ........ 110K=0.2s + +2023-05-04 12:37:15 (110 KB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Prérequis&printable=yes.html’ saved [18751] + +--2023-05-04 12:37:15-- https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&oldid=33 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Prérequis&oldid=33.html’ + + 0K .......... ......... 39.9M=0s + +2023-05-04 12:37:16 (39.9 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Prérequis&oldid=33.html’ saved [19882] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Prérequis&oldid=33.html. Will not follow any links on this page +--2023-05-04 12:37:16-- https://wiki.gruntnetwork.com/index.php5?title=Conventions&action=creativecommons +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [application/rdf+xml] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=creativecommons’ + + 0K . 79.2M=0s + +2023-05-04 12:37:16 (79.2 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=creativecommons’ saved [1274] + +--2023-05-04 12:37:16-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Conventions&action=edit&redlink=1 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 302 Moved Temporarily +Location: https://wiki.gruntnetwork.com/Discussion:Conventions [following] + + 0K 0.00 =0s + +--2023-05-04 12:37:17-- https://wiki.gruntnetwork.com/Discussion:Conventions +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... 54.4M=0s + +2023-05-04 12:37:17 ERROR 404: Not Found. + +--2023-05-04 12:37:17-- https://wiki.gruntnetwork.com/index.php5?title=Conventions&action=edit +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=edit.html’ + + 0K .......... . 41.0M=0s + +2023-05-04 12:37:18 (41.0 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=edit.html’ saved [11780] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=edit.html. Will not follow any links on this page +--2023-05-04 12:37:18-- https://wiki.gruntnetwork.com/index.php5?title=Conventions&action=history +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=history.html’ + + 0K .......... .... 63.4M=0s + +2023-05-04 12:37:18 (63.4 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=history.html’ saved [14774] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=history.html. Will not follow any links on this page +--2023-05-04 12:37:18-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Conventions +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Conventions.html’ + + 0K .......... 144M=0s + +2023-05-04 12:37:19 (144 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Conventions.html’ saved [10856] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Conventions.html. Will not follow any links on this page +--2023-05-04 12:37:19-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Conventions +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Conventions.html’ + + 0K .......... 48.1M=0s + +2023-05-04 12:37:19 (48.1 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Conventions.html’ saved [10910] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Conventions.html. Will not follow any links on this page +--2023-05-04 12:37:19-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Conventions +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Conventions.html’ + + 0K .......... ... 36.5M=0s + +2023-05-04 12:37:20 (36.5 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Conventions.html’ saved [13321] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Conventions.html. Will not follow any links on this page +--2023-05-04 12:37:20-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Conventions +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Conventions.html’ + + 0K .......... .... 54.8M=0s + +2023-05-04 12:37:20 (54.8 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Conventions.html’ saved [14725] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Conventions.html. Will not follow any links on this page +--2023-05-04 12:37:21-- https://wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes.html’ + + 0K .......... . 85.9M=0s + +2023-05-04 12:37:21 (85.9 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes.html’ saved [11540] + +--2023-05-04 12:37:21-- https://wiki.gruntnetwork.com/index.php5?title=Conventions&oldid=31 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Conventions&oldid=31.html’ + + 0K .......... .. 33.6M=0s + +2023-05-04 12:37:22 (33.6 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Conventions&oldid=31.html’ saved [12671] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Conventions&oldid=31.html. Will not follow any links on this page +--2023-05-04 12:37:22-- https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=creativecommons +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [application/rdf+xml] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=creativecommons’ + + 0K . 43.0M=0s + +2023-05-04 12:37:22 (43.0 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=creativecommons’ saved [1331] + +--2023-05-04 12:37:22-- https://wiki.gruntnetwork.com/GRUB +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/GRUB.html’ + + 0K .......... . 56.9M=0s + +2023-05-04 12:37:23 (56.9 MB/s) - ‘https/wiki.gruntnetwork.com/GRUB.html’ saved [11480] + +--2023-05-04 12:37:23-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Environnement_de_programmation&action=edit&redlink=1 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 302 Moved Temporarily +Location: https://wiki.gruntnetwork.com/Discussion:Environnement_de_programmation [following] + + 0K 0.00 =0s + +--2023-05-04 12:37:23-- https://wiki.gruntnetwork.com/Discussion:Environnement_de_programmation +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... . 55.3M=0s + +2023-05-04 12:37:24 ERROR 404: Not Found. + +--2023-05-04 12:37:24-- https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=edit +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=edit.html’ + + 0K .......... ... 51.8M=0s + +2023-05-04 12:37:24 (51.8 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=edit.html’ saved [13648] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=edit.html. Will not follow any links on this page +--2023-05-04 12:37:24-- https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=history +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=history.html’ + + 0K .......... ..... 41.7M=0s + +2023-05-04 12:37:25 (41.7 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=history.html’ saved [15719] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=history.html. Will not follow any links on this page +--2023-05-04 12:37:25-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Environnement_de_programmation +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Environnement_de_programmation.html’ + + 0K .......... 40.7M=0s + +2023-05-04 12:37:25 (40.7 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Environnement_de_programmation.html’ saved [10894] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Environnement_de_programmation.html. Will not follow any links on this page +--2023-05-04 12:37:25-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Environnement_de_programmation +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html’ + + 0K .......... 34.2M=0s + +2023-05-04 12:37:26 (34.2 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html’ saved [10929] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html. Will not follow any links on this page +--2023-05-04 12:37:26-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Environnement_de_programmation.html’ + + 0K .......... ... 39.4M=0s + +2023-05-04 12:37:26 (39.4 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Environnement_de_programmation.html’ saved [14005] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Environnement_de_programmation.html. Will not follow any links on this page +--2023-05-04 12:37:26-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Environnement_de_programmation +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Environnement_de_programmation.html’ + + 0K .......... .... 45.6M=0s + +2023-05-04 12:37:27 (45.6 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Environnement_de_programmation.html’ saved [15219] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Environnement_de_programmation.html. Will not follow any links on this page +--2023-05-04 12:37:27-- https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes.html’ + + 0K .......... .... 49.9M=0s + +2023-05-04 12:37:27 (49.9 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes.html’ saved [14538] + +--2023-05-04 12:37:27-- https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&oldid=27 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&oldid=27.html’ + + 0K .......... ..... 42.6M=0s + +2023-05-04 12:37:28 (42.6 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&oldid=27.html’ saved [15679] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&oldid=27.html. Will not follow any links on this page +--2023-05-04 12:37:28-- https://wiki.gruntnetwork.com/index.php5?title=Liens&action=creativecommons +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [application/rdf+xml] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Liens&action=creativecommons’ + + 0K . 41.6M=0s + +2023-05-04 12:37:28 (41.6 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Liens&action=creativecommons’ saved [1256] + +--2023-05-04 12:37:29-- https://wiki.gruntnetwork.com/Affichage_Graphique +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Affichage_Graphique.html’ + + 0K .......... . 49.5M=0s + +2023-05-04 12:37:29 (49.5 MB/s) - ‘https/wiki.gruntnetwork.com/Affichage_Graphique.html’ saved [11410] + +--2023-05-04 12:37:29-- https://wiki.gruntnetwork.com/Discussion:Liens +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Discussion:Liens.html’ + + 0K .......... . 48.5M=0s + +2023-05-04 12:37:30 (48.5 MB/s) - ‘https/wiki.gruntnetwork.com/Discussion:Liens.html’ saved [11268] + +--2023-05-04 12:37:30-- https://wiki.gruntnetwork.com/index.php5?title=Liens&action=edit +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Liens&action=edit.html’ + + 0K .......... ..... 48.6M=0s + +2023-05-04 12:37:30 (48.6 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Liens&action=edit.html’ saved [15760] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Liens&action=edit.html. Will not follow any links on this page +--2023-05-04 12:37:30-- https://wiki.gruntnetwork.com/index.php5?title=Liens&action=history +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Liens&action=history.html’ + + 0K .......... .... 3.98M=0.004s + +2023-05-04 12:37:31 (3.98 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Liens&action=history.html’ saved [14683] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Liens&action=history.html. Will not follow any links on this page +--2023-05-04 12:37:31-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Liens +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Liens.html’ + + 0K .......... 41.3M=0s + +2023-05-04 12:37:31 (41.3 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Liens.html’ saved [10844] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Liens.html. Will not follow any links on this page +--2023-05-04 12:37:31-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Liens +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Liens.html’ + + 0K .......... 53.1M=0s + +2023-05-04 12:37:32 (53.1 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Liens.html’ saved [10904] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Liens.html. Will not follow any links on this page +--2023-05-04 12:37:32-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Liens +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Liens.html’ + + 0K .......... .. 38.9M=0s + +2023-05-04 12:37:32 (38.9 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Liens.html’ saved [13105] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Liens.html. Will not follow any links on this page +--2023-05-04 12:37:33-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Liens +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Liens.html’ + + 0K .......... .... 45.2M=0s + +2023-05-04 12:37:33 (45.2 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Liens.html’ saved [14569] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Liens.html. Will not follow any links on this page +--2023-05-04 12:37:33-- https://wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes.html’ + + 0K .......... .......... ... 20.3M=0.001s + +2023-05-04 12:37:33 (20.3 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes.html’ saved [24423] + +--2023-05-04 12:37:34-- https://wiki.gruntnetwork.com/index.php5?title=Liens&oldid=73 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Liens&oldid=73.html’ + + 0K .......... .......... .... 15.8M=0.002s + +2023-05-04 12:37:34 (15.8 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Liens&oldid=73.html’ saved [25559] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Liens&oldid=73.html. Will not follow any links on this page +--2023-05-04 12:37:34-- https://wiki.gruntnetwork.com/index.php5?title=Notes&action=creativecommons +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [application/rdf+xml] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Notes&action=creativecommons’ + + 0K . 41.2M=0s + +2023-05-04 12:37:35 (41.2 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Notes&action=creativecommons’ saved [1256] + +--2023-05-04 12:37:35-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Notes&action=edit&redlink=1 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 302 Moved Temporarily +Location: https://wiki.gruntnetwork.com/Discussion:Notes [following] + + 0K 0.00 =0s + +--2023-05-04 12:37:35-- https://wiki.gruntnetwork.com/Discussion:Notes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... 114M=0s + +2023-05-04 12:37:36 ERROR 404: Not Found. + +--2023-05-04 12:37:36-- https://wiki.gruntnetwork.com/index.php5?title=Notes&action=edit +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Notes&action=edit.html’ + + 0K .......... . 3.33M=0.003s + +2023-05-04 12:37:36 (3.33 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Notes&action=edit.html’ saved [11345] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Notes&action=edit.html. Will not follow any links on this page +--2023-05-04 12:37:36-- https://wiki.gruntnetwork.com/index.php5?title=Notes&action=history +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Notes&action=history.html’ + + 0K .......... .... 40.6M=0s + +2023-05-04 12:37:37 (40.6 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Notes&action=history.html’ saved [14620] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Notes&action=history.html. Will not follow any links on this page +--2023-05-04 12:37:37-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Notes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Notes.html’ + + 0K .......... 47.4M=0s + +2023-05-04 12:37:37 (47.4 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Notes.html’ saved [10844] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Notes.html. Will not follow any links on this page +--2023-05-04 12:37:37-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Notes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Notes.html’ + + 0K .......... 46.9M=0s + +2023-05-04 12:37:38 (46.9 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Notes.html’ saved [10904] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Notes.html. Will not follow any links on this page +--2023-05-04 12:37:38-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Notes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Notes.html’ + + 0K .......... .. 39.4M=0s + +2023-05-04 12:37:38 (39.4 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Notes.html’ saved [12821] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Notes.html. Will not follow any links on this page +--2023-05-04 12:37:38-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Notes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Notes.html’ + + 0K .......... .... 47.6M=0s + +2023-05-04 12:37:39 (47.6 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Notes.html’ saved [14569] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Notes.html. Will not follow any links on this page +--2023-05-04 12:37:39-- https://wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes.html’ + + 0K .......... 44.0M=0s + +2023-05-04 12:37:39 (44.0 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes.html’ saved [10870] + +--2023-05-04 12:37:39-- https://wiki.gruntnetwork.com/index.php5?title=Notes&oldid=11738 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Notes&oldid=11738.html’ + + 0K .......... . 54.6M=0s + +2023-05-04 12:37:40 (54.6 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Notes&oldid=11738.html’ saved [12019] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Notes&oldid=11738.html. Will not follow any links on this page +--2023-05-04 12:37:40-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=creativecommons +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [application/rdf+xml] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=creativecommons’ + + 0K . 46.9M=0s + +2023-05-04 12:37:40 (46.9 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=creativecommons’ saved [1284] + +--2023-05-04 12:37:40-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=edit +Connecting to wiki.gruntnetwork.com (wiki.gruntnetwork.com)|212.85.158.4|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=edit.html’ + + 0K .......... 36.6M=0s + +2023-05-04 12:37:41 (36.6 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=edit.html’ saved [11243] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=edit.html. Will not follow any links on this page +--2023-05-04 12:37:41-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=history +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=history.html’ + + 0K .......... .... 3.90M=0.004s + +2023-05-04 12:37:41 (3.90 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=history.html’ saved [15022] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=history.html. Will not follow any links on this page +--2023-05-04 12:37:42-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Accueil +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Accueil.html’ + + 0K .......... 81.3M=0s + +2023-05-04 12:37:42 (81.3 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Accueil.html’ saved [10870] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Accueil.html. Will not follow any links on this page +--2023-05-04 12:37:42-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Accueil +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html’ + + 0K .......... 41.9M=0s + +2023-05-04 12:37:42 (41.9 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html’ saved [10917] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html. Will not follow any links on this page +--2023-05-04 12:37:42-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Accueil.html’ + + 0K .......... . 49.7M=0s + +2023-05-04 12:37:43 (49.7 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Accueil.html’ saved [11380] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Accueil.html. Will not follow any links on this page +--2023-05-04 12:37:43-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Discussion:Accueil +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Accueil.html’ + + 0K .......... .... 55.4M=0s + +2023-05-04 12:37:43 (55.4 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Accueil.html’ saved [14945] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Accueil.html. Will not follow any links on this page +--2023-05-04 12:37:43-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes.html’ + + 0K .......... 38.2M=0s + +2023-05-04 12:37:44 (38.2 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes.html’ saved [10921] + +--2023-05-04 12:37:44-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&oldid=11736 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&oldid=11736.html’ + + 0K .......... . 27.2M=0s + +2023-05-04 12:37:44 (27.2 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&oldid=11736.html’ saved [12058] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&oldid=11736.html. Will not follow any links on this page +--2023-05-04 12:37:44-- https://wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes&printable=yes.html’ + + 0K .......... ... 135M=0s + +2023-05-04 12:37:45 (135 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes&printable=yes.html’ saved [13817] + +--2023-05-04 12:37:45-- https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&printable=yes&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Prérequis&printable=yes&printable=yes.html’ + + 0K .......... ........ 9.65K=1.9s + +2023-05-04 12:37:48 (9.65 KB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Prérequis&printable=yes&printable=yes.html’ saved [18751] + +--2023-05-04 12:37:48-- https://wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes&printable=yes.html’ + + 0K .......... . 63.0M=0s + +2023-05-04 12:37:48 (63.0 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes&printable=yes.html’ saved [11540] + +--2023-05-04 12:37:49-- https://wiki.gruntnetwork.com/index.php5?title=GRUB&action=creativecommons +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [application/rdf+xml] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=creativecommons’ + + 0K . 66.4M=0s + +2023-05-04 12:37:49 (66.4 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=creativecommons’ saved [1253] + +--2023-05-04 12:37:49-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:GRUB&action=edit&redlink=1 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 302 Moved Temporarily +Location: https://wiki.gruntnetwork.com/Discussion:GRUB [following] + + 0K 0.00 =0s + +--2023-05-04 12:37:49-- https://wiki.gruntnetwork.com/Discussion:GRUB +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... 60.0M=0s + +2023-05-04 12:37:50 ERROR 404: Not Found. + +--2023-05-04 12:37:50-- https://wiki.gruntnetwork.com/index.php5?title=GRUB&action=edit +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=edit.html’ + + 0K .......... . 33.8M=0s + +2023-05-04 12:37:50 (33.8 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=edit.html’ saved [11283] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=edit.html. Will not follow any links on this page +--2023-05-04 12:37:50-- https://wiki.gruntnetwork.com/index.php5?title=GRUB&action=history +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=history.html’ + + 0K .......... .... 39.0M=0s + +2023-05-04 12:37:51 (39.0 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=history.html’ saved [14567] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=history.html. Will not follow any links on this page +--2023-05-04 12:37:51-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=GRUB +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=GRUB.html’ + + 0K .......... 43.0M=0s + +2023-05-04 12:37:51 (43.0 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=GRUB.html’ saved [10842] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=GRUB.html. Will not follow any links on this page +--2023-05-04 12:37:51-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=GRUB +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=GRUB.html’ + + 0K .......... 68.9M=0s + +2023-05-04 12:37:52 (68.9 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=GRUB.html’ saved [10903] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=GRUB.html. Will not follow any links on this page +--2023-05-04 12:37:52-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/GRUB +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/GRUB.html’ + + 0K .......... .. 50.1M=0s + +2023-05-04 12:37:52 (50.1 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/GRUB.html’ saved [12877] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/GRUB.html. Will not follow any links on this page +--2023-05-04 12:37:52-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/GRUB +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/GRUB.html’ + + 0K .......... .... 45.3M=0s + +2023-05-04 12:37:53 (45.3 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/GRUB.html’ saved [14543] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/GRUB.html. Will not follow any links on this page +--2023-05-04 12:37:53-- https://wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes.html’ + + 0K .......... 2.93M=0.004s + +2023-05-04 12:37:53 (2.93 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes.html’ saved [10825] + +--2023-05-04 12:37:53-- https://wiki.gruntnetwork.com/index.php5?title=GRUB&oldid=28 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=GRUB&oldid=28.html’ + + 0K .......... . 37.5M=0s + +2023-05-04 12:37:54 (37.5 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=GRUB&oldid=28.html’ saved [11966] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=GRUB&oldid=28.html. Will not follow any links on this page +--2023-05-04 12:37:54-- https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes&printable=yes.html’ + + 0K .......... .... 35.0M=0s + +2023-05-04 12:37:54 (35.0 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes&printable=yes.html’ saved [14538] + +--2023-05-04 12:37:54-- https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=creativecommons +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [application/rdf+xml] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=creativecommons’ + + 0K . 109M=0s + +2023-05-04 12:37:55 (109 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=creativecommons’ saved [1290] + +--2023-05-04 12:37:55-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Affichage_Graphique&action=edit&redlink=1 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 302 Moved Temporarily +Location: https://wiki.gruntnetwork.com/Discussion:Affichage_Graphique [following] + + 0K 0.00 =0s + +--2023-05-04 12:37:55-- https://wiki.gruntnetwork.com/Discussion:Affichage_Graphique +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 404 Not Found + + 0K .......... 52.0M=0s + +2023-05-04 12:37:56 ERROR 404: Not Found. + +--2023-05-04 12:37:56-- https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=edit +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=edit.html’ + + 0K .......... 105M=0s + +2023-05-04 12:37:56 (105 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=edit.html’ saved [11173] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=edit.html. Will not follow any links on this page +--2023-05-04 12:37:56-- https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=history +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=history.html’ + + 0K .......... .... 71.1M=0s + +2023-05-04 12:37:57 (71.1 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=history.html’ saved [15225] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=history.html. Will not follow any links on this page +--2023-05-04 12:37:57-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Affichage_Graphique +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Affichage_Graphique.html’ + + 0K .......... 41.3M=0s + +2023-05-04 12:37:57 (41.3 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Affichage_Graphique.html’ saved [10872] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Affichage_Graphique.html. Will not follow any links on this page +--2023-05-04 12:37:57-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Affichage_Graphique +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html’ + + 0K .......... 91.7M=0s + +2023-05-04 12:37:58 (91.7 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html’ saved [10918] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html. Will not follow any links on this page +--2023-05-04 12:37:58-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Affichage_Graphique.html’ + + 0K .......... ... 34.8M=0s + +2023-05-04 12:37:58 (34.8 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Affichage_Graphique.html’ saved [13317] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Affichage_Graphique.html. Will not follow any links on this page +--2023-05-04 12:37:58-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Affichage_Graphique +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Affichage_Graphique.html’ + + 0K .......... .... 50.0M=0s + +2023-05-04 12:37:59 (50.0 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Affichage_Graphique.html’ saved [14933] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Affichage_Graphique.html. Will not follow any links on this page +--2023-05-04 12:37:59-- https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes.html’ + + 0K .......... 44.5M=0s + +2023-05-04 12:37:59 (44.5 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes.html’ saved [10755] + +--2023-05-04 12:37:59-- https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&oldid=67 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&oldid=67.html’ + + 0K .......... . 120M=0s + +2023-05-04 12:38:00 (120 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&oldid=67.html’ saved [12025] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&oldid=67.html. Will not follow any links on this page +--2023-05-04 12:38:00-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=creativecommons +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [application/rdf+xml] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=creativecommons’ + + 0K . 35.2M=0s + +2023-05-04 12:38:00 (35.2 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=creativecommons’ saved [1278] + +--2023-05-04 12:38:00-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=edit +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=edit.html’ + + 0K .......... 48.4M=0s + +2023-05-04 12:38:01 (48.4 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=edit.html’ saved [11028] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=edit.html. Will not follow any links on this page +--2023-05-04 12:38:01-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=history +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=history.html’ + + 0K .......... .... 50.6M=0s + +2023-05-04 12:38:01 (50.6 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=history.html’ saved [14843] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=history.html. Will not follow any links on this page +--2023-05-04 12:38:01-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Liens +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Liens.html’ + + 0K .......... 42.8M=0s + +2023-05-04 12:38:02 (42.8 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Liens.html’ saved [10866] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Liens.html. Will not follow any links on this page +--2023-05-04 12:38:02-- https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Liens +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Liens.html’ + + 0K .......... 41.3M=0s + +2023-05-04 12:38:02 (41.3 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Liens.html’ saved [10915] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Liens.html. Will not follow any links on this page +--2023-05-04 12:38:02-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Liens.html’ + + 0K .......... . 38.1M=0s + +2023-05-04 12:38:03 (38.1 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Liens.html’ saved [11348] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Liens.html. Will not follow any links on this page +--2023-05-04 12:38:03-- https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Discussion:Liens +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Liens.html’ + + 0K .......... .... 51.2M=0s + +2023-05-04 12:38:03 (51.2 MB/s) - ‘https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Liens.html’ saved [14893] + +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Liens.html. Will not follow any links on this page +--2023-05-04 12:38:03-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes.html’ + + 0K .......... 47.4M=0s + +2023-05-04 12:38:04 (47.4 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes.html’ saved [10613] + +--2023-05-04 12:38:04-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&oldid=74 +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&oldid=74.html’ + + 0K .......... . 50.6M=0s + +2023-05-04 12:38:04 (50.6 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&oldid=74.html’ saved [11749] + +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&oldid=74.html. Will not follow any links on this page +--2023-05-04 12:38:05-- https://wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes&printable=yes.html’ + + 0K .......... .......... ... 35.6M=0.001s + +2023-05-04 12:38:05 (35.6 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes&printable=yes.html’ saved [24423] + +--2023-05-04 12:38:05-- https://wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes&printable=yes.html’ + + 0K .......... 39.5M=0s + +2023-05-04 12:38:06 (39.5 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes&printable=yes.html’ saved [10870] + +--2023-05-04 12:38:06-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes&printable=yes.html’ + + 0K .......... 61.3M=0s + +2023-05-04 12:38:07 (61.3 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes&printable=yes.html’ saved [10921] + +--2023-05-04 12:38:07-- https://wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes&printable=yes.html’ + + 0K .......... 39.4M=0s + +2023-05-04 12:38:08 (39.4 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes&printable=yes.html’ saved [10825] + +--2023-05-04 12:38:08-- https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes&printable=yes.html’ + + 0K .......... 30.9M=0s + +2023-05-04 12:38:09 (30.9 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes&printable=yes.html’ saved [10755] + +--2023-05-04 12:38:09-- https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes&printable=yes +Reusing existing connection to wiki.gruntnetwork.com:443. +HTTP request sent, awaiting response... 200 OK +Length: unspecified [text/html] +Saving to: ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes&printable=yes.html’ + + 0K .......... 71.5M=0s + +2023-05-04 12:38:09 (71.5 MB/s) - ‘https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes&printable=yes.html’ saved [10613] + +FINISHED --2023-05-04 12:38:09-- +Total wall clock time: 1m 30s +Downloaded: 144 files, 1.5M in 2.2s (685 KB/s) +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Notes.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Notes.html... 24-15 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=edit.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=edit.html... 35-12 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Accueil.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Accueil.html... 24-13 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=history.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=history.html... 33-32 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Notes&oldid=11738.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Notes&oldid=11738.html... 33-14 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=history.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=history.html... 34-30 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Prérequis.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Prérequis.html... 26-30 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=history.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=history.html... 34-30 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Conventions.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Conventions.html... 24-33 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=history.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=history.html... 34-31 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes.html... 47-10 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/GRUB.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Pages_liées/GRUB.html... 26-28 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/GRUB.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/GRUB.html... 24-33 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Prérequis&oldid=33.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Prérequis&oldid=33.html... 41-14 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=history.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=history.html... 34-31 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Accueil.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Accueil.html... 25-17 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Notes&action=history.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Notes&action=history.html... 33-31 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Affichage_Graphique.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Affichage_Graphique.html... 24-13 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Affichage_Graphique.html... 24-15 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Liens.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Liens.html... 24-33 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes.html... 33-10 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes&printable=yes.html... 32-11 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes.html... 32-11 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Notes.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Notes.html... 26-28 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Prérequis&printable=yes.html... 40-11 +Converting links in https/wiki.gruntnetwork.com/Notes.html... 34-11 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=history.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=history.html... 34-30 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes&printable=yes.html... 32-11 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes&printable=yes.html... 32-11 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Liens.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Liens.html... 24-15 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Modifications_récentes.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Modifications_récentes.html... 27-28 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=edit.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=edit.html... 34-13 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=edit.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=edit.html... 33-13 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Conventions.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Conventions.html... 24-15 +Converting links in https/wiki.gruntnetwork.com/GRUB.html... 34-11 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Accueil.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Accueil.html... 24-15 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Conventions.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Conventions.html... 26-30 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes.html... 32-11 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=history.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=history.html... 34-31 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Accueil&oldid=11737.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Accueil&oldid=11737.html... 44-13 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Environnement_de_programmation.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Environnement_de_programmation.html... 24-13 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Affichage_Graphique.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Affichage_Graphique.html... 24-33 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes&printable=yes.html... 33-10 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Notes&action=edit.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Notes&action=edit.html... 34-13 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Liens.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Liens.html... 24-15 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=GRUB.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=GRUB.html... 24-13 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=GRUB.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=GRUB.html... 24-15 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=history.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=GRUB&action=history.html... 33-31 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Liens.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Liens.html... 26-30 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&oldid=74.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&oldid=74.html... 34-13 +Converting links in https/wiki.gruntnetwork.com/Liens.html... 49-10 +Converting links in https/wiki.gruntnetwork.com/Discussion:Accueil.html... 35-10 +Converting links in https/wiki.gruntnetwork.com/Environnement_de_programmation.html... 39-11 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes.html... 43-10 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_spéciales.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Pages_spéciales.html... 27-75 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Liens&oldid=73.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Liens&oldid=73.html... 48-13 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=edit.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Prérequis&action=edit.html... 34-13 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&oldid=27.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&oldid=27.html... 38-14 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Liens&action=history.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Liens&action=history.html... 34-32 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Notes.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Notes.html... 24-33 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=GRUB&oldid=28.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=GRUB&oldid=28.html... 33-14 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Affichage_Graphique.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Affichage_Graphique.html... 26-28 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes.html... 32-11 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Liens.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Discussion:Liens.html... 24-13 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes.html... 33-10 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Accueil.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Accueil.html... 24-33 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=edit.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=edit.html... 34-12 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Conventions&oldid=31.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Conventions&oldid=31.html... 33-14 +Converting links in https/wiki.gruntnetwork.com/index.html... 45-8 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Liens.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Liens.html... 24-33 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Accueil.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Discussion:Accueil.html... 24-33 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&oldid=11736.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&oldid=11736.html... 34-13 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes&printable=yes.html... 47-10 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes.html... 37-11 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Prérequis&printable=yes&printable=yes.html... 40-11 +no-follow attribute found in http/wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_Développeur.html. Will not follow any links on this page +Converting links in http/wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_Développeur.html... 3-34 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Prérequis.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Prérequis.html... 24-13 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=edit.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Conventions&action=edit.html... 34-13 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Notes.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Notes.html... 24-13 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Liens.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Liens.html... 25-17 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes&printable=yes.html... 33-10 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&oldid=67.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&oldid=67.html... 33-15 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Prérequis.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Prérequis.html... 24-15 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes&printable=yes.html... 43-10 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes.html... 32-11 +Converting links in https/wiki.gruntnetwork.com/Affichage_Graphique.html... 34-11 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Environnement_de_programmation.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Environnement_de_programmation.html... 26-30 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=edit.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Accueil&action=edit.html... 35-14 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Conventions.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Conventions.html... 24-13 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Liens.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Liens.html... 24-13 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Accueil.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:Connexion&returnto=Accueil.html... 24-13 +Converting links in https/wiki.gruntnetwork.com/Discussion:Liens.html... 35-10 +Converting links in https/wiki.gruntnetwork.com/Prérequis.html... 42-11 +Converting links in https/wiki.gruntnetwork.com/Spécial:Page_au_hasard.html... 42-11 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes&printable=yes.html... 37-11 +Converting links in https/wiki.gruntnetwork.com/Conventions.html... 34-11 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Liens&action=edit.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Liens&action=edit.html... 35-12 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Environnement_de_programmation.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Environnement_de_programmation.html... 24-33 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes&printable=yes.html... 32-11 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Accueil.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Pages_liées/Discussion:Accueil.html... 25-17 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Discussion:Accueil.html... 24-15 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=edit.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=edit.html... 34-13 +no-follow attribute found in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/index.php5?title=Spécial:OpenIDLogin&returnto=Environnement_de_programmation.html... 24-15 +no-follow attribute found in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Prérequis.html. Will not follow any links on this page +Converting links in https/wiki.gruntnetwork.com/Spécial:Suivi_des_liens/Prérequis.html... 24-33 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000.css... nothing to do. +Converting links in https/wiki.gruntnetwork.com/skins/monobook/main.css?207.css... 14-0 +Converting links in https/wiki.gruntnetwork.com/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000.css... nothing to do. +Converting links in https/wiki.gruntnetwork.com/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000.css... nothing to do. +Converting links in https/wiki.gruntnetwork.com/skins/common/commonPrint.css?207.css... nothing to do. +Converting links in https/wiki.gruntnetwork.com/index.php5?title=-&action=raw&maxage=18000&gen=css.css... nothing to do. +Converting links in https/wiki.gruntnetwork.com/skins/common/shared.css?207.css... 1-0 +Converted links in 111 files in 0.04 seconds. diff --git a/wget/wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.cdx b/wget/wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.cdx @@ -0,0 +1,173 @@ + CDX a b a m s k r M V g u +https://wiki.gruntnetwork.com/ 20230504113639 https://wiki.gruntnetwork.com/ text/html 301 63IMMQZVCWADA6ZOVJVHKYHHNFSUS26H https%3A//wiki.gruntnetwork.com/Accueil - 1212 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:1e4a6c52-4206-4008-916f-0c3d7a8a60bd> +https://wiki.gruntnetwork.com/Accueil 20230504113639 https://wiki.gruntnetwork.com/Accueil text/html 200 W7FYQINXCCTGAS2YZ4MLNVZFUYCHBV6J - - 2450 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:3e465638-d080-463e-b6b2-a9a7604752f2> +https://wiki.gruntnetwork.com/robots.txt 20230504113642 https://wiki.gruntnetwork.com/robots.txt text/html 301 63IMMQZVCWADA6ZOVJVHKYHHNFSUS26H https%3A//wiki.gruntnetwork.com/Robots.txt - 8171 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:0b6d7381-0253-4478-9c1e-6be718975242> +https://wiki.gruntnetwork.com/Robots.txt 20230504113643 https://wiki.gruntnetwork.com/Robots.txt text/html 404 FZTTAVY5GCAWACIYWZ4JLU4MEOB3DD3I - - 9413 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:9af1ae3d-1163-423b-a81c-271408acc3c9> +http://wiki.gruntnetwork.com/robots.txt 20230504113645 http://wiki.gruntnetwork.com/robots.txt text/html 301 63IMMQZVCWADA6ZOVJVHKYHHNFSUS26H http%3A//wiki.gruntnetwork.com/Robots.txt - 13876 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:8621aebb-0231-4dfa-89d5-4e72b653d2ce> +http://wiki.gruntnetwork.com/Robots.txt 20230504113645 http://wiki.gruntnetwork.com/Robots.txt text/html 404 O4UPWE5CCB6GZ7XKLVFZ4CPOV744ZELS - - 15116 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:c7f394e6-a218-49aa-a6c3-a8ad5abd921a> +https://wiki.gruntnetwork.com/favicon.ico 20230504113646 https://wiki.gruntnetwork.com/favicon.ico text/html 301 63IMMQZVCWADA6ZOVJVHKYHHNFSUS26H https%3A//wiki.gruntnetwork.com/Favicon.ico - 19593 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:05f710d4-7005-46e6-936d-8cca324d4723> +https://wiki.gruntnetwork.com/Favicon.ico 20230504113646 https://wiki.gruntnetwork.com/Favicon.ico text/html 404 E3OGYZIHCJ2MHUQIFDLPBX6ZJBALSQ44 - - 20850 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:b09d9e82-05c1-4cba-995d-26c6f7dfc440> +https://wiki.gruntnetwork.com/opensearch_desc.php5 20230504113647 https://wiki.gruntnetwork.com/opensearch_desc.php5 application/opensearchdescription+xml 200 SN4WOTGHLB6RXGOTHE3GGSA2G5PMRRGY - - 25324 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:777cc437-db42-4b24-a612-f74279cca63a> +https://wiki.gruntnetwork.com/index.php5?title=Accueil&action=creativecommons 20230504113647 https://wiki.gruntnetwork.com/index.php5?title=Accueil&action=creativecommons application/rdf+xml 200 MSWUA4LJTJVOMJRQWO6KXDGQA5JVGJUJ - - 26784 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:79c5b16c-7b46-45e0-92e1-640aa9c2d92d> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss 20230504113647 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=rss application/xml 200 2TJPUL3W2QKT6Q6YYN6UHCTNBXYOU4QC - - 28503 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:f597be5d-3b2f-4d28-9fb5-d3ee72c872c3> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom 20230504113648 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Modifications_r%C3%A9centes&feed=atom application/xml 200 RPB3OMTS4WAPD3UIKMJBXTEDKYEYXPYW - - 30074 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:0299c8f5-d337-4427-ad9c-69ed4b999dec> +https://wiki.gruntnetwork.com/skins/common/shared.css?207 20230504113648 https://wiki.gruntnetwork.com/skins/common/shared.css?207 text/css 200 PZRXPJD4E2UFCGS3FQWZFKMY4CMGZ7IA - - 31643 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:cee39a16-8e45-4132-a07e-75dc3e582b98> +https://wiki.gruntnetwork.com/skins/common/commonPrint.css?207 20230504113649 https://wiki.gruntnetwork.com/skins/common/commonPrint.css?207 text/css 200 2YUPQ7G3CRERIE2QK2DQG6BZFYHS3QIH - - 35083 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:9b40885a-ef40-4907-97d2-a9d9816b98fd> +https://wiki.gruntnetwork.com/skins/monobook/main.css?207 20230504113649 https://wiki.gruntnetwork.com/skins/monobook/main.css?207 text/css 200 JN5ZYPGZ3YOPOJ2HOK7ZMCJ6LFKPDGXU - - 37795 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:8300f884-dec1-4227-b75a-0fe240821b57> +https://wiki.gruntnetwork.com/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000 20230504113649 https://wiki.gruntnetwork.com/index.php5?title=MediaWiki:Common.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000 text/css 200 QXEWJNDFSXSCUKDPUHRE2RFX2BTEM7IR - - 46241 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:dee39caf-b956-459f-bde5-c07f249d7774> +https://wiki.gruntnetwork.com/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000 20230504113649 https://wiki.gruntnetwork.com/index.php5?title=MediaWiki:Print.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000 text/css 200 FPFB4HJJDIYYVUYHRK5WQXD3BHZFM7WQ - - 47537 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:07343406-aa63-413c-a428-3380e0eb01c9> +https://wiki.gruntnetwork.com/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000 20230504113650 https://wiki.gruntnetwork.com/index.php5?title=MediaWiki:Monobook.css&usemsgcache=yes&ctype=text%2Fcss&smaxage=18000&action=raw&maxage=18000 text/css 200 EVOT6PEBQRWIFM5N7PIOYHYFQK6DTCBE - - 48829 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:df7bc12a-77b4-4943-8d14-60b3a50f43cb> +https://wiki.gruntnetwork.com/index.php5?title=-&action=raw&maxage=18000&gen=css 20230504113650 https://wiki.gruntnetwork.com/index.php5?title=-&action=raw&maxage=18000&gen=css text/css 200 MZZD7ECX64PULMRATLET6AFVTQZ5CT6R - - 50104 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:591dbbf2-d482-4fe6-b576-1a153ee08643> +https://wiki.gruntnetwork.com/skins/common/wikibits.js?207 20230504113650 https://wiki.gruntnetwork.com/skins/common/wikibits.js?207 application/javascript 200 U4NZGHY6JALDT6BH66CKSIWHQMECLCJI - - 51316 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:b68b406a-1daf-4396-9a66-6e2aa172eca5> +https://wiki.gruntnetwork.com/skins/common/ajax.js?207 20230504113651 https://wiki.gruntnetwork.com/skins/common/ajax.js?207 application/javascript 200 5MYM3AZ3NSU4YVEGOFAOX3VFFJ22HTAW - - 62345 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:ec5ce350-ccaa-415a-969c-d009f2ffb063> +https://wiki.gruntnetwork.com/index.php5?title=-&action=raw&gen=js&useskin=monobook 20230504113651 https://wiki.gruntnetwork.com/index.php5?title=-&action=raw&gen=js&useskin=monobook text/javascript 200 OGJLDB6A55KYM3JPZZZWE3ZVLGPFHH4A - - 65325 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:e889cfee-f94e-4dad-bcc4-3f962ecec578> +http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur 20230504113651 http://wiki.gruntnetwork.com/index.php5?title=Special:Connexion&type=signup&returnto=Nouveau_D%C3%A9veloppeur text/html 200 YIKXH2I7EM52J27HIXAYOT52XHMQBYQG - - 66730 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:e60e2d07-d928-4738-9c0d-50c2a2cb10d9> +https://wiki.gruntnetwork.com/Pr%C3%A9requis 20230504113652 https://wiki.gruntnetwork.com/Pr%C3%A9requis text/html 200 ZYG4K5R4U7YSEDHLWY4C3C25ZYTAY6EC - - 71233 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:f20d1d6d-2c45-48cf-81b1-988c75f5d667> +https://wiki.gruntnetwork.com/Conventions 20230504113652 https://wiki.gruntnetwork.com/Conventions text/html 200 2ZQUEJVMUMH3QBJPVWJH4B3XP4A23F3Q - - 78402 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:763473be-f885-4167-b562-3e44d96af2f0> +https://wiki.gruntnetwork.com/Environnement_de_programmation 20230504113653 https://wiki.gruntnetwork.com/Environnement_de_programmation text/html 200 AJGCGGII3OWM4QYL2X3RAOU5HFX3FORL - - 83686 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:cd0b5505-1ce1-4e89-b31d-390d761ae495> +https://wiki.gruntnetwork.com/Liens 20230504113653 https://wiki.gruntnetwork.com/Liens text/html 200 W7G332JGCOFAZ55XD5ZUDM3XSVS4LBNM - - 90019 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:f74c25e4-49c5-45fe-8f6b-291e0c1a0d84> +https://wiki.gruntnetwork.com/Notes 20230504113654 https://wiki.gruntnetwork.com/Notes text/html 200 4XALASSVDZNLWDLXJVHS3J2ZF72ZWF4Y - - 98049 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:44c692d9-f9a6-4c14-b651-21622f570f8d> +https://wiki.gruntnetwork.com/Discussion:Accueil 20230504113654 https://wiki.gruntnetwork.com/Discussion:Accueil text/html 200 BRSWNQN7VT6SXPK6CYMDJ4BDYPQ2NDN6 - - 103084 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:1028b036-1f75-4c08-8fc4-98a54f563157> +https://wiki.gruntnetwork.com/index.php5?title=Accueil&action=edit 20230504113655 https://wiki.gruntnetwork.com/index.php5?title=Accueil&action=edit text/html 200 NSJ5UIPE4T4N5APDFDQY4VZSNR3QLQML - - 108037 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:a0eafcce-bbe3-4b97-8a54-c148b3d4887b> +https://wiki.gruntnetwork.com/index.php5?title=Accueil&action=history 20230504113656 https://wiki.gruntnetwork.com/index.php5?title=Accueil&action=history text/html 200 6DZMNVWGF6MGFS4G5P5KMOGYYLBWRKQB - - 112997 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:2cd572cf-cd88-4078-adf6-5715c3f8d291> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Accueil 20230504113656 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Accueil text/html 200 INU4GTI2OG64JFXDX3KGQUP43H4446EZ - - 118377 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:ba80199f-a34d-442e-9a26-1acc1b623f8b> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Accueil 20230504113657 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Accueil text/html 200 C4IATAAC4LMLJLLIT4IBMDH6HMRFX36H - - 123058 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:a748d2c0-58f0-46e2-8aec-6c32c5a1882f> +https://wiki.gruntnetwork.com/skins/common/images/wiki.png 20230504113657 https://wiki.gruntnetwork.com/skins/common/images/wiki.png image/png 200 T2RHVXPN7PLZUQTDNDAYY25KWBM7F7ON - - 127830 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:884696c4-51f7-4a09-85bb-98bef51e3225> +https://wiki.gruntnetwork.com/Gruntnetwork:Accueil 20230504113657 https://wiki.gruntnetwork.com/Gruntnetwork:Accueil text/html 404 AEM6O255WI7U4DDPWDZNLSYAGHCEHR3L - - 154039 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:f7dc37dd-dc1c-4318-9509-f8492f844cac> +https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s 20230504113658 https://wiki.gruntnetwork.com/Gruntnetwork:Actualit%C3%A9s text/html 404 A62DHTEUIDAVL3KKN2KIG5UHUDTGHRQW - - 158705 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:5ef5fa36-6b30-492c-8c15-9729cfbc63e9> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Modifications_r%C3%A9centes 20230504113659 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Modifications_r%C3%A9centes text/html 200 FN6Q74SIDMCL75SBSW6J4BKWGGNSY4H6 - - 163387 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:4ae75904-7b3c-473e-8881-f97c801746f6> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Page_au_hasard 20230504113659 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Page_au_hasard text/html 302 63IMMQZVCWADA6ZOVJVHKYHHNFSUS26H https%3A//wiki.gruntnetwork.com/Pr%25C3%25A9requis - 168356 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:7dd92cd6-05bd-40c9-84f0-a02bbeb133fe> +https://wiki.gruntnetwork.com/Pr%C3%A9requis 20230504113659 https://wiki.gruntnetwork.com/Pr%C3%A9requis text/html 200 DPCAMXMXSWNWW4HSJI5N2432EOPQNNWJ - - 169668 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:4324e7e3-9462-4bcc-bc11-b94c0e3e592f> +https://wiki.gruntnetwork.com/Aide:Accueil 20230504113700 https://wiki.gruntnetwork.com/Aide:Accueil text/html 404 P7PXPOFMPYZFMAGU3THQOE7BVZ6AJT2L - - 176844 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:502e0120-f43a-41ce-bfc7-a56e2cdc51d4> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Accueil 20230504113700 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Accueil text/html 200 3LRLEE6DLAMZD6KH4JXL2YFKJDFX6LCY - - 181514 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:3f9ec9d4-1a5d-443b-b02d-3d7373c1d464> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Accueil 20230504113701 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Accueil text/html 200 3EOS5KAVCDMUFBFEQ7CMI7WJP2D5EBSP - - 186178 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:6a180163-b14a-499f-939f-468511d4c9ba> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_sp%C3%A9ciales 20230504113702 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_sp%C3%A9ciales text/html 200 7TTNY3CFL7Q5DCTGJXCFJOJ4SIXQ2ZGV - - 191414 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:4df81814-95c0-40c6-9e7b-32bc1aeba60a> +https://wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes 20230504113702 https://wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes text/html 200 KW6QIKDQDQVBHOS74DVJJUYPZXYI3QQX - - 197515 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:cb80a059-fcec-437b-a366-d025ec82fd68> +https://wiki.gruntnetwork.com/index.php5?title=Accueil&oldid=11737 20230504113703 https://wiki.gruntnetwork.com/index.php5?title=Accueil&oldid=11737 text/html 200 7NIRH6JJ4BKN2W4QT7IDPT4BQ32A7UER - - 203371 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:d21da3ba-358e-4cf9-9d8c-b78dabe22df4> +https://wiki.gruntnetwork.com/skins/common/images/poweredby_mediawiki_88x31.png 20230504113704 https://wiki.gruntnetwork.com/skins/common/images/poweredby_mediawiki_88x31.png image/png 200 IDY4E7RQU6DVLRHVKITL355NMMV2G2S4 - - 209423 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:1678624d-0df4-4424-8439-1977cac874f6> +https://wiki.gruntnetwork.com/skins/common/images/gnu-fdl.png 20230504113704 https://wiki.gruntnetwork.com/skins/common/images/gnu-fdl.png image/png 200 PMMNMWXXGKUYY4JELBSPQPPPVZQHYES4 - - 212658 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:112eba16-f249-43fb-8a0d-643a84a4303c> +https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9 20230504113704 https://wiki.gruntnetwork.com/Gruntnetwork:Confidentialit%C3%A9 text/html 404 R3ODXUSJ5KPVB62NUU6QJ4LI4SSUA4E2 - - 215680 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:c65c8872-01f3-4d5c-b272-8387169c62b9> +https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos 20230504113704 https://wiki.gruntnetwork.com/Gruntnetwork:%C3%80_propos text/html 404 MUQAJ4GPHUJGML5K6IF6NTC7ETRZDVKM - - 220351 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:ca208472-84d3-46b2-96f8-e507ea04ac0e> +https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux 20230504113705 https://wiki.gruntnetwork.com/Gruntnetwork:Avertissements_g%C3%A9n%C3%A9raux text/html 404 G7WI32Y4TBIBNR3O7FPJU5MUCUFXGIFQ - - 225044 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:59944f61-ffb3-496b-856d-a21164108c21> +https://wiki.gruntnetwork.com/skins/common/images/feed-icon.png 20230504113705 https://wiki.gruntnetwork.com/skins/common/images/feed-icon.png image/png 200 7KOFUF2BMILH3I6VRWZWCVQEBCO5ZDQ2 - - 229750 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:85f73601-8e69-4552-b68e-2032c3bbc2c8> +https://wiki.gruntnetwork.com/skins/monobook/headbg.jpg 20230504113706 https://wiki.gruntnetwork.com/skins/monobook/headbg.jpg image/jpeg 200 54LQEOCI6NEXCZBOE23QZ2NPM6ZVQ2ML - - 231550 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:c69480c0-fc83-43d2-8f2c-fa483c10079f> +https://wiki.gruntnetwork.com/skins/monobook/bullet.gif 20230504113706 https://wiki.gruntnetwork.com/skins/monobook/bullet.gif image/gif 200 2VPFTYGWBVXDLXOALWQRQOBYPQOAIPR6 - - 240305 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:52cb0da0-b0cc-4dd3-8c9b-4c45594a2d0c> +https://wiki.gruntnetwork.com/skins/monobook/external.png 20230504113706 https://wiki.gruntnetwork.com/skins/monobook/external.png image/png 200 PDYFDSFY264TQJLIJ3MC2RYO34MWNSLT - - 241516 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:5eeb0347-30fc-4d6d-82fa-be5525230cec> +https://wiki.gruntnetwork.com/skins/monobook/external-rtl.png 20230504113706 https://wiki.gruntnetwork.com/skins/monobook/external-rtl.png image/png 200 HBDXK56JVXUBBAKOLGJV4IUHVE3YFDAB - - 242854 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:91138f98-258a-4735-98e7-d8b60394548a> +https://wiki.gruntnetwork.com/skins/monobook/lock_icon.gif 20230504113706 https://wiki.gruntnetwork.com/skins/monobook/lock_icon.gif image/gif 200 L2WS4D3IAWQOENEXVZORKIVOXNR2Z6LS - - 244258 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:bcd2f615-52de-418e-b5be-a73760533d2b> +https://wiki.gruntnetwork.com/skins/monobook/mail_icon.gif 20230504113706 https://wiki.gruntnetwork.com/skins/monobook/mail_icon.gif image/gif 200 NMJP6VNYO3A3SXUP7ICMI7GUNNK5ES6N - - 245770 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:a67af61e-1f4c-4b02-93f5-b3c46ede88cf> +https://wiki.gruntnetwork.com/skins/monobook/news_icon.png 20230504113706 https://wiki.gruntnetwork.com/skins/monobook/news_icon.png image/png 200 RIMB2GL75MIXEX6ZAINMII2SPT75EBLQ - - 247276 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:0d4fc104-ba23-4d33-b0ca-725c2563192b> +https://wiki.gruntnetwork.com/skins/monobook/file_icon.gif 20230504113706 https://wiki.gruntnetwork.com/skins/monobook/file_icon.gif image/gif 200 BLGQG6V6LT622OUGEVVM5XCG4ZNV7QC2 - - 248797 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:8edd4a60-98ad-4a17-9997-94c40f29a49c> +https://wiki.gruntnetwork.com/skins/monobook/discussionitem_icon.gif 20230504113707 https://wiki.gruntnetwork.com/skins/monobook/discussionitem_icon.gif image/gif 200 NF6DXEKFWXH73LEFHTLQHRP3N2CSW2NI - - 250322 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:00542db7-1bed-447a-ab7f-9d0e03752b58> +https://wiki.gruntnetwork.com/skins/monobook/audio.png 20230504113707 https://wiki.gruntnetwork.com/skins/monobook/audio.png image/png 200 ZIAF2DSKJDKDCMAIZPD5MDPOPDAN5FCZ - - 251956 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:e50fb476-a3b5-42d3-bb8c-98bda78bd02d> +https://wiki.gruntnetwork.com/skins/monobook/video.png 20230504113707 https://wiki.gruntnetwork.com/skins/monobook/video.png image/png 200 NB5VYBEAM76664DSI3Y3LYEOEORD3K5S - - 253429 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:b57f9ad6-fcde-4ddd-96ed-2e8e59a938ab> +https://wiki.gruntnetwork.com/skins/monobook/document.png 20230504113707 https://wiki.gruntnetwork.com/skins/monobook/document.png image/png 200 7FOLMH7L7MHVD4B2D4Y2O6XHUKXC43WK - - 254808 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:32041ad0-18b8-49af-97b3-04c3a530f1ac> +https://wiki.gruntnetwork.com/skins/monobook/user.gif 20230504113707 https://wiki.gruntnetwork.com/skins/monobook/user.gif image/gif 200 3F233IMCEV27H4BD5TMPN6PYMV6QWS7N - - 256240 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:8d4cf4fd-d664-4e16-97f7-bdc976022adb> +https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&action=creativecommons 20230504113707 https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&action=creativecommons application/rdf+xml 200 OZYC2G5YJSMYU66OPZKBFGANJIT3NTMX - - 257838 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:b215cbbb-4fcf-4aba-8838-61881c882cac> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1 20230504113708 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Pr%C3%A9requis&action=edit&redlink=1 text/html 302 63IMMQZVCWADA6ZOVJVHKYHHNFSUS26H https%3A//wiki.gruntnetwork.com/Discussion%3APr%25C3%25A9requis - 259605 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:28d8405c-b5e9-477f-a9b4-38167ab59c9b> +https://wiki.gruntnetwork.com/Discussion:Pr%C3%A9requis 20230504113708 https://wiki.gruntnetwork.com/Discussion:Pr%C3%A9requis text/html 404 KYRDK5SLXVOPD2DCXR2LY3GRTE7FPCZF - - 260942 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:796f5aaf-6139-46d9-b469-3cca0f8b7974> +https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&action=edit 20230504113709 https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&action=edit text/html 200 RIIB4KDRX2TAIVPRCSTU4W3DGGDNOZ7D - - 265626 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:7e0e2002-8f1f-467b-9a2e-6fdfa639f544> +https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&action=history 20230504113709 https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&action=history text/html 200 6TTLYJ7JGC2URVXDKJDN4IYAB5QNLPP4 - - 271947 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:5cb238f8-f4f1-4513-b4cc-43a3eb71a502> +https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164 20230504113710 https://wiki.gruntnetwork.com/Utilisateur:90.192.224.164 text/html 404 HUVMJZGR3EGSEVCVY5JGETM33HUGRNO3 - - 277418 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:a793b1e1-9f4d-4ec3-be6d-2a53835257f2> +https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164 20230504113710 https://wiki.gruntnetwork.com/Discussion_utilisateur:90.192.224.164 text/html 404 6QJRDUS4NU3BNS6M36T64WAY7KGLRSCE - - 282148 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:9ce7d4c2-e783-4853-972e-f456d9994b68> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Pr%C3%A9requis 20230504113711 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Pr%C3%A9requis text/html 200 FICLACKIWU2F6OZHRZ7CXGIB7HSFOADU - - 287166 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:5c735a92-e599-43ec-89c2-a9a1d8896730> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Pr%C3%A9requis 20230504113711 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Pr%C3%A9requis text/html 200 QXGKBVJGE5ZUUA5HYJ3NWQFGX6S66LE7 - - 291857 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:60b4431a-a744-4e8f-9c21-cc7717b62101> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis 20230504113712 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Pr%C3%A9requis text/html 200 234AABW2IOBM2XOVNEICRLHGH4FCGQHW - - 296658 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:e0a7f7d0-17de-45bd-be85-0ec6c33f5676> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Pr%C3%A9requis 20230504113712 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Pr%C3%A9requis text/html 200 SAEV7IJF7WEOWCSOXC2PE5GH3XKGF6F6 - - 301555 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:aab3e8a2-ea1d-4c52-8f5a-d5bdb3619bd3> +https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&printable=yes 20230504113713 https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&printable=yes text/html 200 LWTDWB2HDVWYFRXCPXRJ356ZL64AL4RP - - 306811 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:6ec8ea85-c8c5-4d6e-b04e-7a175dec5e22> +https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&oldid=33 20230504113715 https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&oldid=33 text/html 200 TYP367G7FLHSFQZ4EIP7LAOYALB7ELNM - - 313962 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:d4bf82c5-12ce-47e4-8747-679651647439> +https://wiki.gruntnetwork.com/index.php5?title=Conventions&action=creativecommons 20230504113716 https://wiki.gruntnetwork.com/index.php5?title=Conventions&action=creativecommons application/rdf+xml 200 VFKKGAH5574WUVNF4MKIZAFABGCAX75R - - 321303 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:43bf7ea4-ff2f-44a9-a833-d1505cbfdff7> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Conventions&action=edit&redlink=1 20230504113716 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Conventions&action=edit&redlink=1 text/html 302 63IMMQZVCWADA6ZOVJVHKYHHNFSUS26H https%3A//wiki.gruntnetwork.com/Discussion%3AConventions - 323054 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:90e6f64a-2c9e-4a75-a627-1bd549418561> +https://wiki.gruntnetwork.com/Discussion:Conventions 20230504113717 https://wiki.gruntnetwork.com/Discussion:Conventions text/html 404 ODJ2QYI6E5VJNLRMK7CEKFVFCNFLVL64 - - 324374 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:dc95475d-8d8a-4e90-a96a-8df5e0b46810> +https://wiki.gruntnetwork.com/index.php5?title=Conventions&action=edit 20230504113717 https://wiki.gruntnetwork.com/index.php5?title=Conventions&action=edit text/html 200 YLU6YC55RSUJCGSL33SMSJO6ILGZ74HC - - 329033 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:06c41e24-b6ec-4b5e-ac57-48b95ca99af6> +https://wiki.gruntnetwork.com/index.php5?title=Conventions&action=history 20230504113718 https://wiki.gruntnetwork.com/index.php5?title=Conventions&action=history text/html 200 DKPZPBFGEMGQPXQRYOI2IDBVIQUISLVR - - 334112 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:996d6ee2-cbb1-4d1d-a8a9-adee02221928> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Conventions 20230504113718 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Conventions text/html 200 MCGRY2TRPK6PVAUJFMZXUE47OTC7MYBS - - 339547 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:be441aac-63f0-406a-8b20-4ed631b3969b> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Conventions 20230504113719 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Conventions text/html 200 2Z346V5CAAOVS4LJDJH7Z7HROOW2YA2N - - 344236 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:182c16ea-b45e-4d00-aea2-c2fd39a5af2b> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Conventions 20230504113719 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Conventions text/html 200 37SPCV7UZ4BZXTIMKZXK3BEYO2WPGC5O - - 349024 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:9094abc9-0160-475f-8583-1a6d0c505308> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Conventions 20230504113720 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Conventions text/html 200 KONYQ3O6ZFWZUW7J2MXIRHFGR3SKWHSW - - 353916 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:6e825f2e-0e5b-46c6-bab3-4d33960a1885> +https://wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes 20230504113721 https://wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes text/html 200 QMTG5MNYI2D72KZ7W4CM6H6JCN6OFU3Q - - 359166 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:63c4a9f6-fd9a-4d27-9c57-e607d2423555> +https://wiki.gruntnetwork.com/index.php5?title=Conventions&oldid=31 20230504113721 https://wiki.gruntnetwork.com/index.php5?title=Conventions&oldid=31 text/html 200 6U2SWXPGKKNBUA4ZBJXOIEAFGQYAS6N4 - - 364391 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:dfbea074-eb63-4656-be68-e5e99fcf932e> +https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=creativecommons 20230504113722 https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=creativecommons application/rdf+xml 200 PFI7MGBMXO2RDZKXKVAP6SFLKW6ICCLH - - 369825 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:8d3556d6-ffaa-4af6-8765-c41842691ba6> +https://wiki.gruntnetwork.com/GRUB 20230504113722 https://wiki.gruntnetwork.com/GRUB text/html 200 A2T4ITKPF5SQ235JQO75KW7EXPFC3HUU - - 371572 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:83f2e635-de74-494a-916b-3d448fbfd34d> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Environnement_de_programmation&action=edit&redlink=1 20230504113723 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Environnement_de_programmation&action=edit&redlink=1 text/html 302 63IMMQZVCWADA6ZOVJVHKYHHNFSUS26H https%3A//wiki.gruntnetwork.com/Discussion%3AEnvironnement_de_programmation - 376662 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:6ef779c6-f74c-46d7-a4b7-0d02e17db798> +https://wiki.gruntnetwork.com/Discussion:Environnement_de_programmation 20230504113723 https://wiki.gruntnetwork.com/Discussion:Environnement_de_programmation text/html 404 I5MED2PUEDRIA3Z7IX656YR3KBYUPLEL - - 378018 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:353a7552-e4f8-4d31-a37a-883b6441205e> +https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=edit 20230504113724 https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=edit text/html 200 MGNMHL5Q5IK4E5QOLA7OOOFAOHVOSQYK - - 382735 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:3067efc8-5cf3-4f27-9c3e-96697e7bc173> +https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=history 20230504113724 https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&action=history text/html 200 GVJJTIPKIWFJJIWRD6NTDN5NI3PZ6Q6H - - 388626 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:8ab51ae7-4e1a-4b2d-ba43-1af053db1301> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Environnement_de_programmation 20230504113725 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Environnement_de_programmation text/html 200 NZMZZ2UUIGL4ORCWF3MOAKC32K4JUHW5 - - 394132 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:92552843-473f-4ac2-a5e1-9e749bf041e1> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Environnement_de_programmation 20230504113725 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Environnement_de_programmation text/html 200 T6YI3URYUCFDRHZDQHQ3QHKMXCIPXLSK - - 398845 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:d675fe29-4441-443a-82c8-6981da3b3dbf> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation 20230504113726 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Environnement_de_programmation text/html 200 LBS25XXRNAPQWL2PLDQJIFQ5NRNBT6LV - - 403665 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:a31f8b29-3d2a-41b2-a1d3-0a926384ee77> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Environnement_de_programmation 20230504113726 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Environnement_de_programmation text/html 200 UBFGNU43NHZ3KEARHZ27DH6EA6STQPR4 - - 408603 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:a6f28973-f486-4d07-a31e-fdd6c2f1a1da> +https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes 20230504113727 https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes text/html 200 NE55K7NODWJRNN7MHXWNLBB63S6L6UZK - - 413888 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:3f932565-7949-48b9-be52-bb057a821045> +https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&oldid=27 20230504113727 https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&oldid=27 text/html 200 OE2ABFN3MIPNHOGDL4XXVAPPJIPWMBCD - - 420202 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:24489675-b592-4c8b-b130-070ff5b21bf6> +https://wiki.gruntnetwork.com/index.php5?title=Liens&action=creativecommons 20230504113728 https://wiki.gruntnetwork.com/index.php5?title=Liens&action=creativecommons application/rdf+xml 200 FZB5356B2EGGHIXZTEEPGLFSRKLZPO2B - - 426686 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:67be9e42-dc8a-4fee-8a4f-63914105eb7b> +https://wiki.gruntnetwork.com/Affichage_Graphique 20230504113729 https://wiki.gruntnetwork.com/Affichage_Graphique text/html 200 4GWO7QF2G6UOHHFBPEJYF3WF2XKXE55I - - 428403 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:5dd37eaa-8005-418d-82ab-320b6c7ea831> +https://wiki.gruntnetwork.com/Discussion:Liens 20230504113729 https://wiki.gruntnetwork.com/Discussion:Liens text/html 200 4CAIKEWURCVVSXHCXCWXHAKWCCA4RV2Q - - 433264 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:bde8217e-dce6-4b08-88b5-9a6d5865d43e> +https://wiki.gruntnetwork.com/index.php5?title=Liens&action=edit 20230504113730 https://wiki.gruntnetwork.com/index.php5?title=Liens&action=edit text/html 200 P7DR5LPVCBBSKVR5BJNPTEB3RYXPWPAJ - - 438124 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:fdf0f23e-56a4-4a62-93fb-221d210eaaea> +https://wiki.gruntnetwork.com/index.php5?title=Liens&action=history 20230504113730 https://wiki.gruntnetwork.com/index.php5?title=Liens&action=history text/html 200 ATOUTYLOVVFB7VKQWAWIABPYYFUWOKHX - - 444995 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:1ba687fc-527c-4abe-b47a-e755caed4188> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Liens 20230504113731 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Liens text/html 200 KHJOAFNMEDD5XYTIPO5NKYP6ED7WDI2P - - 450448 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:d0ffbb27-34e8-4f6c-bd01-11661cffa225> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Liens 20230504113731 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Liens text/html 200 O57V2SQXYOP75FYWPODPMH3VESPA62FF - - 455131 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:c61238ee-4e0f-4e9b-b527-e720fb094e1b> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Liens 20230504113732 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Liens text/html 200 HUBPH5IUCDZXXDOETM7PI3ALJ5VQ7AMT - - 459916 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:253daaf1-df77-4d5e-8b16-6e62a08d0b25> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Liens 20230504113733 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Liens text/html 200 W2SD7OGCLVS7LVFTT46CQ54IWNRWBM5W - - 464797 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:5a33b291-a606-4caf-a2a3-55a3b700a332> +https://wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes 20230504113733 https://wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes text/html 200 LM2RG36WIRZL47MLBDU5UVQ23UVQV36L - - 470030 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:c2969d38-d9ee-4184-aca5-ddb4a25b5452> +https://wiki.gruntnetwork.com/index.php5?title=Liens&oldid=73 20230504113734 https://wiki.gruntnetwork.com/index.php5?title=Liens&oldid=73 text/html 200 JA62TZBIENLI3TXZXYJOSLTVJHV7FFW4 - - 478026 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:d8fce8b8-1e8c-486b-ae28-0a51f58deffc> +https://wiki.gruntnetwork.com/index.php5?title=Notes&action=creativecommons 20230504113734 https://wiki.gruntnetwork.com/index.php5?title=Notes&action=creativecommons application/rdf+xml 200 6LC6HQ2RJS3FI4FIQE4TRAPTJ5NMJMI5 - - 486224 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:feeada6a-73fa-49d1-9a6f-d6cfffb64250> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Notes&action=edit&redlink=1 20230504113735 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Notes&action=edit&redlink=1 text/html 302 63IMMQZVCWADA6ZOVJVHKYHHNFSUS26H https%3A//wiki.gruntnetwork.com/Discussion%3ANotes - 487965 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:1cd6bc31-1b5e-4888-8da5-eed0c06d7789> +https://wiki.gruntnetwork.com/Discussion:Notes 20230504113735 https://wiki.gruntnetwork.com/Discussion:Notes text/html 404 PE35XDXMLWIJMSI5DDELBKF7IZF2HAZG - - 489283 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:5b0c7b9f-418f-4540-ba99-b4e139aca767> +https://wiki.gruntnetwork.com/index.php5?title=Notes&action=edit 20230504113736 https://wiki.gruntnetwork.com/index.php5?title=Notes&action=edit text/html 200 ZT62IF3D6ROCHMJKD5GIE4EHFVDECLGE - - 493933 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:edc95cf8-6a2b-4d2f-99d6-435e852e97ad> +https://wiki.gruntnetwork.com/index.php5?title=Notes&action=history 20230504113736 https://wiki.gruntnetwork.com/index.php5?title=Notes&action=history text/html 200 TZXHBMRB5ZS5ECC33AM25C4OPNDEQSUG - - 498855 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:9dc54699-ad9e-477a-8a92-77dca9fd990e> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Notes 20230504113737 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Notes text/html 200 VE2FOAORNCGFYALX7GARHJB2MBP4DYUG - - 504372 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:b766a470-4f70-46b6-a410-67afc295ace2> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Notes 20230504113737 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Notes text/html 200 4JREHI6HDMVCFEGXCYWN7SKYVOUALYZN - - 509054 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:167579a7-5073-4353-982e-e4b744066064> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Notes 20230504113738 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Notes text/html 200 N24LEXFHITH5EVRNBJBW3JHIJ3ZB2AA5 - - 513847 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:9443dbf2-60e7-47d9-b947-b90ee41c6fdc> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Notes 20230504113738 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Notes text/html 200 262NPSEA57AUM5ZI7FA4WZ2IFYBWV2CK - - 518685 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:472c0a9f-cd14-404a-8e17-84b4eb186a02> +https://wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes 20230504113739 https://wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes text/html 200 QB7RV6ABYH6TBOAKVAOJNM5IALMXUVHR - - 523926 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:41476af0-ec47-4b31-9e63-11b3a8f2c294> +https://wiki.gruntnetwork.com/index.php5?title=Notes&oldid=11738 20230504113739 https://wiki.gruntnetwork.com/index.php5?title=Notes&oldid=11738 text/html 200 4ESQ7L65KS6D7VUEMLBEZEVLFB5NAILK - - 528924 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:2dac88f9-1470-4124-a3dd-fac335f2bd18> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=creativecommons 20230504113740 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=creativecommons application/rdf+xml 200 STSSXQIAVTSM33BPPQ2FDTSKTGGDYFKI - - 534126 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:b8888350-4ae3-4a5b-95cb-5121616fb1cb> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=edit 20230504113740 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=edit text/html 200 2XXLCUZQFXBDOOEG4WUUVS65RFLXN5BB - - 535868 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:b4051761-a792-4517-8dc7-bee6b25dca02> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=history 20230504113741 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&action=history text/html 200 RVM5VPKET4RNZ5R3B6UZK2WFHTMC52PR - - 540670 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:937f55c7-673f-4ff0-acf3-7f9fe0fa9e7d> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Accueil 20230504113742 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Accueil text/html 200 WRMPJJMEA5TVYOQ52SL2YRER7TB4WNKK - - 546150 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:73fd2506-5bbd-4125-af93-d2943a5753af> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Accueil 20230504113742 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Accueil text/html 200 2ANRAL7GIGVCBYBGNFYEDSIINIXW7ZC6 - - 550837 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:c06630c1-e580-449d-aae8-c7a297ef7757> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil 20230504113742 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Accueil text/html 200 NUBU7MCIOXDQGOFHI76RHQ2MRJOTC5WS - - 555626 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:3dbe49c1-93d7-43f3-963e-6ebc0ad340d4> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Discussion:Accueil 20230504113743 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Discussion:Accueil text/html 200 5VRRCZ6TSMH7PEVX4VUK2R4J4Q2A7MQD - - 560300 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:48fba56a-b952-4d2d-bc67-c11bf6209400> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes 20230504113743 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes text/html 200 3CGW62RBBOYO7FQ274TCYYKJFCLL47W7 - - 565559 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:5341a9ff-011f-4c2e-9212-7c00997f4de2> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&oldid=11736 20230504113744 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&oldid=11736 text/html 200 G42WWYAQ5TQHDCZTIOVPYKQYB6OLXP36 - - 570460 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:9b8729e4-e699-487c-894c-e18f7f8b946c> +https://wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes&printable=yes 20230504113744 https://wiki.gruntnetwork.com/index.php5?title=Accueil&printable=yes&printable=yes text/html 200 RNOHQQWPVSSKX2WUY4KRZJIRXFKB6E74 - - 575547 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:d951cdc2-d157-4ca5-8f74-ffaeba1f4b47> +https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&printable=yes&printable=yes 20230504113745 https://wiki.gruntnetwork.com/index.php5?title=Pr%C3%A9requis&printable=yes&printable=yes text/html 200 23NFUBL5VYSS5XHEGZDFIKHLZON3PDUC - - 581408 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:deea176d-8a5d-4802-80a4-f9d96707b04f> +https://wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes&printable=yes 20230504113748 https://wiki.gruntnetwork.com/index.php5?title=Conventions&printable=yes&printable=yes text/html 200 CQOETNTTCEUVAPUHUWYDFCF2B7VPZZUR - - 588560 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:aed24b43-3f97-4ff9-8ecd-0b1d95da52e5> +https://wiki.gruntnetwork.com/index.php5?title=GRUB&action=creativecommons 20230504113749 https://wiki.gruntnetwork.com/index.php5?title=GRUB&action=creativecommons application/rdf+xml 200 XCAZ5YUEMJ4UV3MXIAB3BQ45V23OQL3N - - 593794 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:b363341c-bb87-456e-aa83-71f1080ef7c1> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:GRUB&action=edit&redlink=1 20230504113749 https://wiki.gruntnetwork.com/index.php5?title=Discussion:GRUB&action=edit&redlink=1 text/html 302 63IMMQZVCWADA6ZOVJVHKYHHNFSUS26H https%3A//wiki.gruntnetwork.com/Discussion%3AGRUB - 595536 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:5216cf41-bdb2-4a7c-b555-10921731b4e8> +https://wiki.gruntnetwork.com/Discussion:GRUB 20230504113749 https://wiki.gruntnetwork.com/Discussion:GRUB text/html 404 DJAF6HAHKMJD4SRFQKDOFVW5XDE7HYUP - - 596855 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:174b2ff9-df9f-4ee4-aeed-7776b641edfa> +https://wiki.gruntnetwork.com/index.php5?title=GRUB&action=edit 20230504113750 https://wiki.gruntnetwork.com/index.php5?title=GRUB&action=edit text/html 200 KE3TWNWMUUBAUXV52NPILC6VMPPI5J4C - - 601514 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:b862fe93-980c-4e03-b59b-75ea4de5b570> +https://wiki.gruntnetwork.com/index.php5?title=GRUB&action=history 20230504113750 https://wiki.gruntnetwork.com/index.php5?title=GRUB&action=history text/html 200 T7WMBMFTQ6FPVITSPPW5CJHBVEOKPIOC - - 606425 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:316842ec-2df0-4545-b703-96806b70376a> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=GRUB 20230504113751 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=GRUB text/html 200 BPUHPTGBZCDGHUIB5AULFLVOVQFISQZT - - 611938 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:6e1f4877-e8e1-4918-930e-9fbbaef405e7> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=GRUB 20230504113751 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=GRUB text/html 200 XXMUJGZJ7UW23N66U37NH2LISZACKKKG - - 616621 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:8e668eb7-bc01-44cb-aed7-30f061cc3d34> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/GRUB 20230504113752 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/GRUB text/html 200 O3C7HGG5OQJMWMXQR2XK6U7DTC2ERCSU - - 621411 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:7fa16757-f052-44ec-a1ee-0bc672701738> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/GRUB 20230504113752 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/GRUB text/html 200 PRJCDXKA44ASJRMZIV3WO45GBOC7DCO5 - - 626285 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:61012d3f-e328-441f-b36a-f9b3d76ce468> +https://wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes 20230504113753 https://wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes text/html 200 5V76LFTMKRDJPETHHLLAUWQXPNTNOBEJ - - 631527 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:3426bb43-57a4-41df-97ee-f113597810c5> +https://wiki.gruntnetwork.com/index.php5?title=GRUB&oldid=28 20230504113753 https://wiki.gruntnetwork.com/index.php5?title=GRUB&oldid=28 text/html 200 CYMK7VSFYTOFJ3NRYYABJONHXSGUIKUX - - 636533 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:f05deea6-ca35-4f54-8306-7c7c00a9790f> +https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes&printable=yes 20230504113754 https://wiki.gruntnetwork.com/index.php5?title=Environnement_de_programmation&printable=yes&printable=yes text/html 200 G5RVUEPX6XIHOVBK6MFBMG772H2ADLFZ - - 641744 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:829ee03c-2c15-4d4b-9896-5039b7caab85> +https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=creativecommons 20230504113754 https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=creativecommons application/rdf+xml 200 5OWUZKA7DC2KNJYDXRBWK2ATLJ5SN4P2 - - 648061 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:eba51786-47a2-48e8-8644-c2a2ef5351ff> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Affichage_Graphique&action=edit&redlink=1 20230504113755 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Affichage_Graphique&action=edit&redlink=1 text/html 302 63IMMQZVCWADA6ZOVJVHKYHHNFSUS26H https%3A//wiki.gruntnetwork.com/Discussion%3AAffichage_Graphique - 649820 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:0efa03b4-c445-4035-bcd0-ab2168dd553a> +https://wiki.gruntnetwork.com/Discussion:Affichage_Graphique 20230504113755 https://wiki.gruntnetwork.com/Discussion:Affichage_Graphique text/html 404 AVXSC4EDVHDRL5NPGXXOPA3YSZHPYJ7R - - 651162 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:f2a10e48-7412-45e5-879d-35f4bdefc53c> +https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=edit 20230504113756 https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=edit text/html 200 NYW6BQCSIYZ7NGV6TLI6CLVHUNFXINUI - - 655854 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:22cb3947-7b85-401b-b62c-fa2afae8779f> +https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=history 20230504113756 https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&action=history text/html 200 FQ3PABG6IWJYDJMO4YN7EZRSCVTBQSHD - - 660614 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:57207798-9d10-4d43-96f8-bb65b1eb77d5> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Affichage_Graphique 20230504113757 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Affichage_Graphique text/html 200 S5S67SDC4WQALRJ7GQKJ2VGY5B4GDZLJ - - 666081 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:46a50efe-0c21-4eb7-ab47-af5adee45374> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Affichage_Graphique 20230504113757 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Affichage_Graphique text/html 200 HKPLND75BLDIA7HZ4F4YKLTAYXIXSLK6 - - 670781 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:5ff6a9ee-974b-406f-b01c-17de87e454fd> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique 20230504113758 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Affichage_Graphique text/html 200 CL7YOXL2UN7IMQRGSGBCJJL4QHGOPNGK - - 675583 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:7bfc7e3d-eeb0-4949-9ceb-b8de97e00f0d> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Affichage_Graphique 20230504113758 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Affichage_Graphique text/html 200 HRNLNGR2EHHRNQ7WSGDRD3HK25PTQJHD - - 680455 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:174c6730-b9eb-4576-b444-d77cacb4bbe1> +https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes 20230504113759 https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes text/html 200 XJOG7GEXKSR3IRG6OR7HFY66MCYP7U43 - - 685722 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:9421bec4-05de-4b8c-83b5-37bf3ce4b086> +https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&oldid=67 20230504113759 https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&oldid=67 text/html 200 EENI62Z75ORLCAPAJKCQWQMMP7EZGXND - - 690560 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:bedf1713-12e1-49a6-bc46-eff0211bb2cc> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=creativecommons 20230504113800 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=creativecommons application/rdf+xml 200 RTLXES3CKGHEPZDMLFURJHAMWJS5JQ3O - - 695601 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:c94a8bac-cd15-4b7a-9983-73c2010f6d79> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=edit 20230504113800 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=edit text/html 200 2UNQ6BK3J5F3DVZVIZ23YGD4X7PQIRWI - - 697342 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:1e68fbff-3dab-428d-9197-8c2098e1700f> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=history 20230504113801 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&action=history text/html 200 2C4AHDJ2KVPSGRDP5XJDXXBEGKE7M5FA - - 702071 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:88fbb932-6f39-46fa-8bb2-3a8bf045aaa8> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Liens 20230504113801 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:Connexion&returnto=Discussion:Liens text/html 200 V6AWVCDKOR6XHXNBGJKF4EOLSIHHMOAI - - 707499 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:467f98e8-a750-4b66-a7fd-9752595401e8> +https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Liens 20230504113802 https://wiki.gruntnetwork.com/index.php5?title=Sp%C3%A9cial:OpenIDLogin&returnto=Discussion:Liens text/html 200 IQAKSKT4QFIZOT2TPIPHHRLEDDZWM3JO - - 712196 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:2e4a4d15-92f0-41af-b9a8-639f76e63f7d> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens 20230504113802 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Pages_li%C3%A9es/Discussion:Liens text/html 200 FW2HFZZF7U4BR6TAAALIIINT6CD73WGS - - 716994 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:b7b840b2-5950-43d2-afef-24cf72d240d4> +https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Discussion:Liens 20230504113803 https://wiki.gruntnetwork.com/Sp%C3%A9cial:Suivi_des_liens/Discussion:Liens text/html 200 QQHHPN3GNHH3HPBL2LYB7Y3CIXDNF2DD - - 721670 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:7e83c2ee-81e6-419d-a0bc-df7a49490909> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes 20230504113803 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes text/html 200 VEEUYC4IZMAGM2TWRYSSZNCMF7ROZYWU - - 726929 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:bd240272-2c18-430a-9593-bce930bd449c> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&oldid=74 20230504113804 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&oldid=74 text/html 200 O5AHKP5YLIANF7QO4SSVFWMNGETHSDOK - - 731737 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:2f99d8e6-dfdb-49ad-833a-17bc92e06ca7> +https://wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes&printable=yes 20230504113805 https://wiki.gruntnetwork.com/index.php5?title=Liens&printable=yes&printable=yes text/html 200 RZVK5J63VKB3RCMQKDRQ6TGZEXU3NVTI - - 736734 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:5f2c0bf7-4f58-4e4a-a1e6-cbf1548ac2e9> +https://wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes&printable=yes 20230504113805 https://wiki.gruntnetwork.com/index.php5?title=Notes&printable=yes&printable=yes text/html 200 HQEPUEH3YCKN56NO6IXJXOLAPPHUKQQ3 - - 744738 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:79b33876-d41a-4d93-b65e-6d6c6369e669> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes&printable=yes 20230504113806 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Accueil&printable=yes&printable=yes text/html 200 QBWFLY2TTWTU5EDI56FH2EQGY27FYC7C - - 749751 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:db694187-97c1-4260-90cf-aa84e46b0cdb> +https://wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes&printable=yes 20230504113807 https://wiki.gruntnetwork.com/index.php5?title=GRUB&printable=yes&printable=yes text/html 200 VOR2T3RP47F2LHEQDBATXPW45VKPTN4V - - 754652 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:f149f751-6ee4-4e85-a1ad-2732efca4afe> +https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes&printable=yes 20230504113808 https://wiki.gruntnetwork.com/index.php5?title=Affichage_Graphique&printable=yes&printable=yes text/html 200 VKSSF4OL55HTOXMMOWJMI32U5QEJN7HZ - - 759671 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:d147c203-6980-446c-b90b-8483227b0d72> +https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes&printable=yes 20230504113809 https://wiki.gruntnetwork.com/index.php5?title=Discussion:Liens&printable=yes&printable=yes text/html 200 W7A3SNSPX6NJSJK2DIEJWSOLGL7TJO66 - - 764511 wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz <urn:uuid:45bd48d9-0df7-4808-9851-ad382795a384> diff --git a/wget/wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz b/wget/wiki.gruntnetwork.com_2023-05-03T15:40:58+01:00.warc.warc.gz Binary files differ.