svn: /phpdoc/fr/trunk/reference/phar/PharFileInfo/ isCompressedBZIP2.xml isCompressedGZ.xml setCompressedBZIP2.xml setCompressedGZ.xml setUncompressed.xml

[email protected] (George Peter Banyard)
Newsgroups php.doc.fr
Message-ID <[email protected]>
girgias                                  Wed, 25 Nov 2020 18:17:49 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=351648

Log:
Delete files which were delete in EN version

Changed paths:
    D   phpdoc/fr/trunk/reference/phar/PharFileInfo/isCompressedBZIP2.xml
    D   phpdoc/fr/trunk/reference/phar/PharFileInfo/isCompressedGZ.xml
    D   phpdoc/fr/trunk/reference/phar/PharFileInfo/setCompressedBZIP2.xml
    D   phpdoc/fr/trunk/reference/phar/PharFileInfo/setCompressedGZ.xml
    D   phpdoc/fr/trunk/reference/phar/PharFileInfo/setUncompressed.xml
svn-diffs-351648.txt (text/x-diff, 20 KB)
Deleted: phpdoc/fr/trunk/reference/phar/PharFileInfo/isCompressedBZIP2.xml
===================================================================
--- phpdoc/fr/trunk/reference/phar/PharFileInfo/isCompressedBZIP2.xml	2020-11-25 18:04:28 UTC (rev 351647)
+++ phpdoc/fr/trunk/reference/phar/PharFileInfo/isCompressedBZIP2.xml	2020-11-25 18:17:49 UTC (rev 351648)
@@ -1,111 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision$ -->
-<!-- EN-Revision: 330543 Maintainer: gui Status: ready -->
-<!-- Reviewed: no -->
-
-<refentry xmlns="http://docbook.org/ns/docbook" xml:id="pharfileinfo.iscompressedbzip2">
- <refnamediv>
-  <refname>PharFileInfo::isCompressedBZIP2</refname>
-  <refpurpose>Détermine si l'archive Phar est compressée avec bzip2</refpurpose>
- </refnamediv>
- <refsect1 role="description">
-  &reftitle.description;
-  <methodsynopsis>
-   <modifier>public</modifier> <type>bool</type><methodname>PharFileInfo::isCompressedBZIP2</methodname>
-   <void/>
-  </methodsynopsis>
- &phar.removed.pharfileinfocompress;
-
-  <para>
-   Détermine si le fichier au sein de l'archive Phar est compressé avec Bzip2.
-  </para>
- </refsect1>
-
- <refsect1 role="returnvalues">
-  &reftitle.returnvalues;
-  <para>
-   &true; si le fichier au sein de l'archive Phar est compressé avec Bzip2, &false; sinon.
-  </para>
- </refsect1>
-
- <refsect1 role="examples">
-  &reftitle.examples;
-  <para>
-   <example>
-    <title>Un exemple avec <function>PharFileInfo::isCompressedBZIP2</function></title>
-    <programlisting role="php">
-<![CDATA[
-<?php
-try {
-    $p = new Phar('/chemin/vers/mon.phar', 0, 'mon.phar');
-    $p['monfichier.txt'] = 'salut';
-    $p['monfichier2.txt'] = 'salut';
-    $p['monfichier3.txt'] = 'salut';
-    $p['monfichier2.txt']->setCompressedGZ();
-    $p['monfichier3.txt']->setCompressedBZIP2();
-    $file = $p['monfichier.txt'];
-    $file2 = $p['monfichier2.txt'];
-    $file3 = $p['monfichier3.txt'];
-    var_dump($file->isCompressedBZIP2());
-    var_dump($file2->isCompressedBZIP2());
-    var_dump($file3->isCompressedBZIP2());
-} catch (Exception $e) {
-    echo 'La création/modification de mon.phar a échoué : ', $e;
-}
-?>
-]]>
-    </programlisting>
-    &example.outputs;
-    <screen>
-<![CDATA[
-bool(false)
-bool(false)
-bool(true)
-]]>
-    </screen>
-   </example>
-  </para>
- </refsect1>
-
- <refsect1 role="seealso">
-  &reftitle.seealso;
-  <para>
-   <simplelist>
-    <member><function>PharFileInfo::getCompressedSize</function></member>
-    <member><function>PharFileInfo::isCompressed</function></member>
-    <member><function>PharFileInfo::isCompressedGZ</function></member>
-    <member><function>PharFileInfo::setCompressedBZIP2</function></member>
-    <member><function>PharFileInfo::setUncompressed</function></member>
-    <member><function>PharFileInfo::setCompressedGZ</function></member>
-    <member><function>Phar::canCompress</function></member>
-    <member><function>Phar::isCompressed</function></member>
-    <member><function>Phar::compressAllFilesBZIP2</function></member>
-    <member><function>Phar::compressAllFilesGZ</function></member>
-    <member><function>Phar::getSupportedCompression</function></member>
-    <member><function>Phar::uncompressAllFiles</function></member>
-   </simplelist>
-  </para>
- </refsect1>
-
-</refentry>
-
-<!-- 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
--->

