Script to make an offline version of (a local copy of) wiki.gruntnetwork.com
3
.gitmodules
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
[submodule "zimmer"]
|
||||
path = zimmer
|
||||
url = https://github.com/SuzanneSoy/wiki.gruntnetwork.com--zimmer
|
|
@ -0,0 +1,623 @@
|
|||
<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 :
|
||||
<pre>
|
||||
type_retour nom_fonction(type_param_1 param_1, ..., type_param_n param_n) {
|
||||
code;
|
||||
}
|
||||
</pre>
|
||||
* 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) :
|
||||
<pre>
|
||||
for (int i=a; i<b; i++) {
|
||||
code;
|
||||
}
|
||||
</pre>
|
||||
|
||||
== 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.
|
||||
|
||||
<pre>
|
||||
svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme
|
||||
svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications
|
||||
</pre>
|
||||
|
||||
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.
|
||||
|
||||
<pre>
|
||||
svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/systeme
|
||||
svn co svn+ssh://VOTREUSER@svn.tuxfamily.org/svnroot/gruntnetwork/applications
|
||||
</pre>
|
||||
|
||||
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>
|
22
download-website-script/cmd.sh
Executable file
|
@ -0,0 +1,22 @@
|
|||
mv localhost "localhost_$(date)"
|
||||
|
||||
(cd ../zimmer; npm install)
|
||||
|
||||
../zimmer/wikizimmer.js http://localhost/mediawiki/index.php/Accueil \
|
||||
--pages 'Accueil|Affichage_Graphique|Conventions|Drivers/mode_reel.h:int86|Environnement_de_programmation|GRUB|Langage|Liens|Notes|Nouveau_Développeur|Prérequis|Test_fonctionC|Toutes_les_pages' \
|
||||
--content body \
|
||||
--remove 'script:not(#random-script),a[href*="action=edit"],.editsection,.mw-editsection,#privacy,#about,#disclaimer,#p-personal,#p-cactions-mobile,#p-cactions,#column-one h2,#p-personal-toggle,#globalWrapper-toggle,#p-search,#t-whatlinkshere,#t-recentchangeslinked,#t-permalink,#t-info,#n-recentchanges' $(: ',#t-specialpages') \
|
||||
--template template.html \
|
||||
--style stub.css \
|
||||
--no-default-style \
|
||||
--verbose \
|
||||
|
||||
sed -i -e 's|./../data:image/svg+xml|data:image/svg+xml|g' localhost/-/zim.css
|
||||
|
||||
cp localhost/Accueil.html localhost/index.html
|
||||
|
||||
cid="$(ipfs cid base32 "$(ipfs add --recursive --progress --hidden --quieter --pin=false localhost)" | sed -e 's|^|https://|;s|$|.ipfs.dweb.link|')"
|
||||
|
||||
(printf %s "$cid" | wl-copy) || true
|
||||
|
||||
printf \\n%s\\n "$cid"
|
6
download-website-script/localhost/-/audio-ltr.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13">
|
||||
<path fill="#36b" d="m7.002 1.01-3 3h-3v4h3l3 3zm-1 2.5v5l-1.5-1.5h-2.5v-2h2.5z"/>
|
||||
<path fill="#15a5ea" d="M7.432 4.11c0-.621.621-1.243 1.243-.621 0 0 .621.621.621 2.485s-.62 2.485-.62 2.485c-.622.621-1.244 0-1.244-.622 0 0 .621-.62.621-1.864s-.62-1.864-.62-1.864z"/>
|
||||
<path fill="#15a5ea" d="M9.292 2.81c0-.621.621-1.243 1.243-.621 0 0 1.243 1.243 1.243 3.728s-1.243 3.728-1.243 3.728c-.621.621-1.243 0-1.243-.622 0 0 1.243-1.243 1.243-3.107S9.292 2.81 9.292 2.81z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 581 B |
4
download-website-script/localhost/-/bullet.svg
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="5" height="13" viewBox="0 0 1.323 3.44">
|
||||
<path fill="#638c9c" d="M0 1.852v1.323h1.323V1.852z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 190 B |
4
download-website-script/localhost/-/chat-ltr.svg
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13">
|
||||
<path fill="#36b" d="m1.622 2.01-.621.621v5.757l.621.622h1.69l-.622 2.728L7 9.01h4.38l.62-.622V2.631l-.621-.621zm.379 1h9v5H7L4.099 9.907 5 8.01H2z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 262 B |
5
download-website-script/localhost/-/document-ltr.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13">
|
||||
<path fill="#15a5ea" d="M7.5 2v3H10l1-1H8.5V1z"/>
|
||||
<path fill="#36b" d="M3 1v10h8V4L8.5 1zm1 1h4l2 2.5V10H4z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 223 B |
6
download-website-script/localhost/-/external-ltr.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13">
|
||||
<path fill="#36b" d="M5.002 1.01h7v7l-2-2-3 2v-1l3-2.25 1 1V2.01h-3.75l1 1-2.25 3h-1l2-3z"/>
|
||||
<path fill="#36b" d="M7.002 3.01h-5v8h8v-5h-1v4h-6v-6h4z"/>
|
||||
<path fill="#15a5ea" d="M4.082 5.51c0-.621.621-.621.621-.621 1.864.621 3.107 1.864 3.728 3.728 0 0 0 .621-.62.621-1.245-1.864-1.866-2.485-3.73-3.728z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 419 B |
BIN
download-website-script/localhost/-/favicon
Normal file
After Width: | Height: | Size: 24 KiB |
7
download-website-script/localhost/-/ftp-ltr.svg
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13">
|
||||
<path fill="#3465ba" d="M1.043 2.466v7.5l1-.987V2.966h2l2 1h4v2h1v-2.5l-.5-.5h-4.5l-2-1h-2.5z"/>
|
||||
<path fill="#16a4e8" d="M6.043 4.966h-3.5l-.5.5-1 4.5h10v-4.5l-.5-.5zm0 1h4v3h-7.75l.75-3h2z"/>
|
||||
<path fill="#3465ba" d="M2.043 10.966v1h8v-1z"/>
|
||||
<path fill="#3465ba" d="M5.043 9.466v2h2v-2c0-.5-2-.5-2 0z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 418 B |
BIN
download-website-script/localhost/-/headbg.jpg
Normal file
After Width: | Height: | Size: 7.7 KiB |
22
download-website-script/localhost/-/icon-chat.svg
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 4.233 4.233">
|
||||
<defs>
|
||||
<radialGradient xlink:href="#a" id="d" cx="2.698" cy="1.985" r=".942" fx="2.698" fy="1.985" gradientTransform="matrix(1.23922 .18503 -.09172 .61432 -.452 .228)" gradientUnits="userSpaceOnUse"/>
|
||||
<radialGradient xlink:href="#b" id="c" cx="1.852" cy=".952" r=".926" fx="1.852" fy=".952" gradientTransform="matrix(2 0 0 .71429 -1.852 .378)" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient id="b">
|
||||
<stop offset="0" stop-color="#d8eef8" stop-opacity=".996"/>
|
||||
<stop offset="1" stop-color="#75badf"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="a">
|
||||
<stop offset="0" stop-color="#fef2d3"/>
|
||||
<stop offset="1" stop-color="#fabd23"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path fill="url(#c)" fill-rule="evenodd" d="M.661.926v.794l.133.132.264.53h.265l1.19-.662V.926L2.25.661H.926z"/>
|
||||
<path fill="url(#d)" fill-rule="evenodd" d="M1.455 1.72v.794l.397.264h1.455l.265-.264V1.72l-.265-.265H1.72z"/>
|
||||
<path fill="#fff" fill-rule="evenodd" d="M1.455 1.72c.36 1.327 2.086.807 2.117.794l-.265.264-.661.132-.265.265h-.264l-.53-.53z"/>
|
||||
<path fill="#a3a3a3" d="M1.852 2.646h.265v.265h-.265z"/>
|
||||
<path fill="#a3a3a3" d="M.794.53v.264H2.38V.529zm0 .264H.529v1.058h.265zm0 1.058V2.91h.264V1.852zm.794-.53v.265H3.44v-.264zm0 .265h-.265v1.059h.265zm.264 1.323v.794h.265V2.91z"/>
|
||||
<path fill="#a3a3a3" d="M1.588 2.646h.265v.265h-.265z"/>
|
||||
<path fill="#4e4e4e" d="M2.381.794v.529h.265v-.53zm1.059.793v1.059h.264V1.587zm0 1.059h-.794v.264h.794zm-.794.264H2.38v.265h.265zm-.265.265h-.264v.265h.264zm-1.323-.794v.265h.265V2.38zm.53.265v.264h.529v-.264h-.53z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.7 KiB |
19
download-website-script/localhost/-/icon-globe.svg
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 4.233 4.233">
|
||||
<defs>
|
||||
<radialGradient xlink:href="#a" id="d" cx="26.167" cy="7.091" r="5" fx="26.167" fy="7.091" gradientTransform="matrix(.37042 0 0 .26458 -8.105 -.024)" gradientUnits="userSpaceOnUse"/>
|
||||
<radialGradient xlink:href="#b" id="c" cx="7.144" cy="1.587" r="1.521" fx="7.144" fy="1.587" gradientTransform="matrix(1.2174 0 0 .86957 -6.845 .207)" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient id="b">
|
||||
<stop offset="0" stop-color="#f6f9fe"/>
|
||||
<stop offset="1" stop-color="#60acf9"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="a">
|
||||
<stop offset="0" stop-color="#9bc56a"/>
|
||||
<stop offset="1" stop-color="#3d801e" stop-opacity=".932"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path fill="url(#c)" fill-rule="evenodd" d="m.794 1.323.264-.53.53-.264c.264-.264.793-.264 1.058 0l.529.265.265.529c.264.264.264.794 0 1.058l-.265.53-.53.264c-.264.265-.793.265-1.057 0l-.53-.265-.264-.529c-.265-.264-.265-.794 0-1.058z"/>
|
||||
<path fill="url(#d)" fill-rule="evenodd" d="m2.117.397-.53.132-.529.265-.132.264c.046.343.422.658.579.749.157.09.194.223.182.256-.013.033-.67.376-.761.583l.132.264.53.265.264.132.794-.132.264-.132-.264-.133s-.24-.002-.273-.15c-.033-.15.008-.379-.277-.602-.14-.11-.252-.066-.285-.136-.033-.07.07-.116.029-.199-.042-.083-.236-.136-.22-.244.017-.107.203.037.207-.029.004-.066-.004-.24.112-.244.205-.237.183-.594.178-.91zM2.91.66c-.181.096-.506.083-.529.302-.014.141-.019.405.104.624a.513.513 0 0 0 .616.253c.122-.047.29-.248.47-.253l-.131-.264-.265-.53z"/>
|
||||
<path fill="#8b8b8b" d="M1.588.265v.264h.793V.265zm0 .264h-.53v.265h.53zm-.53.265H.794v.529h.264zm-.264.529H.529V2.38h.265zm0 1.058v.53h.264v-.53zm.264.53v.264h.53V2.91zm.53.264v.265h.264v-.265z"/>
|
||||
<path fill="#4e4e4e" d="M2.381.265v.264h.265V.265zm.265.264v.265h.529V.529zm.529.265v.529h.265v-.53zm.265.529V2.38h.264V1.323zm0 1.058h-.265v.53h.265zm-.265.53h-.53v.264h.53zm-.53.264h-.793v.265h.794z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.0 KiB |
17
download-website-script/localhost/-/icon-page.svg
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 4.233 4.233">
|
||||
<defs>
|
||||
<linearGradient id="a">
|
||||
<stop offset="0" stop-color="#b8d6f4"/>
|
||||
<stop offset="1" stop-color="#fff"/>
|
||||
</linearGradient>
|
||||
<linearGradient xlink:href="#a" id="b" x1="1.852" x2="1.852" y1="1.587" y2="3.175" gradientTransform="scale(3.77953)" gradientUnits="userSpaceOnUse"/>
|
||||
</defs>
|
||||
<path fill="#8b8b8b" d="M.794.265v2.91h.264V.529h1.059v.53h.264V.264z"/>
|
||||
<path fill="url(#b)" d="M5 4v8h5V4H5z" transform="scale(.26458)"/>
|
||||
<path fill="#fabd23" d="M2.381.794v.264h.265V.794H2.38z"/>
|
||||
<path fill="#4e4e4e" d="M2.381.53v.264h.265V.529zm.265.264v.268l-.53-.004v.265h.794v1.852H.794v.265h2.381V1.058H2.91V.794z"/>
|
||||
<path fill="#fabd23" d="M1.323 2.646v.264h1.323v-.264H1.323z"/>
|
||||
<path fill="#538fc8" d="M1.058.794v.264h1.059V.794H1.058z"/>
|
||||
<path fill="#fff" d="M1.058.53v2.645h.265V.794h.794V.529zm1.059.793v.264h.529v1.588h.264V1.323z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.0 KiB |
29
download-website-script/localhost/-/icon-search.svg
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 4.233 4.233">
|
||||
<defs>
|
||||
<radialGradient xlink:href="#a" id="f" cx="12.249" cy="1.424" r=".728" fx="12.249" fy="1.424" gradientTransform="matrix(-.82724 -.02009 .02428 -.9997 12.12 3.422)" gradientUnits="userSpaceOnUse"/>
|
||||
<radialGradient xlink:href="#b" id="e" cx="2.888" cy="2.578" r=".562" fx="2.888" fy="2.578" gradientTransform="rotate(-45 1.469 1.846) scale(.66551 1.33104)" gradientUnits="userSpaceOnUse"/>
|
||||
<radialGradient xlink:href="#c" id="d" cx="1.79" cy="1.499" r="1.224" fx="1.79" fy="1.499" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient id="c">
|
||||
<stop offset="0" stop-color="#172bb3"/>
|
||||
<stop offset=".804" stop-color="#b1d6e5"/>
|
||||
<stop offset="1" stop-color="#5c8dc7"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="b">
|
||||
<stop offset="0" stop-color="#e4c19d"/>
|
||||
<stop offset="1" stop-color="#975f18" stop-opacity=".977"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="a">
|
||||
<stop offset="0" stop-color="#fff"/>
|
||||
<stop offset="1" stop-color="#bdd7f3"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path fill="url(#d)" fill-rule="evenodd" d="M.794 1.058c-.265.265-.265.794 0 1.059l.529.529 1.19.132.53-.529-.133-1.19-.529-.53c-.264-.264-.793-.264-1.058 0z"/>
|
||||
<path fill="url(#e)" fill-rule="evenodd" d="m2.91 2.117.265.264.265.265c.264.264.264.264 0 .529-.265.265-.265.265-.53 0l-.264-.265-.132-.396.132-.133v-.264z"/>
|
||||
<path fill="url(#f)" fill-rule="evenodd" d="M2.117 2.117c-.265.264-.265.264-.53 0l-.264-.265c-.265-.265-.265-.265 0-.53l.265-.264c.264-.264.264-.264.529 0l.264.265c.265.264.265.264 0 .53z"/>
|
||||
<path fill="#4e4e4e" d="M2.381.53v.264h.265V.529zm.265.264v.264h.264V.794zm.264.264v1.323h.265V1.058zm.265 1.323v.265h.265V2.38zm.265.265v.529h.264v-.53zm0 .529h-.265v.265h.265zM1.587.794v.264h.53V.794zm0 .264h-.264v.265h.264zm-.264.265h-.265v.53h.265zm0 .53v.264h.264v-.265zm.264.793v.264h1.059v-.529H2.38v.265z"/>
|
||||
<path fill="#a3a3a3" d="M1.323.265v.264H2.38V.265zm0 .264h-.265v.265h.265zm-.265.265H.794v.264h.264zm-.264.264H.529v1.059h.265zm0 1.059v.264h.264v-.264zm.264.264v.265h.265V2.38zm.265.265v.264h.264v-.264zm.794-1.588v.265h.264v-.265zm.264.265v.53h.265v-.53zm0 .53h-.264v.264h.264zm-.264.264h-.53v.264h.53zm.529.793v.265h.264V2.91zm.264.265v.265h.265v-.265z"/>
|
||||
<path fill="#fff" fill-rule="evenodd" d="M1.69 1.267c-.153.038-.197.382-.197.382.148-.268.301-.19.317-.309.007-.052-.048-.091-.12-.073z"/>
|
||||
<path fill="#a3a3a3" d="M1.587 3.175v.265h.794v-.265z"/>
|
||||
<path fill="#e6e6e6" d="M1.058 3.175v.265h.53v-.265zm1.323 0v.265h.265v-.265z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
22
download-website-script/localhost/-/icon-tools.svg
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 4.233 4.233">
|
||||
<defs>
|
||||
<radialGradient xlink:href="#a" id="c" cx="2.016" cy="2.35" r=".893" fx="2.016" fy="2.35" gradientTransform="matrix(.2963 .29626 -1.4815 1.4817 5 -1.961)" gradientUnits="userSpaceOnUse"/>
|
||||
<radialGradient xlink:href="#b" id="d" cx="2.646" cy="2.646" r=".628" fx="2.646" fy="2.646" gradientTransform="rotate(-45 2.11 1.355) scale(.59545 1)" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient id="b">
|
||||
<stop offset="0" stop-color="#d8eef8" stop-opacity=".996"/>
|
||||
<stop offset="1" stop-color="#75badf"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="a">
|
||||
<stop offset="0" stop-color="#fef2d3"/>
|
||||
<stop offset="1" stop-color="#fabd23"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path fill="#e6e6e6" fill-rule="evenodd" d="m1.72 1.984-.53-.529.265-.264.53.529z"/>
|
||||
<path fill="url(#c)" fill-rule="evenodd" d="m1.852 1.852-.794.794c-.264.264-.264.264 0 .529.265.265.265.265.53 0l1.058-1.058-.53-.53z"/>
|
||||
<path fill="#e6e6e6" fill-rule="evenodd" d="m2.117 1.587.529.53.529-.265.397-.397-.397-.397v.265H2.91v-.265h.265L2.778.661l-.397.397zM.661 1.19l.662-.66.53-.265-.266.529-.264.529-.265.264H.794z"/>
|
||||
<path fill="url(#d)" fill-rule="evenodd" d="m2.117 2.646.529.529c.264.265.264.265.529 0s.265-.265 0-.53l-.53-.528z"/>
|
||||
<path fill="#8b8b8b" d="M1.323.265v.264h.794V.265zm0 .264h-.265v.265h.265zm-.265.265H.794v.264h.264zm-.264.264H.529v.53h.265zM2.646.53v.265h.529V.529zm0 .265H2.38v.264h.265zm-.265.264h-.264v.53h.264zm-.264.53h-.265v.264h.265zm-.265.264h-.265v.265h.265zm-.265.265h-.264v.264h.264zm-.264.264h-.265v.265h.265zm-.265.265H.794v.529h.264zm2.117-1.588v.265h.53v-.265zm0 .265H2.91v.264h.265zm-.53.794v.264h.265v-.264zm.265.264v.265h.265V2.38z"/>
|
||||
<path fill="#fff" d="M1.323.53v.264h.264V.529zm0 .264h-.265v.529h.265zm1.323 0v.264h.264V.794zm0 .264H2.38v.53h.265z"/>
|
||||
<path fill="#4e4e4e" d="M1.587.53v.264h.265V.529zm0 .264h-.264v.529h.264zm0 .529v.264h.265v-.264zm0 .264h-.264v.265h.264zm-.264 0v-.264h-.265v.264zm-.265 0H.794v.265h.264zM2.91.794v.264h.265V.794zm0 .264h-.264v.265h.264zm.53.265v.264h.264v-.264zm0 .264h-.265v.265h.265zm-.265.265h-.53v-.265h-.528v.265h.264v.53h.265v-.265h.529zm-.794.53h-.264v.264h-.265v.264h.53zm0 .528v.265h.265V2.91zm.265.265v.265h.529v-.265zm.529 0h.265v-.53h-.265zM1.852 2.91h-.265v.265h.265zm-.265.265h-.529v.265h.53z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
14
download-website-script/localhost/-/icon-triangle-down.svg
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 4.233 4.233">
|
||||
<defs>
|
||||
<radialGradient xlink:href="#a" id="b" cx="6.879" cy="6.813" r="1.455" fx="6.879" fy="6.813" gradientTransform="matrix(1 0 0 .72727 -5.292 -3.103)" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient id="a">
|
||||
<stop offset="0" stop-color="#8ed3e0"/>
|
||||
<stop offset="1" stop-color="#3771c8"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path fill="url(#b)" fill-rule="evenodd" d="M3.572 1.455 2.382 2.91h-.53L.794 1.852.66 1.455z"/>
|
||||
<path fill="#4e4e4e" d="M3.44 1.587v.265h.264v-.265zm0 .265h-.265v.265h.265zm-.265.265H2.91v.264h.265zm-.265.264h-.264v.265h.264zm-.264.265H2.38v.264h.265zm-.265.264h-.264v.265h.264z"/>
|
||||
<path fill="#a3a3a3" d="M.53 1.323v.53h.264v-.266h2.91v-.264zm.264.53v.264h.264v-.265zm.264.264v.264h.265v-.264zm.265.264v.265h.264V2.38zm.264.265v.264h.265v-.264zm.265.264v.265h.265V2.91z"/>
|
||||
<path fill="#5f5fd3" d="M3.175 1.587v.265h.265v-.265zm0 .265H2.91v.265h.265zm-.265.265h-.264v.264h.264zm-.264.264H2.38v.265h.265zm-.265.265h-.529v.264h.53z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
14
download-website-script/localhost/-/icon-triangle-ltr.svg
Normal file
|
@ -0,0 +1,14 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 4.233 4.233">
|
||||
<defs>
|
||||
<radialGradient xlink:href="#a" id="b" cx="1.587" cy="1.852" r=".728" fx="1.587" fy="1.852" gradientTransform="matrix(1.81818 0 0 2.54545 -1.299 -3.127)" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient id="a">
|
||||
<stop offset="0" stop-color="#8ed3e0"/>
|
||||
<stop offset="1" stop-color="#3771c8"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path fill="url(#b)" fill-rule="evenodd" d="m1.19.661 1.456 1.456L1.19 3.572z"/>
|
||||
<path fill="#4e4e4e" d="M1.323.53v.264h.264V.529zm.264.264v.264h.265V.794zm.265.264v.265h.265v-.265zm.265.265v.264h.264v-.264zm.264.264v.265h.265v-.265zm.265.265v.53h.264v-.53zm0 .53H2.38v.264h.265zm-.265.264h-.264v.264h.264zm-.264.264h-.265v.265h.265zm-.265.265h-.265v.265h.265zm-.265.265h-.529v.264h.53z"/>
|
||||
<path fill="#a3a3a3" d="M1.058.53v2.91h.265V.53z"/>
|
||||
<path fill="#5f5fd3" d="M1.323.794v.264h.264V.794zm.264.264v.265h.265v-.265zm.265.265v.264h.265v-.264zm.265.264v.265h.264v-.265zm.264.265v.53h.265v-.53zm0 .53h-.264v.264h.264zm-.264.264h-.265v.264h.265zm-.265.264h-.265v.265h.265zm-.265.265h-.264v.265h.264z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
15
download-website-script/localhost/-/icon-triangle-up.svg
Normal file
|
@ -0,0 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 4.233 4.233">
|
||||
<defs>
|
||||
<radialGradient xlink:href="#a" id="b" cx="1.733" cy="1.852" r=".728" fx="1.733" fy="1.852" gradientTransform="matrix(0 -1.81818 2.54545 0 -3.127 5.268)" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient id="a">
|
||||
<stop offset="0" stop-color="#8ed3e0"/>
|
||||
<stop offset="1" stop-color="#3771c8"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path fill="url(#b)" fill-rule="evenodd" d="M.661 2.778v-.264L1.984 1.19l1.588 1.587z"/>
|
||||
<path fill="#8b8b8b" d="M2.381 1.323v.265h.265v-.265zm.265.265v.264h.264v-.264zm.264.264v.265h.265v-.265zm.265.265v.264h.265v-.264zm.265.264v.265h.264V2.38z"/>
|
||||
<path fill="#a3a3a3" d="M1.852 1.058v.265h.53v-.265zm0 .265h-.264v.265h.264zm-.264.265h-.265v.264h.265zm-.265.264h-.265v.265h.265zm-.265.265H.794v.264h.264zm-.264.264H.529v.265h.265z"/>
|
||||
<path fill="#4e4e4e" d="M.53 2.91h3.174v-.264H.53z"/>
|
||||
<path fill="#5f5fd3" d="M2.117 1.323v.265h.264v-.265zm.264.265v.264h.265v-.264zm.265.264v.265h.264v-.265zm.264.265v.264h.265v-.264zm.265.264v.265h.265V2.38z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.1 KiB |
35
download-website-script/localhost/-/icon-user.svg
Normal file
|
@ -0,0 +1,35 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 4.233 4.233">
|
||||
<defs>
|
||||
<linearGradient id="c">
|
||||
<stop offset="0" stop-color="#fbeacf"/>
|
||||
<stop offset="1" stop-color="#f0bf7b"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="b">
|
||||
<stop offset="0" stop-color="#f9e0ba"/>
|
||||
<stop offset="1" stop-color="#de8a3d"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="a">
|
||||
<stop offset="0" stop-color="#dfedc7"/>
|
||||
<stop offset="1" stop-color="#89b92f"/>
|
||||
</linearGradient>
|
||||
<linearGradient xlink:href="#a" id="d" x1=".794" x2="3.175" y1="2.778" y2="2.778" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient xlink:href="#b" id="f" x1="1.587" x2="2.381" y1="1.058" y2="1.587" gradientUnits="userSpaceOnUse"/>
|
||||
<radialGradient xlink:href="#c" id="e" cx="1.984" cy="2.381" r=".397" fx="1.984" fy="1.984" gradientTransform="matrix(.33333 0 0 1.30283 1.323 -.469)" gradientUnits="userSpaceOnUse"/>
|
||||
</defs>
|
||||
<path fill="url(#d)" fill-rule="evenodd" d="m.661 3.307.133-.661.264-.265c.53-.264 1.323-.264 1.852 0l.265.265.132.661z"/>
|
||||
<path fill="url(#e)" fill-rule="evenodd" d="M1.587 2.117v.264l.265.265h.265l.264-.265v-.264c-.264-.265-.529-.265-.793 0z"/>
|
||||
<path fill="url(#f)" fill-rule="evenodd" d="M1.323 1.058v.53l.264.264c.265.265.53.265.794 0l.265-.265v-.529L2.116.53h-.264z"/>
|
||||
<path fill="#4e4e4e" d="M2.646 1.058v.53h.264v-.53zM2.38 2.117v.264h.53v-.264zm.53.264v.265h.264V2.38zm.264.265v.529H.529v.265h2.91v-.795z"/>
|
||||
<path fill="#a3a3a3" d="M1.058 1.058v.53h.265v-.53zm.265.53v.264h.264v-.265zm-.265.529v.264h.53v-.264zm0 .264H.794v.265h.264zm-.264.265H.529v.529h.265z"/>
|
||||
<path fill="#768854" d="M1.587 2.381v.265h.265V2.38zm.265.265v.264h.265v-.264zm.265 0h.264V2.38h-.264z"/>
|
||||
<path fill="#a6774d" d="M2.381 1.587v.265h.265v-.265zm0 .265h-.793v.265h.793z"/>
|
||||
<path fill="#9a7b54" fill-rule="evenodd" d="M1.984.397v.132c0 .265-.396.794-.793.794l.132-.53.264-.264z"/>
|
||||
<path fill="#93642b" fill-rule="evenodd" d="M1.984.397v.132c0 .265.397.794.794.794l-.132-.53L2.38.53z"/>
|
||||
<path fill="#86735c" d="M1.587.265v.264h.794V.265zm0 .264h-.264v.265h.264zm-.264.265h-.265v.529h.265z"/>
|
||||
<path fill="#5a4934" d="M2.381.53v.264h.265V.529zm.265.264v.529h.264v-.53z"/>
|
||||
<path fill="#83b625" d="M1.323 2.91h.265v.265h-.265z"/>
|
||||
<path fill="#6d971f" d="M2.646 2.91h.265v.265h-.265z"/>
|
||||
<path fill="#cde3a8" d="M1.058 2.91h.265v.265h-.265z"/>
|
||||
<path fill="#a9cd69" d="M2.381 2.91h.265v.265h-.265z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
7
download-website-script/localhost/-/magnify-clip-ltr.svg
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="15" height="11" viewBox="0 0 11 15">
|
||||
<g id="magnify-clip" fill="#fff" stroke="#000">
|
||||
<path id="bigbox" d="M1.509 1.865h10.99v7.919H1.509z"/>
|
||||
<path id="smallbox" d="M-1.499 6.868h5.943v4.904h-5.943z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 305 B |
7
download-website-script/localhost/-/magnify-clip-rtl.svg
Normal file
|
@ -0,0 +1,7 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="15" height="11" viewBox="0 0 11 15">
|
||||
<g id="magnify-clip" fill="#fff" stroke="#000">
|
||||
<path id="bigbox" d="M9.491 1.865h-10.99v7.919h10.99z"/>
|
||||
<path id="smallbox" d="M12.499 6.868H6.556v4.904h5.943z"/>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 305 B |
5
download-website-script/localhost/-/mail.svg
Normal file
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13">
|
||||
<path fill="#15a5ea" d="M1.84 4 6.5 8.349 11.16 4l-.621-.621L9.296 4 6.5 6.485 3.704 4 2.46 3.38z"/>
|
||||
<path fill="#36b" d="M1 3v8h11V3zm1 1h9v6H2z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 261 B |
6
download-website-script/localhost/-/video.svg
Normal file
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="13" height="13">
|
||||
<path fill="#15a5ea" d="M2.492 2.01v.621h8.098V2.01zm0 8h8.098v-.621H2.492zm0-6.1v.621h1.87V3.91zm6.23 0v.621h1.868V3.91zm-6.23 3.7v.621h1.87V7.61zm6.23 0v.621h1.868V7.61zm-6.23-1.2h8.098v-.621H2.492z"/>
|
||||
<path fill="#15a5ea" d="M4.362 5.51v1.243h4.36V5.51z"/>
|
||||
<path fill="#36b" d="M4.002 2.01v8h5v-8zm1 1h3v6h-3zm-3-2h1v10h-1zm8 0h1v10h-1z"/>
|
||||
</svg>
|
After Width: | Height: | Size: 456 B |
BIN
download-website-script/localhost/-/wiki.png
Normal file
After Width: | Height: | Size: 24 KiB |
84
download-website-script/localhost/-/zim.css
Normal file
22
download-website-script/localhost/Accueil.html
Normal file
22
download-website-script/localhost/Affichage_Graphique.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html><html dir="ltr" lang="en"><head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <title>Affichage Graphique</title> <link href="./../-/zim.css" id="layout-css" rel="stylesheet"> </head> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr WikiaPage no-js skin-vector" id="zim"> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr page-Affichage_Graphique rootpage-Affichage_Graphique skin--responsive skin-monobook"><div id="globalWrapper"> <div id="column-content"> <div class="mw-body" id="content" role="main"> <a id="top"></a> <div id="siteNotice"></div> <div class="mw-indicators"> </div> <h1 class="firstHeading mw-first-heading" id="firstHeading"><span class="mw-page-title-main">Affichage Graphique</span></h1> <div class="monobook-body" id="bodyContent"> <div id="siteSub">De Gruntnetwork</div> <div id="contentSub"></div> <div id="jump-to-nav"></div><a href="#column-one" class="mw-jump-link">Aller à la navigation</a><a href="#searchInput" class="mw-jump-link">Aller à la recherche</a> <div class="mw-body-content mw-content-ltr" id="mw-content-text" dir="ltr" lang="fr"><div class="mw-parser-output"> </div> <div class="printfooter" data-nosnippet="">Récupérée de « <a href="http://localhost/mediawiki/index.php?title=Affichage_Graphique&oldid=16" dir="ltr">http://localhost/mediawiki/index.php?title=Affichage_Graphique&oldid=16</a> »</div></div> <div class="catlinks catlinks-allhidden" id="catlinks" data-mw="interface"></div> <div class="visualClear"></div> </div> </div> <div class="visualClear"></div> </div> <div id="column-one"> <div class="portlet" id="p-logo" role="banner"> <a href="./Accueil.html" class="mw-wiki-logo"></a> </div> <div id="sidebar"> <div class="portlet mw-portlet mw-portlet-navigation" id="p-navigation" role="navigation" aria-labelledby="p-navigation-label"> <h3 id="p-navigation-label">Navigation</h3> <div class="pBody"> <ul><li id="n-mainpage-description" class="mw-list-item"><a href="./Accueil.html" title="Accueil général [z]" accesskey="z">Accueil</a></li><li id="n-randompage" class="mw-list-item"><a title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li><li id="n-help-mediawiki" class="mw-list-item"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents">Aide concernant MediaWiki</a></li></ul> </div> </div> <div class="portlet mw-portlet mw-portlet-tb" id="p-tb" role="navigation" aria-labelledby="p-tb-label"> <h3 id="p-tb-label">Outils</h3> <div class="pBody"> <ul><li id="t-allpages" class="mw-list-item"><a href="./Toutes_les_pages.html" title="Toutes les pages [q]" accesskey="q" rel="alternate">Toutes les pages</a></li><li id="t-print" class="mw-list-item"><a href="javascript:print();" title="Version imprimable de cette page [p]" accesskey="p" rel="alternate">Version imprimable</a></li></ul> </div> </div> </div> <a href="#sidebar" class="menu-toggle" id="sidebar-toggle" title="Aller à la navigation"></a> </div> <div class="visualClear"></div> <div class="mw-footer" id="footer" role="contentinfo"> <div class="footer-icons" id="f-copyrightico"> <a href="https://creativecommons.org/publicdomain/zero/1.0/"><img alt="Creative Commons Zero (domaine public)" height="31" loading="lazy" src="./../I/cc-0.png" width="88"></a> </div> <div class="footer-icons" id="f-poweredbyico"> <a href="https://www.mediawiki.org/"><img alt="Powered by MediaWiki" height="31" loading="lazy" src="./../I/poweredby_mediawiki_88x31.png" width="88"></a> </div> <ul id="f-list"> <li id="lastmod"> La dernière modification de cette page a été faite le 4 mars 2009 à 16:14.</li><li id="copyright">Le contenu est disponible sous licence <a href="https://creativecommons.org/publicdomain/zero/1.0/" class="external" rel="nofollow">Creative Commons Zero (domaine public)</a> sauf mention contraire.</li> </ul> </div> </div> </body> <script id="random-script"> (function() {
|
||||
var pages = [
|
||||
'Accueil',
|
||||
'Affichage_Graphique',
|
||||
'Conventions',
|
||||
'Drivers/mode_reel.h:int86',
|
||||
'Environnement_de_programmation',
|
||||
'GRUB',
|
||||
'Liens',
|
||||
'Langage',
|
||||
'Notes',
|
||||
'Nouveau_Développeur',
|
||||
'Prérequis',
|
||||
'Test_fonctionC',
|
||||
];
|
||||
var dd = '';
|
||||
for (var i = document.querySelector('head title').innerText.split('/').length - 1; i > 0; i--) {
|
||||
dd += '../'
|
||||
}
|
||||
var rnd = Math.floor(Math.random() * pages.length);
|
||||
document.querySelector('#n-randompage a').setAttribute('href', dd + pages[rnd] + '.html');
|
||||
})(); </script> </body></html>
|
28
download-website-script/localhost/Conventions.html
Normal file
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html><html dir="ltr" lang="en"><head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <title>Conventions</title> <link href="./../-/zim.css" id="layout-css" rel="stylesheet"> </head> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr WikiaPage no-js skin-vector" id="zim"> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr page-Conventions rootpage-Conventions skin--responsive skin-monobook"><div id="globalWrapper"> <div id="column-content"> <div class="mw-body" id="content" role="main"> <a id="top"></a> <div id="siteNotice"></div> <div class="mw-indicators"> </div> <h1 class="firstHeading mw-first-heading" id="firstHeading"><span class="mw-page-title-main">Conventions</span></h1> <div class="monobook-body" id="bodyContent"> <div id="siteSub">De Gruntnetwork</div> <div id="contentSub"></div> <div id="jump-to-nav"></div><a href="#column-one" class="mw-jump-link">Aller à la navigation</a><a href="#searchInput" class="mw-jump-link">Aller à la recherche</a> <div class="mw-body-content mw-content-ltr" id="mw-content-text" dir="ltr" lang="fr"><div class="mw-parser-output"><p>Les conventions suivantes seront utilisées pour un code homogène. </p> <h2><span class="mw-headline" id="En_C">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> <pre> type_retour nom_fonction(type_param_1 param_1, ..., type_param_n param_n) {
|
||||
code;
|
||||
}
|
||||
</pre> <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> <pre> for (int i=a; i<b; i++) {
|
||||
code;
|
||||
}
|
||||
</pre> <h2><span class="mw-headline" id="En_assembleur">En assembleur</span></h2> <p>On utilisera la syntaxe Gas, car elle est compatible avec le compilateur GCC </p> </div> <div class="printfooter" data-nosnippet="">Récupérée de « <a href="http://localhost/mediawiki/index.php?title=Conventions&oldid=4" dir="ltr">http://localhost/mediawiki/index.php?title=Conventions&oldid=4</a> »</div></div> <div class="catlinks catlinks-allhidden" id="catlinks" data-mw="interface"></div> <div class="visualClear"></div> </div> </div> <div class="visualClear"></div> </div> <div id="column-one"> <div class="portlet" id="p-logo" role="banner"> <a href="./Accueil.html" class="mw-wiki-logo"></a> </div> <div id="sidebar"> <div class="portlet mw-portlet mw-portlet-navigation" id="p-navigation" role="navigation" aria-labelledby="p-navigation-label"> <h3 id="p-navigation-label">Navigation</h3> <div class="pBody"> <ul><li id="n-mainpage-description" class="mw-list-item"><a href="./Accueil.html" title="Accueil général [z]" accesskey="z">Accueil</a></li><li id="n-randompage" class="mw-list-item"><a title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li><li id="n-help-mediawiki" class="mw-list-item"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents">Aide concernant MediaWiki</a></li></ul> </div> </div> <div class="portlet mw-portlet mw-portlet-tb" id="p-tb" role="navigation" aria-labelledby="p-tb-label"> <h3 id="p-tb-label">Outils</h3> <div class="pBody"> <ul><li id="t-allpages" class="mw-list-item"><a href="./Toutes_les_pages.html" title="Toutes les pages [q]" accesskey="q" rel="alternate">Toutes les pages</a></li><li id="t-print" class="mw-list-item"><a href="javascript:print();" title="Version imprimable de cette page [p]" accesskey="p" rel="alternate">Version imprimable</a></li></ul> </div> </div> </div> <a href="#sidebar" class="menu-toggle" id="sidebar-toggle" title="Aller à la navigation"></a> </div> <div class="visualClear"></div> <div class="mw-footer" id="footer" role="contentinfo"> <div class="footer-icons" id="f-copyrightico"> <a href="https://creativecommons.org/publicdomain/zero/1.0/"><img alt="Creative Commons Zero (domaine public)" height="31" loading="lazy" src="./../I/cc-0.png" width="88"></a> </div> <div class="footer-icons" id="f-poweredbyico"> <a href="https://www.mediawiki.org/"><img alt="Powered by MediaWiki" height="31" loading="lazy" src="./../I/poweredby_mediawiki_88x31.png" width="88"></a> </div> <ul id="f-list"> <li id="lastmod"> La dernière modification de cette page a été faite le 8 février 2009 à 18:02.</li><li id="copyright">Le contenu est disponible sous licence <a href="https://creativecommons.org/publicdomain/zero/1.0/" class="external" rel="nofollow">Creative Commons Zero (domaine public)</a> sauf mention contraire.</li> </ul> </div> </div> </body> <script id="random-script"> (function() {
|
||||
var pages = [
|
||||
'Accueil',
|
||||
'Affichage_Graphique',
|
||||
'Conventions',
|
||||
'Drivers/mode_reel.h:int86',
|
||||
'Environnement_de_programmation',
|
||||
'GRUB',
|
||||
'Liens',
|
||||
'Langage',
|
||||
'Notes',
|
||||
'Nouveau_Développeur',
|
||||
'Prérequis',
|
||||
'Test_fonctionC',
|
||||
];
|
||||
var dd = '';
|
||||
for (var i = document.querySelector('head title').innerText.split('/').length - 1; i > 0; i--) {
|
||||
dd += '../'
|
||||
}
|
||||
var rnd = Math.floor(Math.random() * pages.length);
|
||||
document.querySelector('#n-randompage a').setAttribute('href', dd + pages[rnd] + '.html');
|
||||
})(); </script> </body></html>
|
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html><html dir="ltr" lang="en"><head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <title>Drivers/mode reel.h:int86</title> <link href="../../-/zim.css" id="layout-css" rel="stylesheet"> </head> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr WikiaPage no-js skin-vector" id="zim"> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr page-Drivers_mode_reel_h_int86 rootpage-Drivers_mode_reel_h_int86 skin--responsive skin-monobook"><div id="globalWrapper"> <div id="column-content"> <div class="mw-body" id="content" role="main"> <a id="top"></a> <div id="siteNotice"></div> <div class="mw-indicators"> </div> <h1 class="firstHeading mw-first-heading" id="firstHeading"><span class="mw-page-title-main">Drivers/mode reel.h:int86</span></h1> <div class="monobook-body" id="bodyContent"> <div id="siteSub">De Gruntnetwork</div> <div id="contentSub"></div> <div id="jump-to-nav"></div><a href="#column-one" class="mw-jump-link">Aller à la navigation</a><a href="#searchInput" class="mw-jump-link">Aller à la recherche</a> <div class="mw-body-content mw-content-ltr" id="mw-content-text" dir="ltr" lang="fr"><div class="mw-parser-output"><h2><span class="mw-headline" id="int86">int86</span></h2> <p><code> void int86(d:int interruption, d:regs86 registres_in, r:regs86 registres_out ); </code> </p> <h3><span class="mw-headline" id="Description">Description</span></h3> <p>d:<code>registres_in</code> est la valeur des registres avant l'interruption d:<code>interruption</code>, r:<code>registres_out</code> est la valeur des registres après interruption. </p><p>Cette fonction n'est pas encore écrite. </p> </div> <div class="printfooter" data-nosnippet="">Récupérée de « <a href="http://localhost/mediawiki/index.php?title=Drivers/mode_reel.h:int86&oldid=17" dir="ltr">http://localhost/mediawiki/index.php?title=Drivers/mode_reel.h:int86&oldid=17</a> »</div></div> <div class="catlinks catlinks-allhidden" id="catlinks" data-mw="interface"></div> <div class="visualClear"></div> </div> </div> <div class="visualClear"></div> </div> <div id="column-one"> <div class="portlet" id="p-logo" role="banner"> <a href="../Accueil.html" class="mw-wiki-logo"></a> </div> <div id="sidebar"> <div class="portlet mw-portlet mw-portlet-navigation" id="p-navigation" role="navigation" aria-labelledby="p-navigation-label"> <h3 id="p-navigation-label">Navigation</h3> <div class="pBody"> <ul><li id="n-mainpage-description" class="mw-list-item"><a href="../Accueil.html" title="Accueil général [z]" accesskey="z">Accueil</a></li><li id="n-randompage" class="mw-list-item"><a title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li><li id="n-help-mediawiki" class="mw-list-item"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents">Aide concernant MediaWiki</a></li></ul> </div> </div> <div class="portlet mw-portlet mw-portlet-tb" id="p-tb" role="navigation" aria-labelledby="p-tb-label"> <h3 id="p-tb-label">Outils</h3> <div class="pBody"> <ul><li id="t-allpages" class="mw-list-item"><a href="../Toutes_les_pages.html" title="Toutes les pages [q]" accesskey="q" rel="alternate">Toutes les pages</a></li><li id="t-print" class="mw-list-item"><a href="javascript:print();" title="Version imprimable de cette page [p]" accesskey="p" rel="alternate">Version imprimable</a></li></ul> </div> </div> </div> <a href="#sidebar" class="menu-toggle" id="sidebar-toggle" title="Aller à la navigation"></a> </div> <div class="visualClear"></div> <div class="mw-footer" id="footer" role="contentinfo"> <div class="footer-icons" id="f-copyrightico"> <a href="https://creativecommons.org/publicdomain/zero/1.0/"><img alt="Creative Commons Zero (domaine public)" height="31" loading="lazy" src="../../I/cc-0.png" width="88"></a> </div> <div class="footer-icons" id="f-poweredbyico"> <a href="https://www.mediawiki.org/"><img alt="Powered by MediaWiki" height="31" loading="lazy" src="../../I/poweredby_mediawiki_88x31.png" width="88"></a> </div> <ul id="f-list"> <li id="lastmod"> La dernière modification de cette page a été faite le 11 février 2009 à 14:40.</li><li id="copyright">Le contenu est disponible sous licence <a href="https://creativecommons.org/publicdomain/zero/1.0/" class="external" rel="nofollow">Creative Commons Zero (domaine public)</a> sauf mention contraire.</li> </ul> </div> </div> </body> <script id="random-script"> (function() {
|
||||
var pages = [
|
||||
'Accueil',
|
||||
'Affichage_Graphique',
|
||||
'Conventions',
|
||||
'Drivers/mode_reel.h:int86',
|
||||
'Environnement_de_programmation',
|
||||
'GRUB',
|
||||
'Liens',
|
||||
'Langage',
|
||||
'Notes',
|
||||
'Nouveau_Développeur',
|
||||
'Prérequis',
|
||||
'Test_fonctionC',
|
||||
];
|
||||
var dd = '';
|
||||
for (var i = document.querySelector('head title').innerText.split('/').length - 1; i > 0; i--) {
|
||||
dd += '../'
|
||||
}
|
||||
var rnd = Math.floor(Math.random() * pages.length);
|
||||
document.querySelector('#n-randompage a').setAttribute('href', dd + pages[rnd] + '.html');
|
||||
})(); </script> </body></html>
|
|
@ -0,0 +1,24 @@
|
|||
<!DOCTYPE html><html dir="ltr" lang="en"><head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <title>Environnement de programmation</title> <link href="./../-/zim.css" id="layout-css" rel="stylesheet"> </head> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr WikiaPage no-js skin-vector" id="zim"> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr page-Environnement_de_programmation rootpage-Environnement_de_programmation skin--responsive skin-monobook"><div id="globalWrapper"> <div id="column-content"> <div class="mw-body" id="content" role="main"> <a id="top"></a> <div id="siteNotice"></div> <div class="mw-indicators"> </div> <h1 class="firstHeading mw-first-heading" id="firstHeading"><span class="mw-page-title-main">Environnement de programmation</span></h1> <div class="monobook-body" id="bodyContent"> <div id="siteSub">De Gruntnetwork</div> <div id="contentSub"></div> <div id="jump-to-nav"></div><a href="#column-one" class="mw-jump-link">Aller à la navigation</a><a href="#searchInput" class="mw-jump-link">Aller à la recherche</a> <div class="mw-body-content mw-content-ltr" id="mw-content-text" dir="ltr" lang="fr"><div class="mw-parser-output"><div class="toc" id="toc" role="navigation" aria-labelledby="mw-toc-heading"><input class="toctogglecheckbox" id="toctogglecheckbox" role="button" style="display:none" type="checkbox"><div class="toctitle" dir="ltr" lang="fr"><h2 id="mw-toc-heading">Sommaire</h2><span class="toctogglespan"><label class="toctogglelabel" for="toctogglecheckbox"></label></span></div> <ul> <li class="toclevel-1 tocsection-1"><a href="#Éditeur"><span class="tocnumber">1</span> <span class="toctext">Éditeur</span></a></li> <li class="toclevel-1 tocsection-2"><a href="#Gestion_des_versions"><span class="tocnumber">2</span> <span class="toctext">Gestion des versions</span></a></li> <li class="toclevel-1 tocsection-3"><a href="#Compilateur"><span class="tocnumber">3</span> <span class="toctext">Compilateur</span></a></li> <li class="toclevel-1 tocsection-4"><a href="#Tests"><span class="tocnumber">4</span> <span class="toctext">Tests</span></a></li> </ul> </div> <h2><span id=".C3.89diteur"></span><span class="mw-headline" id="Éditeur">É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> <h2><span class="mw-headline" id="Gestion_des_versions">Gestion des versions</span></h2> <p>SVN sera utilisé pour la gestion des versions. </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>Voir <a href="http://faq.tuxfamily.org/SVN/Fr" class="external text" rel="nofollow">la faq de TuxFamily</a> pour plus d'infos sur l'utilisation. </p> <h2><span class="mw-headline" id="Compilateur">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> <h2><span class="mw-headline" id="Tests">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" 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> </div> <div class="printfooter" data-nosnippet="">Récupérée de « <a href="http://localhost/mediawiki/index.php?title=Environnement_de_programmation&oldid=23" dir="ltr">http://localhost/mediawiki/index.php?title=Environnement_de_programmation&oldid=23</a> »</div></div> <div class="catlinks catlinks-allhidden" id="catlinks" data-mw="interface"></div> <div class="visualClear"></div> </div> </div> <div class="visualClear"></div> </div> <div id="column-one"> <div class="portlet" id="p-logo" role="banner"> <a href="./Accueil.html" class="mw-wiki-logo"></a> </div> <div id="sidebar"> <div class="portlet mw-portlet mw-portlet-navigation" id="p-navigation" role="navigation" aria-labelledby="p-navigation-label"> <h3 id="p-navigation-label">Navigation</h3> <div class="pBody"> <ul><li class="mw-list-item" id="n-mainpage-description"><a href="./Accueil.html" title="Accueil général [z]" accesskey="z">Accueil</a></li><li class="mw-list-item" id="n-randompage"><a title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li><li class="mw-list-item" id="n-help-mediawiki"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents">Aide concernant MediaWiki</a></li></ul> </div> </div> <div class="portlet mw-portlet mw-portlet-tb" id="p-tb" role="navigation" aria-labelledby="p-tb-label"> <h3 id="p-tb-label">Outils</h3> <div class="pBody"> <ul><li class="mw-list-item" id="t-allpages"><a href="./Toutes_les_pages.html" rel="alternate" accesskey="q" title="Toutes les pages [q]">Toutes les pages</a></li><li class="mw-list-item" id="t-print"><a href="javascript:print();" rel="alternate" accesskey="p" title="Version imprimable de cette page [p]">Version imprimable</a></li></ul> </div> </div> </div> <a href="#sidebar" class="menu-toggle" id="sidebar-toggle" title="Aller à la navigation"></a> </div> <div class="visualClear"></div> <div class="mw-footer" id="footer" role="contentinfo"> <div class="footer-icons" id="f-copyrightico"> <a href="https://creativecommons.org/publicdomain/zero/1.0/"><img alt="Creative Commons Zero (domaine public)" height="31" loading="lazy" src="./../I/cc-0.png" width="88"></a> </div> <div class="footer-icons" id="f-poweredbyico"> <a href="https://www.mediawiki.org/"><img alt="Powered by MediaWiki" height="31" loading="lazy" src="./../I/poweredby_mediawiki_88x31.png" width="88"></a> </div> <ul id="f-list"> <li id="lastmod"> La dernière modification de cette page a été faite le 6 janvier 2009 à 12:51.</li><li id="copyright">Le contenu est disponible sous licence <a href="https://creativecommons.org/publicdomain/zero/1.0/" class="external" rel="nofollow">Creative Commons Zero (domaine public)</a> sauf mention contraire.</li> </ul> </div> </div> </body> <script id="random-script"> (function() {
|
||||
var pages = [
|
||||
'Accueil',
|
||||
'Affichage_Graphique',
|
||||
'Conventions',
|
||||
'Drivers/mode_reel.h:int86',
|
||||
'Environnement_de_programmation',
|
||||
'GRUB',
|
||||
'Liens',
|
||||
'Langage',
|
||||
'Notes',
|
||||
'Nouveau_Développeur',
|
||||
'Prérequis',
|
||||
'Test_fonctionC',
|
||||
];
|
||||
var dd = '';
|
||||
for (var i = document.querySelector('head title').innerText.split('/').length - 1; i > 0; i--) {
|
||||
dd += '../'
|
||||
}
|
||||
var rnd = Math.floor(Math.random() * pages.length);
|
||||
document.querySelector('#n-randompage a').setAttribute('href', dd + pages[rnd] + '.html');
|
||||
})(); </script> </body></html>
|
22
download-website-script/localhost/GRUB.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html><html dir="ltr" lang="en"><head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <title>GRUB</title> <link href="./../-/zim.css" id="layout-css" rel="stylesheet"> </head> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr WikiaPage no-js skin-vector" id="zim"> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr page-GRUB rootpage-GRUB skin--responsive skin-monobook"><div id="globalWrapper"> <div id="column-content"> <div class="mw-body" id="content" role="main"> <a id="top"></a> <div id="siteNotice"></div> <div class="mw-indicators"> </div> <h1 class="firstHeading mw-first-heading" id="firstHeading"><span class="mw-page-title-main">GRUB</span></h1> <div class="monobook-body" id="bodyContent"> <div id="siteSub">De Gruntnetwork</div> <div id="contentSub"></div> <div id="jump-to-nav"></div><a href="#column-one" class="mw-jump-link">Aller à la navigation</a><a href="#searchInput" class="mw-jump-link">Aller à la recherche</a> <div class="mw-body-content mw-content-ltr" id="mw-content-text" dir="ltr" lang="fr"><div class="mw-parser-output"><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> </div> <div class="printfooter" data-nosnippet="">Récupérée de « <a href="http://localhost/mediawiki/index.php?title=GRUB&oldid=7" dir="ltr">http://localhost/mediawiki/index.php?title=GRUB&oldid=7</a> »</div></div> <div class="catlinks catlinks-allhidden" id="catlinks" data-mw="interface"></div> <div class="visualClear"></div> </div> </div> <div class="visualClear"></div> </div> <div id="column-one"> <div class="portlet" id="p-logo" role="banner"> <a href="./Accueil.html" class="mw-wiki-logo"></a> </div> <div id="sidebar"> <div class="portlet mw-portlet mw-portlet-navigation" id="p-navigation" role="navigation" aria-labelledby="p-navigation-label"> <h3 id="p-navigation-label">Navigation</h3> <div class="pBody"> <ul><li id="n-mainpage-description" class="mw-list-item"><a href="./Accueil.html" title="Accueil général [z]" accesskey="z">Accueil</a></li><li id="n-randompage" class="mw-list-item"><a title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li><li id="n-help-mediawiki" class="mw-list-item"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents">Aide concernant MediaWiki</a></li></ul> </div> </div> <div class="portlet mw-portlet mw-portlet-tb" id="p-tb" role="navigation" aria-labelledby="p-tb-label"> <h3 id="p-tb-label">Outils</h3> <div class="pBody"> <ul><li id="t-allpages" class="mw-list-item"><a href="./Toutes_les_pages.html" title="Toutes les pages [q]" accesskey="q" rel="alternate">Toutes les pages</a></li><li id="t-print" class="mw-list-item"><a href="javascript:print();" title="Version imprimable de cette page [p]" accesskey="p" rel="alternate">Version imprimable</a></li></ul> </div> </div> </div> <a href="#sidebar" class="menu-toggle" id="sidebar-toggle" title="Aller à la navigation"></a> </div> <div class="visualClear"></div> <div class="mw-footer" id="footer" role="contentinfo"> <div class="footer-icons" id="f-copyrightico"> <a href="https://creativecommons.org/publicdomain/zero/1.0/"><img alt="Creative Commons Zero (domaine public)" height="31" loading="lazy" src="./../I/cc-0.png" width="88"></a> </div> <div class="footer-icons" id="f-poweredbyico"> <a href="https://www.mediawiki.org/"><img alt="Powered by MediaWiki" height="31" loading="lazy" src="./../I/poweredby_mediawiki_88x31.png" width="88"></a> </div> <ul id="f-list"> <li id="lastmod"> La dernière modification de cette page a été faite le 6 janvier 2009 à 12:53.</li><li id="copyright">Le contenu est disponible sous licence <a href="https://creativecommons.org/publicdomain/zero/1.0/" class="external" rel="nofollow">Creative Commons Zero (domaine public)</a> sauf mention contraire.</li> </ul> </div> </div> </body> <script id="random-script"> (function() {
|
||||
var pages = [
|
||||
'Accueil',
|
||||
'Affichage_Graphique',
|
||||
'Conventions',
|
||||
'Drivers/mode_reel.h:int86',
|
||||
'Environnement_de_programmation',
|
||||
'GRUB',
|
||||
'Liens',
|
||||
'Langage',
|
||||
'Notes',
|
||||
'Nouveau_Développeur',
|
||||
'Prérequis',
|
||||
'Test_fonctionC',
|
||||
];
|
||||
var dd = '';
|
||||
for (var i = document.querySelector('head title').innerText.split('/').length - 1; i > 0; i--) {
|
||||
dd += '../'
|
||||
}
|
||||
var rnd = Math.floor(Math.random() * pages.length);
|
||||
document.querySelector('#n-randompage a').setAttribute('href', dd + pages[rnd] + '.html');
|
||||
})(); </script> </body></html>
|
BIN
download-website-script/localhost/I/cc-0.png
Normal file
After Width: | Height: | Size: 969 B |
After Width: | Height: | Size: 3.7 KiB |
22
download-website-script/localhost/Langage.html
Normal file
22
download-website-script/localhost/Liens.html
Normal file
0
download-website-script/localhost/M/Creator
Normal file
1
download-website-script/localhost/M/Date
Normal file
|
@ -0,0 +1 @@
|
|||
2023-05-07
|
0
download-website-script/localhost/M/Description
Normal file
1
download-website-script/localhost/M/Language
Normal file
|
@ -0,0 +1 @@
|
|||
fra
|
1
download-website-script/localhost/M/Name
Normal file
|
@ -0,0 +1 @@
|
|||
wikizimmer.my_wiki
|
0
download-website-script/localhost/M/Publisher
Normal file
1
download-website-script/localhost/M/Source
Normal file
|
@ -0,0 +1 @@
|
|||
http://localhost/
|
1
download-website-script/localhost/M/Title
Normal file
|
@ -0,0 +1 @@
|
|||
Gruntnetwork
|
1
download-website-script/localhost/M/mainpage
Normal file
|
@ -0,0 +1 @@
|
|||
Accueil
|
22
download-website-script/localhost/Notes.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html><html dir="ltr" lang="en"><head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <title>Notes</title> <link href="./../-/zim.css" id="layout-css" rel="stylesheet"> </head> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr WikiaPage no-js skin-vector" id="zim"> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr page-Notes rootpage-Notes skin--responsive skin-monobook"><div id="globalWrapper"> <div id="column-content"> <div class="mw-body" id="content" role="main"> <a id="top"></a> <div id="siteNotice"></div> <div class="mw-indicators"> </div> <h1 class="firstHeading mw-first-heading" id="firstHeading"><span class="mw-page-title-main">Notes</span></h1> <div class="monobook-body" id="bodyContent"> <div id="siteSub">De Gruntnetwork</div> <div id="contentSub"></div> <div id="jump-to-nav"></div><a href="#column-one" class="mw-jump-link">Aller à la navigation</a><a href="#searchInput" class="mw-jump-link">Aller à la recherche</a> <div class="mw-body-content mw-content-ltr" id="mw-content-text" dir="ltr" lang="fr"><div class="mw-parser-output"><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> </div> <div class="printfooter" data-nosnippet="">Récupérée de « <a href="http://localhost/mediawiki/index.php?title=Notes&oldid=11" dir="ltr">http://localhost/mediawiki/index.php?title=Notes&oldid=11</a> »</div></div> <div class="catlinks catlinks-allhidden" id="catlinks" data-mw="interface"></div> <div class="visualClear"></div> </div> </div> <div class="visualClear"></div> </div> <div id="column-one"> <div class="portlet" id="p-logo" role="banner"> <a href="./Accueil.html" class="mw-wiki-logo"></a> </div> <div id="sidebar"> <div class="portlet mw-portlet mw-portlet-navigation" id="p-navigation" role="navigation" aria-labelledby="p-navigation-label"> <h3 id="p-navigation-label">Navigation</h3> <div class="pBody"> <ul><li id="n-mainpage-description" class="mw-list-item"><a href="./Accueil.html" title="Accueil général [z]" accesskey="z">Accueil</a></li><li id="n-randompage" class="mw-list-item"><a title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li><li id="n-help-mediawiki" class="mw-list-item"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents">Aide concernant MediaWiki</a></li></ul> </div> </div> <div class="portlet mw-portlet mw-portlet-tb" id="p-tb" role="navigation" aria-labelledby="p-tb-label"> <h3 id="p-tb-label">Outils</h3> <div class="pBody"> <ul><li id="t-allpages" class="mw-list-item"><a href="./Toutes_les_pages.html" title="Toutes les pages [q]" accesskey="q" rel="alternate">Toutes les pages</a></li><li id="t-print" class="mw-list-item"><a href="javascript:print();" title="Version imprimable de cette page [p]" accesskey="p" rel="alternate">Version imprimable</a></li></ul> </div> </div> </div> <a href="#sidebar" class="menu-toggle" id="sidebar-toggle" title="Aller à la navigation"></a> </div> <div class="visualClear"></div> <div class="mw-footer" id="footer" role="contentinfo"> <div class="footer-icons" id="f-copyrightico"> <a href="https://creativecommons.org/publicdomain/zero/1.0/"><img alt="Creative Commons Zero (domaine public)" height="31" loading="lazy" src="./../I/cc-0.png" width="88"></a> </div> <div class="footer-icons" id="f-poweredbyico"> <a href="https://www.mediawiki.org/"><img alt="Powered by MediaWiki" height="31" loading="lazy" src="./../I/poweredby_mediawiki_88x31.png" width="88"></a> </div> <ul id="f-list"> <li id="lastmod"> La dernière modification de cette page a été faite le 21 juin 2011 à 12:27.</li><li id="copyright">Le contenu est disponible sous licence <a href="https://creativecommons.org/publicdomain/zero/1.0/" class="external" rel="nofollow">Creative Commons Zero (domaine public)</a> sauf mention contraire.</li> </ul> </div> </div> </body> <script id="random-script"> (function() {
|
||||
var pages = [
|
||||
'Accueil',
|
||||
'Affichage_Graphique',
|
||||
'Conventions',
|
||||
'Drivers/mode_reel.h:int86',
|
||||
'Environnement_de_programmation',
|
||||
'GRUB',
|
||||
'Liens',
|
||||
'Langage',
|
||||
'Notes',
|
||||
'Nouveau_Développeur',
|
||||
'Prérequis',
|
||||
'Test_fonctionC',
|
||||
];
|
||||
var dd = '';
|
||||
for (var i = document.querySelector('head title').innerText.split('/').length - 1; i > 0; i--) {
|
||||
dd += '../'
|
||||
}
|
||||
var rnd = Math.floor(Math.random() * pages.length);
|
||||
document.querySelector('#n-randompage a').setAttribute('href', dd + pages[rnd] + '.html');
|
||||
})(); </script> </body></html>
|
22
download-website-script/localhost/Nouveau_Développeur.html
Normal file
22
download-website-script/localhost/Prérequis.html
Normal file
22
download-website-script/localhost/Test_fonctionC.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html><html dir="ltr" lang="en"><head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <title>Test fonctionC</title> <link href="./../-/zim.css" id="layout-css" rel="stylesheet"> </head> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr WikiaPage no-js skin-vector" id="zim"> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr page-Test_fonctionC rootpage-Test_fonctionC skin--responsive skin-monobook"><div id="globalWrapper"> <div id="column-content"> <div class="mw-body" id="content" role="main"> <a id="top"></a> <div id="siteNotice"></div> <div class="mw-indicators"> </div> <h1 class="firstHeading mw-first-heading" id="firstHeading"><span class="mw-page-title-main">Test fonctionC</span></h1> <div class="monobook-body" id="bodyContent"> <div id="siteSub">De Gruntnetwork</div> <div id="contentSub"></div> <div id="jump-to-nav"></div><a href="#column-one" class="mw-jump-link">Aller à la navigation</a><a href="#searchInput" class="mw-jump-link">Aller à la recherche</a> <div class="mw-body-content mw-content-ltr" id="mw-content-text" dir="ltr" lang="fr"><div class="mw-parser-output"><h2><span class="mw-headline" id="floor">floor</span></h2> <p><code> int floor(float x ); </code> </p> <h3><span class="mw-headline" id="Description">Description</span></h3> <p>Renvoie l'arrondi à l'inférieur de x </p> </div> <div class="printfooter" data-nosnippet="">Récupérée de « <a href="http://localhost/mediawiki/index.php?title=Test_fonctionC&oldid=24" dir="ltr">http://localhost/mediawiki/index.php?title=Test_fonctionC&oldid=24</a> »</div></div> <div class="catlinks catlinks-allhidden" id="catlinks" data-mw="interface"></div> <div class="visualClear"></div> </div> </div> <div class="visualClear"></div> </div> <div id="column-one"> <div class="portlet" id="p-logo" role="banner"> <a href="./Accueil.html" class="mw-wiki-logo"></a> </div> <div id="sidebar"> <div class="portlet mw-portlet mw-portlet-navigation" id="p-navigation" role="navigation" aria-labelledby="p-navigation-label"> <h3 id="p-navigation-label">Navigation</h3> <div class="pBody"> <ul><li id="n-mainpage-description" class="mw-list-item"><a href="./Accueil.html" title="Accueil général [z]" accesskey="z">Accueil</a></li><li id="n-randompage" class="mw-list-item"><a title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li><li id="n-help-mediawiki" class="mw-list-item"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents">Aide concernant MediaWiki</a></li></ul> </div> </div> <div class="portlet mw-portlet mw-portlet-tb" id="p-tb" role="navigation" aria-labelledby="p-tb-label"> <h3 id="p-tb-label">Outils</h3> <div class="pBody"> <ul><li id="t-allpages" class="mw-list-item"><a href="./Toutes_les_pages.html" title="Toutes les pages [q]" accesskey="q" rel="alternate">Toutes les pages</a></li><li id="t-print" class="mw-list-item"><a href="javascript:print();" title="Version imprimable de cette page [p]" accesskey="p" rel="alternate">Version imprimable</a></li></ul> </div> </div> </div> <a href="#sidebar" class="menu-toggle" id="sidebar-toggle" title="Aller à la navigation"></a> </div> <div class="visualClear"></div> <div class="mw-footer" id="footer" role="contentinfo"> <div class="footer-icons" id="f-copyrightico"> <a href="https://creativecommons.org/publicdomain/zero/1.0/"><img alt="Creative Commons Zero (domaine public)" height="31" loading="lazy" src="./../I/cc-0.png" width="88"></a> </div> <div class="footer-icons" id="f-poweredbyico"> <a href="https://www.mediawiki.org/"><img alt="Powered by MediaWiki" height="31" loading="lazy" src="./../I/poweredby_mediawiki_88x31.png" width="88"></a> </div> <ul id="f-list"> <li id="lastmod"> La dernière modification de cette page a été faite le 1 janvier 2009 à 02:05.</li><li id="copyright">Le contenu est disponible sous licence <a href="https://creativecommons.org/publicdomain/zero/1.0/" class="external" rel="nofollow">Creative Commons Zero (domaine public)</a> sauf mention contraire.</li> </ul> </div> </div> </body> <script id="random-script"> (function() {
|
||||
var pages = [
|
||||
'Accueil',
|
||||
'Affichage_Graphique',
|
||||
'Conventions',
|
||||
'Drivers/mode_reel.h:int86',
|
||||
'Environnement_de_programmation',
|
||||
'GRUB',
|
||||
'Liens',
|
||||
'Langage',
|
||||
'Notes',
|
||||
'Nouveau_Développeur',
|
||||
'Prérequis',
|
||||
'Test_fonctionC',
|
||||
];
|
||||
var dd = '';
|
||||
for (var i = document.querySelector('head title').innerText.split('/').length - 1; i > 0; i--) {
|
||||
dd += '../'
|
||||
}
|
||||
var rnd = Math.floor(Math.random() * pages.length);
|
||||
document.querySelector('#n-randompage a').setAttribute('href', dd + pages[rnd] + '.html');
|
||||
})(); </script> </body></html>
|
22
download-website-script/localhost/Toutes_les_pages.html
Normal file
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html><html dir="ltr" lang="en"><head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> <title>Toutes les pages</title> <link href="./../-/zim.css" id="layout-css" rel="stylesheet"> </head> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr WikiaPage no-js skin-vector" id="zim"> <body class="action-view ltr mediawiki mw-hide-empty-elt ns-0 ns-subject sitedir-ltr page-Toutes_les_pages rootpage-Toutes_les_pages skin--responsive skin-monobook"><div id="globalWrapper"> <div id="column-content"> <div class="mw-body" id="content" role="main"> <a id="top"></a> <div id="siteNotice"></div> <div class="mw-indicators"> </div> <h1 class="firstHeading mw-first-heading" id="firstHeading"><span class="mw-page-title-main">Toutes les pages</span></h1> <div class="monobook-body" id="bodyContent"> <div id="siteSub">De Gruntnetwork</div> <div id="contentSub"></div> <div id="jump-to-nav"></div><a href="#column-one" class="mw-jump-link">Aller à la navigation</a><a href="#searchInput" class="mw-jump-link">Aller à la recherche</a> <div class="mw-body-content mw-content-ltr" id="mw-content-text" dir="ltr" lang="fr"><div class="mw-parser-output"><ul><li><a href="./Accueil.html" title="Accueil">Accueil</a></li> <li><a href="./Affichage_Graphique.html" title="Affichage Graphique">Affichage Graphique</a></li> <li><a href="./Conventions.html" title="Conventions">Conventions</a></li> <li><a href="./Drivers/mode_reel.h:int86.html" title="Drivers/mode reel.h:int86">Drivers/mode reel.h:int86</a></li> <li><a href="./Environnement_de_programmation.html" title="Environnement de programmation">Environnement de programmation</a></li> <li><a href="./GRUB.html" title="GRUB">GRUB</a></li> <li><a href="./Langage.html" title="Langage">Langage</a></li> <li><a href="./Liens.html" title="Liens">Liens</a></li> <li><a href="./Notes.html" title="Notes">Notes</a></li> <li><a href="./Nouveau_Développeur.html" title="Nouveau Développeur">Nouveau Développeur</a></li> <li><a href="./Prérequis.html" title="Prérequis">Prérequis</a></li> <li><a href="./Test_fonctionC.html" title="Test fonctionC">Test fonctionC</a></li></ul> </div> <div class="printfooter" data-nosnippet="">Récupérée de « <a href="http://localhost/mediawiki/index.php?title=Toutes_les_pages&oldid=27" dir="ltr">http://localhost/mediawiki/index.php?title=Toutes_les_pages&oldid=27</a> »</div></div> <div class="catlinks catlinks-allhidden" id="catlinks" data-mw="interface"></div> <div class="visualClear"></div> </div> </div> <div class="visualClear"></div> </div> <div id="column-one"> <div class="portlet" id="p-logo" role="banner"> <a href="./Accueil.html" class="mw-wiki-logo"></a> </div> <div id="sidebar"> <div class="portlet mw-portlet mw-portlet-navigation" id="p-navigation" role="navigation" aria-labelledby="p-navigation-label"> <h3 id="p-navigation-label">Navigation</h3> <div class="pBody"> <ul><li id="n-mainpage-description" class="mw-list-item"><a href="./Accueil.html" title="Accueil général [z]" accesskey="z">Accueil</a></li><li id="n-randompage" class="mw-list-item"><a title="Afficher une page au hasard [x]" accesskey="x">Page au hasard</a></li><li id="n-help-mediawiki" class="mw-list-item"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/Help:Contents">Aide concernant MediaWiki</a></li></ul> </div> </div> <div class="portlet mw-portlet mw-portlet-tb" id="p-tb" role="navigation" aria-labelledby="p-tb-label"> <h3 id="p-tb-label">Outils</h3> <div class="pBody"> <ul><li id="t-allpages" class="mw-list-item"><a href="./Toutes_les_pages.html" title="Toutes les pages [q]" accesskey="q" rel="alternate">Toutes les pages</a></li><li id="t-print" class="mw-list-item"><a href="javascript:print();" title="Version imprimable de cette page [p]" accesskey="p" rel="alternate">Version imprimable</a></li></ul> </div> </div> </div> <a href="#sidebar" title="Aller à la navigation" class="menu-toggle" id="sidebar-toggle"></a> </div> <div class="visualClear"></div> <div class="mw-footer" id="footer" role="contentinfo"> <div class="footer-icons" id="f-copyrightico"> <a href="https://creativecommons.org/publicdomain/zero/1.0/"><img alt="Creative Commons Zero (domaine public)" height="31" loading="lazy" src="./../I/cc-0.png" width="88"></a> </div> <div class="footer-icons" id="f-poweredbyico"> <a href="https://www.mediawiki.org/"><img alt="Powered by MediaWiki" height="31" loading="lazy" src="./../I/poweredby_mediawiki_88x31.png" width="88"></a> </div> <ul id="f-list"> <li id="lastmod"> La dernière modification de cette page a été faite le 7 mai 2023 à 22:33.</li><li id="copyright">Le contenu est disponible sous licence <a href="https://creativecommons.org/publicdomain/zero/1.0/" class="external" rel="nofollow">Creative Commons Zero (domaine public)</a> sauf mention contraire.</li> </ul> </div> </div> </body> <script id="random-script"> (function() {
|
||||
var pages = [
|
||||
'Accueil',
|
||||
'Affichage_Graphique',
|
||||
'Conventions',
|
||||
'Drivers/mode_reel.h:int86',
|
||||
'Environnement_de_programmation',
|
||||
'GRUB',
|
||||
'Liens',
|
||||
'Langage',
|
||||
'Notes',
|
||||
'Nouveau_Développeur',
|
||||
'Prérequis',
|
||||
'Test_fonctionC',
|
||||
];
|
||||
var dd = '';
|
||||
for (var i = document.querySelector('head title').innerText.split('/').length - 1; i > 0; i--) {
|
||||
dd += '../'
|
||||
}
|
||||
var rnd = Math.floor(Math.random() * pages.length);
|
||||
document.querySelector('#n-randompage a').setAttribute('href', dd + pages[rnd] + '.html');
|
||||
})(); </script> </body></html>
|
22
download-website-script/localhost/index.html
Normal file
BIN
download-website-script/localhost/metadata.db
Normal file
77
download-website-script/stub.css
Normal file
|
@ -0,0 +1,77 @@
|
|||
/*
|
||||
*
|
||||
* stub.css
|
||||
*
|
||||
*/
|
||||
body#zim {
|
||||
font-size: 100%;
|
||||
width: inherit;
|
||||
padding: inherit;
|
||||
position: inherit;
|
||||
margin: inherit;
|
||||
/* background-image: none;*/
|
||||
}
|
||||
#zim #content {
|
||||
/* margin: 0px;
|
||||
padding: 2px;*/
|
||||
}
|
||||
#zim .mw-body-content {
|
||||
line-height: 1.6;
|
||||
font-size: 0.875em;
|
||||
}
|
||||
#zim .mw-body-content p {
|
||||
line-height: inherit;
|
||||
margin: 0.5em 0;
|
||||
}
|
||||
/*
|
||||
#zim #toc,
|
||||
#zim .article-status,
|
||||
#zim .thumbcaption .magnify,
|
||||
#zim .editsection,
|
||||
#zim .mw-editsection
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
*/
|
||||
#zim table.wikitable, table.nicetable {
|
||||
margin-right: 0;
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/* for en.wikivoyage.org */
|
||||
/* supress Kartographer chartlet */
|
||||
/*
|
||||
.thumbinner a[data-lon] {
|
||||
display: none;
|
||||
}
|
||||
*/
|
||||
#zim #geoCoord {
|
||||
top: -20px;
|
||||
}
|
||||
#geoCoord img {
|
||||
display: none;
|
||||
}
|
||||
#zim #mw-customtoggle-mapToggle {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Wikia */
|
||||
body#zim .WikiaMainContent {
|
||||
width: inherit;
|
||||
}
|
||||
body#zim .WikiaPageBackground {
|
||||
width: inherit;
|
||||
height: inherit;
|
||||
position: inherit;
|
||||
left: inherit;
|
||||
top: inherit;
|
||||
|
||||
}
|
||||
|
||||
html body pre {
|
||||
padding: 1em;
|
||||
border: 1px dashed #2f6fab;
|
||||
color: black;
|
||||
background-color: #f9f9f9;
|
||||
line-height: 1.1em;
|
||||
}
|
44
download-website-script/template.html
Normal file
|
@ -0,0 +1,44 @@
|
|||
<!doctype html>
|
||||
<html dir="ltr" lang="en">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<title></title>
|
||||
<link id="layout-css" rel="stylesheet" href="../-/zim.css">
|
||||
<!--
|
||||
<%B/<%title%>%>
|
||||
-->
|
||||
</head>
|
||||
<body id="zim" class="WikiaPage no-js mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject skin-vector action-view">
|
||||
<!--<div id="zim-content" class="mw-body WikiaPageBackground" role="main">-->
|
||||
<div id="bodyContent" class="mw-body-content">
|
||||
<!--
|
||||
<%A/<%title%>%>
|
||||
-->
|
||||
</div>
|
||||
<!--</div>-->
|
||||
<script id="random-script">
|
||||
(function() {
|
||||
var pages = [
|
||||
'Accueil',
|
||||
'Affichage_Graphique',
|
||||
'Conventions',
|
||||
'Drivers/mode_reel.h:int86',
|
||||
'Environnement_de_programmation',
|
||||
'GRUB',
|
||||
'Liens',
|
||||
'Langage',
|
||||
'Notes',
|
||||
'Nouveau_Développeur',
|
||||
'Prérequis',
|
||||
'Test_fonctionC',
|
||||
];
|
||||
var dd = '';
|
||||
for (var i = document.querySelector('head title').innerText.split('/').length - 1; i > 0; i--) {
|
||||
dd += '../'
|
||||
}
|
||||
var rnd = Math.floor(Math.random() * pages.length);
|
||||
document.querySelector('#n-randompage a').setAttribute('href', dd + pages[rnd] + '.html');
|
||||
})();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
1
zimmer
Submodule
|
@ -0,0 +1 @@
|
|||
Subproject commit bc54d8f2999ab27d908c64be1ee41e955afa430c
|