mirror of
https://github.com/php/doc-fr.git
synced 2026-03-24 07:02:06 +01:00
Corrections orthographiques et grammaticales : - charactère -> caractère (5) - occurence -> occurrence (2) - élement/élements -> élément/éléments (5) - complétement -> complètement (2) - éxécution/éxécuté -> exécution/exécuté (11) - controlleur -> contrôleur (4) - celà -> cela (7) - en terme de -> en termes de (16) - par conséquence -> par conséquent (3) - au delà -> au-delà (5) - inclut (participe passé) -> inclus/incluse (6) - arguement -> argument (3) - érreur/main -> erreur/mais (2) - alouer -> allouer (2) - empaqueter -> empaquetée (1) - fonctionalité -> fonctionnalité (1) - ammener -> amener (1) - idenfiants -> identifiants (1) - peux -> peut (2) - Error -> Erreur (1) - en deça -> en deçà (1) - peut être -> peut-être (1) - la l'heure -> l'heure (1) - n'existant pas (négation manquante) (1)
89 lines
2.1 KiB
XML
89 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- $Revision$ -->
|
|
<!-- EN-Revision: d8e77acef360d9e3264adcb23efeb3bb7c6fbf7e Maintainer: yannick Status: ready -->
|
|
<!-- Reviewed: no -->
|
|
|
|
<chapter xml:id="dom.examples">
|
|
&reftitle.examples;
|
|
<para>
|
|
Beaucoup d'exemples de cette documentation requièrent un fichier XML.
|
|
Nous allons utiliser le fichier <filename>book.xml</filename>
|
|
qui contient les éléments suivants :
|
|
</para>
|
|
<para>
|
|
<example>
|
|
<title>book.xml</title>
|
|
<programlisting role="xml">
|
|
<![CDATA[
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
|
|
"http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
|
|
]>
|
|
<book id="listing">
|
|
<title>My lists</title>
|
|
<chapter id="books">
|
|
<title>My books</title>
|
|
<para>
|
|
<informaltable>
|
|
<tgroup cols="4">
|
|
<thead>
|
|
<row>
|
|
<entry>Title</entry>
|
|
<entry>Author</entry>
|
|
<entry>Language</entry>
|
|
<entry>ISBN</entry>
|
|
</row>
|
|
</thead>
|
|
<tbody>
|
|
<row>
|
|
<entry>The Grapes of Wrath</entry>
|
|
<entry>John Steinbeck</entry>
|
|
<entry>en</entry>
|
|
<entry>0140186409</entry>
|
|
</row>
|
|
<row>
|
|
<entry>The Pearl</entry>
|
|
<entry>John Steinbeck</entry>
|
|
<entry>en</entry>
|
|
<entry>014017737X</entry>
|
|
</row>
|
|
<row>
|
|
<entry>Samarcande</entry>
|
|
<entry>Amine Maalouf</entry>
|
|
<entry>fr</entry>
|
|
<entry>2253051209</entry>
|
|
</row>
|
|
<!-- TODO: I have a lot of remaining books to add.. -->
|
|
</tbody>
|
|
</tgroup>
|
|
</informaltable>
|
|
</para>
|
|
</chapter>
|
|
</book>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
</para>
|
|
</chapter>
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
Local variables:
|
|
mode: sgml
|
|
sgml-omittag:t
|
|
sgml-shorttag:t
|
|
sgml-minimize-attributes:nil
|
|
sgml-always-quote-attributes:t
|
|
sgml-indent-step:1
|
|
sgml-indent-data:t
|
|
indent-tabs-mode:nil
|
|
sgml-parent-document:nil
|
|
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
|
|
sgml-exposed-tags:nil
|
|
sgml-local-catalogs:nil
|
|
sgml-local-ecat-files:nil
|
|
End:
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
vim: et tw=78 syn=sgml
|
|
vi: ts=1 sw=1
|
|
-->
|