Deleted: phpdoc/fr/trunk/reference/phar/PharFileInfo/isCompressedGZ.xml
===================================================================
--- phpdoc/fr/trunk/reference/phar/PharFileInfo/isCompressedGZ.xml	2020-11-25 18:04:28 UTC (rev 351647)
+++ phpdoc/fr/trunk/reference/phar/PharFileInfo/isCompressedGZ.xml	2020-11-25 18:17:49 UTC (rev 351648)
@@ -1,112 +0,0 @@
-<?xml version='1.0' encoding='utf-8'?>
-<!-- $Revision$ -->
-<!-- EN-Revision: 330543 Maintainer: gui Status: ready -->
-<!-- Reviewed: yes -->
-
-<refentry xmlns="http://docbook.org/ns/docbook" xml:id="pharfileinfo.iscompressedgz">
- <refnamediv>
-  <refname>PharFileInfo::isCompressedGZ</refname>
-  <refpurpose>Détermine si l'archive Phar est compressée avec gzip</refpurpose>
- </refnamediv>
- <refsect1 role="description">
-  &reftitle.description;
-  <methodsynopsis>
-   <modifier>public</modifier> <type>bool</type><methodname>PharFileInfo::isCompressedGZ</methodname>
-   <void/>
-  </methodsynopsis>
-  &phar.removed.pharfileinfocompress;
-
-  <para>
-   Détermine si un fichier au sein de l'archive Phar est compressé avec Gzip.
-  </para>
- </refsect1>
-
- <refsect1 role="returnvalues">
-  &reftitle.returnvalues;
-  <para>
-   &true; si le fichier au sein de l'archive Phar est
-   compressé avec Gzip, &false; sinon.
-  </para>
- </refsect1>
-
- <refsect1 role="examples">
-  &reftitle.examples;
-  <para>
-   <example>
-    <title>Exemple avec <function>PharFileInfo::isCompressedGZ</function></title>
-    <programlisting role="php">
-<![CDATA[
-<?php
-try {
-    $p = new Phar('/chemin/vers/mon.phar', 0, 'mon.phar');
-    $p['monfichier.txt'] = 'salut';
-    $p['monfichier2.txt'] = 'salut';
-    $p['monfichier3.txt'] = 'salut';
-    $p['monfichier2.txt']->setCompressedGZ();
-    $p['monfichier3.txt']->setCompressedBZIP2();
-    $file = $p['monfichier.txt'];
-    $file2 = $p['monfichier2.txt'];
-    $file3 = $p['monfichier3.txt'];
-    var_dump($file->isCompressedGZ());
-    var_dump($file2->isCompressedGZ());
-    var_dump($file3->isCompressedGZ());
-} catch (Exception $e) {
-    echo 'La création/modification de mon.phar a échoué : ', $e;
-}
-?>
-]]>
-    </programlisting>
-    &example.outputs;
-    <screen>
-<![CDATA[
-bool(false)
-bool(true)
-bool(false)
-]]>
-    </screen>
-   </example>
-  </para>
- </refsect1>
-
- <refsect1 role="seealso">
-  &reftitle.seealso;
-  <para>
-   <simplelist>
-    <member><function>PharFileInfo::getCompressedSize</function></member>
-    <member><function>PharFileInfo::isCompressedBZIP2</function></member>
-    <member><function>PharFileInfo::isCompressed</function></member>
-    <member><function>PharFileInfo::setCompressedBZIP2</function></member>
-    <member><function>PharFileInfo::setUncompressed</function></member>
-    <member><function>PharFileInfo::setCompressedGZ</function></member>
-    <member><function>Phar::canCompress</function></member>
-    <member><function>Phar::isCompressed</function></member>
-    <member><function>Phar::compressAllFilesBZIP2</function></member>
-    <member><function>Phar::compressAllFilesGZ</function></member>
-    <member><function>Phar::getSupportedCompression</function></member>
-    <member><function>Phar::uncompressAllFiles</function></member>
-   </simplelist>
-  </para>
- </refsect1>
-
-</refentry>
-
-<!-- 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
--->

