com doc/fr: Apply commit f1b211f5c87d97a1a636c0022e701db18fb73eff: appendices/ini.list.xml install/windows/legacy/extensions.xml reference/mime_magic/book.xml reference/mime_magic/conf igure.xml reference/mime_magic/constants.xml referenc e/mime_magic/ini.xml reference/mime_magic/setup.xml
[email protected] (George Peter Banyard) Wed, 24 Feb 2021 17:45:15 +0000
| Newsgroups | php.doc.fr |
|---|---|
| Message-ID | <[email protected]> |
Commit: a35ade6e8ce398d98642330daa925c38ecf5d2ec Author: George Peter Banyard <[email protected]> Wed, 24 Feb 2021 17:44:24 +0000 Parents: 6ea8e98c7a58af0afc6d5f1a29224d769c02b987 Branches: master Link: http://git.php.net/?p=doc/fr.git;a=commitdiff;h=a35ade6e8ce398d98642330daa925c38ecf5d2ec Log: Apply commit f1b211f5c87d97a1a636c0022e701db18fb73eff Remove mime_magic documentation Changed paths: M appendices/ini.list.xml M install/windows/legacy/extensions.xml D reference/mime_magic/book.xml D reference/mime_magic/configure.xml D reference/mime_magic/constants.xml D reference/mime_magic/ini.xml D reference/mime_magic/setup.xml
diff_a35ade6e8ce398d98642330daa925c38ecf5d2ec.txt
(text/plain, 11.9 KB)
diff --git a/appendices/ini.list.xml b/appendices/ini.list.xml
index ff048c6772..638b2bc942 100644
--- a/appendices/ini.list.xml
+++ b/appendices/ini.list.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 2b1cecf44abfb13ad94e1d48016a805937d0f620 Maintainer: yannick Status: ready -->
+<!-- EN-Revision: f1b211f5c87d97a1a636c0022e701db18fb73eff Maintainer: yannick Status: ready -->
<!-- Reviewed: no -->
<section xml:id="ini.list" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xi="http://www.w3.org/2001/XInclude">
<title>Liste des directives du &php.ini;</title>
@@ -558,18 +558,6 @@
<entry>PHP_INI_ALL</entry>
<entry></entry>
</row>
- <row>
- <entry><link linkend="ini.mime-magic.debug">mime_magic.debug</link></entry>
- <entry>"0"</entry>
- <entry>PHP_INI_SYSTEM</entry>
- <entry></entry>
- </row>
- <row>
- <entry><link linkend="ini.mime-magic.magicfile">mime_magic.magicfile</link></entry>
- <entry>"/path/to/php/magic.mime"</entry>
- <entry>PHP_INI_SYSTEM</entry>
- <entry></entry>
- </row>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('mongo.configuration.list')/*)"><xi:fallback/></xi:include>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('mysql.configuration.list')/*)"><xi:fallback/></xi:include>
<xi:include xpointer="xmlns(db=http://docbook.org/ns/docbook) xpointer(id('mysqli.configuration.list')/*)"><xi:fallback/></xi:include>
diff --git a/install/windows/legacy/extensions.xml b/install/windows/legacy/extensions.xml
index dea490b863..9c1c590439 100644
--- a/install/windows/legacy/extensions.xml
+++ b/install/windows/legacy/extensions.xml
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- $Revision$ -->
-<!-- EN-Revision: 09024d16473f8817ca84b3e2cdb4ef44681a705f Maintainer: yannick Status: ready -->
+<!-- EN-Revision: f1b211f5c87d97a1a636c0022e701db18fb73eff Maintainer: yannick Status: ready -->
<!-- Reviewed: yes -->
<sect2 xml:id="install.windows.legacy.extensions" xmlns="http://docbook.org/ns/docbook">
@@ -267,11 +267,6 @@ extension=php_bz2.dll
(intégré)</entry>
</row>
<row>
- <entry>php_mime_magic.dll</entry>
- <entry>Fonctions <link linkend="book.mime-magic">Mimetype</link></entry>
- <entry>Requiert : <filename>magic.mime</filename> (intégré)</entry>
- </row>
- <row>
<entry>php_mysql.dll</entry>
<entry>Fonctions <link linkend="book.mysql">MySQL</link></entry>
<entry>Requiert : <filename>libmysql.dll</filename>
diff --git a/reference/mime_magic/book.xml b/reference/mime_magic/book.xml
deleted file mode 100644
index 1a5f9d9b09..0000000000
--- a/reference/mime_magic/book.xml
+++ /dev/null
@@ -1,62 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision$ -->
-<!-- EN-Revision: 1634a886415d0ab4df195fe49d18a1c150b70758 Maintainer: yannick Status: ready -->
-<!-- Reviewed: yes -->
-<!-- State: deprecated -->
-
-<book xml:id="book.mime-magic" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
- <title>Mimetype</title>
-
- <!-- {{{ preface -->
- <preface xml:id="intro.mime-magic">
- &reftitle.intro;
- <warning>
- <para>
- Cette extension est à présent déconseillée étant donné que l'extension
- PECL <link linkend="book.fileinfo">Fileinfo</link>
- fournit les mêmes fonctionnalités (et même plus) de façon plus propre.
- </para>
- </warning>
- <para>
- Ces fonctions essaient de définir le type de contenu et
- l'encodage d'un fichier en recherchant certaines séquences
- <emphasis>magiques</emphasis>, à certaines positions dans le
- fichier. Même si ce n'est pas une approche imparable, les
- heuristiques réalisent un bon travail.
- </para>
- <para>
- Cette extension est dérivée du module Apache mod_mime_magic,
- qui est lui-même basé sur la commande <filename>file</filename>,
- entretenue par Ian F. Darwin. Voyez le code source pour
- plus de détails sur les heuristiques et les informations de
- copyright.
- </para>
- </preface>
- <!-- }}} -->
-
- &reference.mime-magic.setup;
- &reference.mime-magic.constants;
-
-</book>
-
-<!-- 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
--->
-
diff --git a/reference/mime_magic/configure.xml b/reference/mime_magic/configure.xml
deleted file mode 100644
index 0b2c8afc76..0000000000
--- a/reference/mime_magic/configure.xml
+++ /dev/null
@@ -1,74 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision$ -->
-<!-- EN-Revision: 95bdd6883b5dde9504701777ba81b3c5f15df52b Maintainer: yannick Status: ready -->
-<!-- Reviewed: yes -->
-
-<section xml:id="mime-magic.installation" xmlns="http://docbook.org/ns/docbook">
- &reftitle.install;
- <warning>
- <para>
- L'extension Mimetype a été supprimée en PHP 5.3.0 en faveur de l'extension <link
- linkend="book.fileinfo">Fileinfo</link>.
- </para>
- </warning>
- <para>
- Vous devez compiler PHP avec l'option
- <option role="configure">--enable-mime-magic</option> pour obtenir le support
- des fonctions mime-type. L'extension nécessite une copie simplifiée de
- <filename>magic</filename> qui est distribuée avec le serveur httpd Apache.
- </para>
- <note>
- <para>
- Cette extension n'est pas capable d'utiliser le fichier
- <filename>magic</filename> complet, qui est généralement
- livré avec les distributions Linux, et il est supposé
- fonctionner avec les plus récentes versions de
- la commande <filename>file</filename>.
- </para>
- </note>
- <note>
- <title>Note aux utilisateurs Windows</title>
- <para>
- Afin de pouvoir utiliser ce module en environnement Windows, vous
- devez activer le chemin jusqu'au fichier <filename>magic.mime</filename>
- de votre &php.ini;.
- </para>
- <para>
- <example>
- <title>Configuration Windows de <filename>magic.mime</filename></title>
- <programlisting>
-<![CDATA[
-mime_magic.magicfile ="$PHP_INSTALL_DIR\magic.mime"
-]]>
- </programlisting>
- </example>
- </para>
- <para>
- N'oubliez pas de remplacer la valeur de <filename>$PHP_INSTALL_DIR</filename>
- par votre chemin jusqu'à l'exécutable PHP, dans l'exemple ci-dessus.
- Par exemple, <filename class="directory">c:\php</filename>.
- </para>
- </note>
-</section>
-
-<!-- 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
--->
-
diff --git a/reference/mime_magic/constants.xml b/reference/mime_magic/constants.xml
deleted file mode 100644
index 79aefb400b..0000000000
--- a/reference/mime_magic/constants.xml
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision$ -->
-<!-- EN-Revision: af4410a7e15898c3dbe83d6ea38246745ed9c6fb Maintainer: yannick Status: ready -->
-<!-- Reviewed: yes -->
-
-<appendix xml:id="mime-magic.constants" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
- &reftitle.constants;
- &no.constants;
-</appendix>
-
-<!-- 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
--->
-
diff --git a/reference/mime_magic/ini.xml b/reference/mime_magic/ini.xml
deleted file mode 100755
index d893f3396b..0000000000
--- a/reference/mime_magic/ini.xml
+++ /dev/null
@@ -1,89 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision$ -->
-<!-- EN-Revision: f052ac1bd73549125c3fc3dc68a36d4b0608a16d Maintainer: yannick Status: ready -->
-<!-- Reviewed: yes -->
-
-<section xml:id="mime-magic.configuration" xmlns="http://docbook.org/ns/docbook">
- &reftitle.runtime;
- &extension.runtime;
- <para>
- <table>
- <title>&ConfigureOptions; MIME</title>
- <tgroup cols="4">
- <thead>
- <row>
- <entry>&Name;</entry>
- <entry>&Default;</entry>
- <entry>&Changeable;</entry>
- <entry>&Changelog;</entry>
- </row>
- </thead>
- <tbody>
- <row>
- <entry><link linkend="ini.mime-magic.debug">mime_magic.debug</link></entry>
- <entry>"0"</entry>
- <entry>PHP_INI_SYSTEM</entry>
- <entry>Disponible depuis PHP 5.0.0.</entry>
- </row>
- <row>
- <entry><link linkend="ini.mime-magic.magicfile">mime_magic.magicfile</link></entry>
- <entry>"/path/to/php/magic.mime"</entry>
- <entry>PHP_INI_SYSTEM</entry>
- <entry>Disponible depuis PHP 4.3.0.</entry>
- </row>
- </tbody>
- </tgroup>
- </table>
- &ini.php.constants;
-</para>
-
-&ini.descriptions.title;
-
-<para>
- <variablelist>
- <varlistentry xml:id="ini.mime-magic.debug">
- <term>
- <parameter>mime_magic.debug</parameter>
- &boolean;
- </term>
- <listitem>
- <para>
- Active ou désactive le déboguage.
- </para>
- </listitem>
- </varlistentry>
- <varlistentry xml:id="ini.mime-magic.magicfile">
- <term>
- <parameter>mime_magic.magicfile</parameter>
- &string;
- </term>
- <listitem>
- <para>
- Le chemin vers le fichier magic.mime.
- </para>
- </listitem>
- </varlistentry>
- </variablelist>
-</para>
-</section>
-
-<!-- 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
--->
diff --git a/reference/mime_magic/setup.xml b/reference/mime_magic/setup.xml
deleted file mode 100644
index f5aab27c8e..0000000000
--- a/reference/mime_magic/setup.xml
+++ /dev/null
@@ -1,53 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision$ -->
-<!-- EN-Revision: af4410a7e15898c3dbe83d6ea38246745ed9c6fb Maintainer: yannick Status: ready -->
-<!-- Reviewed: yes -->
-
-<chapter xml:id="mime-magic.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
- &reftitle.setup;
-
- <!-- {{{ Requirements -->
- <section xml:id="mime-magic.requirements">
- &reftitle.required;
- &no.requirement;
- </section>
- <!-- }}} -->
-
- <!-- {{{ Installation -->
- &reference.mime-magic.configure;
- <!-- }}} -->
-
- <!-- {{{ Configuration -->
- &reference.mime-magic.ini;
- <!-- }}} -->
-
- <!-- {{{ Resources -->
- <section xml:id="mime-magic.resources">
- &reftitle.resources;
- &no.resource;
- </section>
- <!-- }}} -->
-
-</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
--->
-