Deleted: phpdoc/fr/trunk/reference/phar/PharFileInfo/setCompressedBZIP2.xml
===================================================================
--- phpdoc/fr/trunk/reference/phar/PharFileInfo/setCompressedBZIP2.xml	2020-11-25 18:04:28 UTC (rev 351647)
+++ phpdoc/fr/trunk/reference/phar/PharFileInfo/setCompressedBZIP2.xml	2020-11-25 18:17:49 UTC (rev 351648)
@@ -1,119 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision$ -->
-<!-- EN-Revision: 330543 Maintainer: gui Status: ready -->
-<!-- Reviewed: no -->
-
-<refentry xmlns="http://docbook.org/ns/docbook" xml:id="pharfileinfo.setcompressedbzip2">
- <refnamediv>
-  <refname>PharFileInfo::setCompressedBZIP2</refname>
-  <refpurpose>Compresse l'entrée Phar courante au sein du phar avec Bzip2</refpurpose>
- </refnamediv>
- <refsect1 role="description">
-  &reftitle.description;
-  <methodsynopsis>
-   <modifier>public</modifier> <type>bool</type><methodname>PharFileInfo::setCompressedBZIP2</methodname>
-   <void/>
-  </methodsynopsis>
- &phar.removed.pharfileinfocompress;
-
-  <para>
-   Cette méthode compresse le fichier au sein de l'archive Phar en utilisant bzip2.
-   L'extension <link linkend="ref.bzip2">bzip2</link> doit être activée doit être activée
-   pour tirer parti de cette fonctionnalité. De plus, si au moins un fichier est déjà compressé
-   avec gzip, l'extension <link linkend="ref.zlib">zlib</link> doit être activée pour décompresser
-   le fichier. Comme avec toutes les fonctionnalités qui modifient le contenu du phar, la variable INI
-   <link linkend="ini.phar.readonly">phar.readonly</link> doit être à off pour réussir.
-  </para>
- </refsect1>
-
- <refsect1 role="returnvalues">
-  &reftitle.returnvalues;
-  <para>
-   &return.success;
-  </para>
- </refsect1>
-
- <refsect1 role="errors">
-  &reftitle.errors;
-  <para>
-   Soulève une exception <classname>BadMethodCallException</classname> si
-   la variable INI <link linkend="ini.phar.readonly">phar.readonly</link>
-   est à on, ou si l'extension <link linkend="ref.bzip2">bzip2</link>
-   n'est pas disponible.
-  </para>
- </refsect1>
-
- <refsect1 role="examples">
-  &reftitle.examples;
-  <para>
-   <example>
-    <title>Un exemple avec <function>PharFileInfo::setCompressedBZIP2</function></title>
-    <programlisting role="php">
-<![CDATA[
-<?php
-try {
-    $p = new Phar('/chemin/vers/mon.phar', 0, 'mon.phar');
-    $p['monfichier.txt'] = 'salut';
-    $file = $p['monfichier.txt'];
-    var_dump($file->isCompressedBZIP2());
-    $p['monfichier.txt']->setCompressedBZIP2();
-    var_dump($file->isCompressedBZIP2());
-} catch (Exception $e) {
-    echo 'La création/modification de mon.phar a échoué : ', $e;
-}
-?>
-]]>
-    </programlisting>
-    &example.outputs;
-    <screen>
-<![CDATA[
-bool(false)
-bool(true)
-]]>
-    </screen>
-   </example>
-  </para>
- </refsect1>
-
- <refsect1 role="seealso">
-  &reftitle.seealso;
-  <para>
-   <simplelist>
-    <member><function>PharFileInfo::getCompressedSize</function></member>
-    <member><function>PharFileInfo::isCompressedBZIP2</function></member>
-    <member><function>PharFileInfo::isCompressed</function></member>
-    <member><function>PharFileInfo::isCompressedGZ</function></member>
-    <member><function>PharFileInfo::setUncompressed</function></member>
-    <member><function>PharFileInfo::setCompressedGZ</function></member>
-    <member><function>Phar::canCompress</function></member>
-    <member><function>Phar::isCompressed</function></member>
-    <member><function>Phar::compressAllFilesBZIP2</function></member>
-    <member><function>Phar::compressAllFilesGZ</function></member>
-    <member><function>Phar::getSupportedCompression</function></member>
-    <member><function>Phar::uncompressAllFiles</function></member>
-   </simplelist>
-  </para>
- </refsect1>
-
-</refentry>
-
-<!-- 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
--->

Deleted: phpdoc/fr/trunk/reference/phar/PharFileInfo/setCompressedGZ.xml
===================================================================
--- phpdoc/fr/trunk/reference/phar/PharFileInfo/setCompressedGZ.xml	2020-11-25 18:04:28 UTC (rev 351647)
+++ phpdoc/fr/trunk/reference/phar/PharFileInfo/setCompressedGZ.xml	2020-11-25 18:17:49 UTC (rev 351648)
@@ -1,119 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision$ -->
-<!-- EN-Revision: 330543 Maintainer: gui Status: ready -->
-<!-- Reviewed: no -->
-
-<refentry xmlns="http://docbook.org/ns/docbook" xml:id="pharfileinfo.setcompressedgz">
- <refnamediv>
-  <refname>PharFileInfo::setCompressedGZ</refname>
-  <refpurpose>Compresse l'entrée Phar courante au sein du phar avec gzip</refpurpose>
- </refnamediv>
- <refsect1 role="description">
-  &reftitle.description;
-  <methodsynopsis>
-   <modifier>public</modifier> <type>bool</type><methodname>PharFileInfo::setCompressedGZ</methodname>
-   <void/>
-  </methodsynopsis>
- &phar.removed.pharfileinfocompress;
-
-  <para>
-   Cette méthode compresse le fichier au sein de l'archive Phar en utilisant gzip.
-   L'extension <link linkend="ref.zlib">zlib</link> doit être activée doit être activée
-   pour tirer parti de cette fonctionnalité. De plus, si au moins un fichier est déjà compressé
-   avec bzip2, l'extension <link linkend="ref.bzip2">bzip2</link> doit être activée pour décompresser
-   le fichier. Comme avec toutes les fonctionnalités qui modifient le contenu du phar, la variable INI
-   <link linkend="ini.phar.readonly">phar.readonly</link> doit être à off pour réussir.
-  </para>
- </refsect1>
-
- <refsect1 role="returnvalues">
-  &reftitle.returnvalues;
-  <para>
-   &return.success;
-  </para>
- </refsect1>
-
- <refsect1 role="errors">
-  &reftitle.errors;
-  <para>
-   Soulève une exception <classname>BadMethodCallException</classname> si
-   la variable INI <link linkend="ini.phar.readonly">phar.readonly</link>
-   est à on, ou si l'extension <link linkend="ref.zlib">zlib</link>
-   n'est pas disponible.
-  </para>
- </refsect1>
-
- <refsect1 role="examples">
-  &reftitle.examples;
-  <para>
-   <example>
-    <title>Un exemple avec <function>PharFileInfo::setCompressedGZ</function></title>
-    <programlisting role="php">
-<![CDATA[
-<?php
-try {
-    $p = new Phar('/chemin/vers/mon.phar', 0, 'mon.phar');
-    $p['monfichier.txt'] = 'salut';
-    $file = $p['monfichier.txt'];
-    var_dump($file->isCompressedGZ());
-    $p['monfichier.txt']->setCompressedGZ();
-    var_dump($file->isCompressedGZ());
-} catch (Exception $e) {
-    echo 'La création/modification de mon.phar a échoué : ', $e;
-}
-?>
-]]>
-    </programlisting>
-    &example.outputs;
-    <screen>
-<![CDATA[
-bool(false)
-bool(true)
-]]>
-    </screen>
-   </example>
-  </para>
- </refsect1>
-
- <refsect1 role="seealso">
-  &reftitle.seealso;
-  <para>
-   <simplelist>
-    <member><function>PharFileInfo::getCompressedSize</function></member>
-    <member><function>PharFileInfo::isCompressedBZIP2</function></member>
-    <member><function>PharFileInfo::isCompressed</function></member>
-    <member><function>PharFileInfo::isCompressedGZ</function></member>
-    <member><function>PharFileInfo::setCompressedBZIP2</function></member>
-    <member><function>PharFileInfo::setUncompressed</function></member>
-    <member><function>Phar::canCompress</function></member>
-    <member><function>Phar::isCompressed</function></member>
-    <member><function>Phar::compressAllFilesBZIP2</function></member>
-    <member><function>Phar::compressAllFilesGZ</function></member>
-    <member><function>Phar::getSupportedCompression</function></member>
-    <member><function>Phar::uncompressAllFiles</function></member>
-   </simplelist>
-  </para>
- </refsect1>
-
-</refentry>
-
-<!-- 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
--->

Deleted: phpdoc/fr/trunk/reference/phar/PharFileInfo/setUncompressed.xml
===================================================================
--- phpdoc/fr/trunk/reference/phar/PharFileInfo/setUncompressed.xml	2020-11-25 18:04:28 UTC (rev 351647)
+++ phpdoc/fr/trunk/reference/phar/PharFileInfo/setUncompressed.xml	2020-11-25 18:17:49 UTC (rev 351648)
@@ -1,119 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision$ -->
-<!-- EN-Revision: 330543 Maintainer: gui Status: ready -->
-<!-- Reviewed: no -->
-
-<refentry xmlns="http://docbook.org/ns/docbook" xml:id="pharfileinfo.setuncompressed">
- <refnamediv>
-  <refname>PharFileInfo::setUncompressed</refname>
-  <refpurpose>Décompresse l'entrée Phar courante au sein du phar s'il y a lieu</refpurpose>
- </refnamediv>
- <refsect1 role="description">
-  &reftitle.description;
-  <methodsynopsis>
-   <modifier>public</modifier> <type>bool</type><methodname>PharFileInfo::setUncompressed</methodname>
-   <void/>
-  </methodsynopsis>
- &phar.removed.pharfileinfocompress;
-
-  <para>
-   Cette méthode décompresse le fichier au sein de l'archive Phar.
-   Selon la façon dont le fichier est compressé, les extensions <link linkend="ref.bzip2">bzip2</link>
-   ou <link linkend="ref.zlib">zlib</link> doivent être activées pour tirer parti de cette fonctionnalité.
-   Comme avec toutes les fonctionnalités qui modifient le contenu du phar, la variable INI
-   <link linkend="ini.phar.readonly">phar.readonly</link> doit être à off pour réussir.
-  </para>
- </refsect1>
-
- <refsect1 role="returnvalues">
-  &reftitle.returnvalues;
-  <para>
-   &return.success;
-  </para>
- </refsect1>
-
- <refsect1 role="errors">
-  &reftitle.errors;
-  <para>
-   Soulève une exception <classname>BadMethodCallException</classname> si
-   la variable INI <link linkend="ini.phar.readonly">phar.readonly</link>
-   est à on, ou si l'extension <link linkend="ref.bzip2">bzip2</link>/<link linkend="ref.zlib">zlib</link>
-   n'est pas disponible.
-  </para>
- </refsect1>
-
- <refsect1 role="examples">
-  &reftitle.examples;
-  <para>
-   <example>
-    <title>Un exemple avec <function>PharFileInfo::setUncompressed</function></title>
-    <programlisting role="php">
-<![CDATA[
-<?php
-try {
-    $p = new Phar('/chemin/vers/mon.phar', 0, 'mon.phar');
-    $p['monfichier.txt'] = 'salut';
-    $file = $p['monfichier.txt'];
-    $file->setCompressedGZ();
-    var_dump($file->isCompressed());
-    $p['monfichier.txt']->setUncompressed();
-    var_dump($file->isCompressed());
-} catch (Exception $e) {
-    echo 'La création/modification de mon.phar a échoué : ', $e;
-}
-?>
-]]>
-    </programlisting>
-    &example.outputs;
-    <screen>
-<![CDATA[
-bool(true)
-bool(false)
-]]>
-    </screen>
-   </example>
-  </para>
- </refsect1>
-
- <refsect1 role="seealso">
-  &reftitle.seealso;
-  <para>
-   <simplelist>
-    <member><function>PharFileInfo::getCompressedSize</function></member>
-    <member><function>PharFileInfo::isCompressedBZIP2</function></member>
-    <member><function>PharFileInfo::isCompressed</function></member>
-    <member><function>PharFileInfo::isCompressedGZ</function></member>
-    <member><function>PharFileInfo::setCompressedBZIP2</function></member>
-    <member><function>PharFileInfo::setCompressedGZ</function></member>
-    <member><function>Phar::canCompress</function></member>
-    <member><function>Phar::isCompressed</function></member>
-    <member><function>Phar::compressAllFilesBZIP2</function></member>
-    <member><function>Phar::compressAllFilesGZ</function></member>
-    <member><function>Phar::getSupportedCompression</function></member>
-    <member><function>Phar::uncompressAllFiles</function></member>
-   </simplelist>
-  </para>
- </refsect1>
-
-</refentry>
-
-<!-- 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
--->
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.