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

[email protected] (Yoshinari Takaoka)
Newsgroups php.doc.ja
Message-ID <[email protected]>
mumumu                                   Thu, 26 Nov 2020 00:18:23 +0000

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

Log:
Remove obsolete method documentation

These methods have been removed for PECL/Phar 2, and never made it into
php-src.

Changed paths:
    D   phpdoc/ja/trunk/reference/phar/PharFileInfo/isCompressedBZIP2.xml
    D   phpdoc/ja/trunk/reference/phar/PharFileInfo/isCompressedGZ.xml
    D   phpdoc/ja/trunk/reference/phar/PharFileInfo/setCompressedBZIP2.xml
    D   phpdoc/ja/trunk/reference/phar/PharFileInfo/setCompressedGZ.xml
    D   phpdoc/ja/trunk/reference/phar/PharFileInfo/setUncompressed.xml
svn-diffs-351658.txt (text/x-diff, 20.4 KB)
Deleted: phpdoc/ja/trunk/reference/phar/PharFileInfo/isCompressedBZIP2.xml
===================================================================
--- phpdoc/ja/trunk/reference/phar/PharFileInfo/isCompressedBZIP2.xml	2020-11-26 00:16:21 UTC (rev 351657)
+++ phpdoc/ja/trunk/reference/phar/PharFileInfo/isCompressedBZIP2.xml	2020-11-26 00:18:23 UTC (rev 351658)
@@ -1,111 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision$ -->
-<!-- EN-Revision: 330543 Maintainer: takagi Status: ready -->
-<refentry xmlns="http://docbook.org/ns/docbook" xml:id="pharfileinfo.iscompressedbzip2">
- <refnamediv>
-  <refname>PharFileInfo::isCompressedBZIP2</refname>
-  <refpurpose>エントリが 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>
-   これは、Phar アーカイブ内のファイルが Bzip2
-   で圧縮されているかどうかを返します。
-  </para>
- </refsect1>
-
- <refsect1 role="returnvalues">
-  &reftitle.returnvalues;
-  <para>
-   Phar アーカイブ内のファイルが Bzip2 で圧縮されている場合に &true;、
-   そうでない場合に &false; を返します。
-  </para>
- </refsect1>
-
- <refsect1 role="examples">
-  &reftitle.examples;
-  <para>
-   <example>
-    <title><function>PharFileInfo::isCompressedBZIP2</function> の例</title>
-    <programlisting role="php">
-<![CDATA[
-<?php
-try {
-    $p = new Phar('/path/to/my.phar', 0, 'my.phar');
-    $p['myfile.txt'] = 'hi';
-    $p['myfile2.txt'] = 'hi';
-    $p['myfile3.txt'] = 'hi';
-    $p['myfile2.txt']->setCompressedGZ();
-    $p['myfile3.txt']->setCompressedBZIP2();
-    $file = $p['myfile.txt'];
-    $file2 = $p['myfile2.txt'];
-    $file3 = $p['myfile3.txt'];
-    var_dump($file->isCompressedBZIP2());
-    var_dump($file2->isCompressedBZIP2());
-    var_dump($file3->isCompressedBZIP2());
-} catch (Exception $e) {
-    echo 'my.phar の作成/変更に失敗しました: ', $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/ja/trunk/reference/phar/PharFileInfo/isCompressedGZ.xml
===================================================================
--- phpdoc/ja/trunk/reference/phar/PharFileInfo/isCompressedGZ.xml	2020-11-26 00:16:21 UTC (rev 351657)
+++ phpdoc/ja/trunk/reference/phar/PharFileInfo/isCompressedGZ.xml	2020-11-26 00:18:23 UTC (rev 351658)
@@ -1,111 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision$ -->
-<!-- EN-Revision: 330543 Maintainer: takagi Status: ready -->
-<refentry xmlns="http://docbook.org/ns/docbook" xml:id="pharfileinfo.iscompressedgz">
- <refnamediv>
-  <refname>PharFileInfo::isCompressedGZ</refname>
-  <refpurpose>エントリが gz で圧縮されているかどうかを調べる</refpurpose>
- </refnamediv>
- <refsect1 role="description">
-  &reftitle.description;
-  <methodsynopsis>
-   <modifier>public</modifier> <type>bool</type><methodname>PharFileInfo::isCompressedGZ</methodname>
-   <void/>
-  </methodsynopsis>
- &phar.removed.pharfileinfocompress;
-
-  <para>
-   これは、Phar アーカイブ内のファイルが Gzip
-   で圧縮されているかどうかを返します。
-  </para>
- </refsect1>
-
- <refsect1 role="returnvalues">
-  &reftitle.returnvalues;
-  <para>
-   Phar アーカイブ内のファイルが Gzip で圧縮されている場合に &true;、
-   そうでない場合に &false; を返します。
-  </para>
- </refsect1>
-
- <refsect1 role="examples">
-  &reftitle.examples;
-  <para>
-   <example>
-    <title><function>PharFileInfo::isCompressedGZ</function> の例</title>
-    <programlisting role="php">
-<![CDATA[
-<?php
-try {
-    $p = new Phar('/path/to/my.phar', 0, 'my.phar');
-    $p['myfile.txt'] = 'hi';
-    $p['myfile2.txt'] = 'hi';
-    $p['myfile3.txt'] = 'hi';
-    $p['myfile2.txt']->setCompressedGZ();
-    $p['myfile3.txt']->setCompressedBZIP2();
-    $file = $p['myfile.txt'];
-    $file2 = $p['myfile2.txt'];
-    $file3 = $p['myfile3.txt'];
-    var_dump($file->isCompressedGZ());
-    var_dump($file2->isCompressedGZ());
-    var_dump($file3->isCompressedGZ());
-} catch (Exception $e) {
-    echo 'my.phar の作成/変更に失敗しました: ', $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/ja/trunk/reference/phar/PharFileInfo/setCompressedBZIP2.xml
===================================================================
--- phpdoc/ja/trunk/reference/phar/PharFileInfo/setCompressedBZIP2.xml	2020-11-26 00:16:21 UTC (rev 351657)
+++ phpdoc/ja/trunk/reference/phar/PharFileInfo/setCompressedBZIP2.xml	2020-11-26 00:18:23 UTC (rev 351658)
@@ -1,121 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision$ -->
-<!-- EN-Revision: 330543 Maintainer: takagi Status: ready -->
-<refentry xmlns="http://docbook.org/ns/docbook" xml:id="pharfileinfo.setcompressedbzip2">
- <refnamediv>
-  <refname>PharFileInfo::setCompressedBZIP2</refname>
-  <refpurpose>phar 内の現在の Phar エントリを、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>
-   このメソッドは、Phar アーカイブ内のファイルを bzip2
-   を使用して圧縮します。この機能を使用するには、
-   <link linkend="ref.bzip2">bzip2</link>
-   拡張モジュールが有効になっていなければなりません。
-   また、すでに gzip で圧縮されているファイルを処理するためには、
-   まず gzip を伸張するために <link linkend="ref.zlib">zlib</link>
-   拡張モジュールが有効になっていなければなりません。
-   この関数は phar の内容を変更するので、使用するには INI 設定
-   <link linkend="ini.phar.readonly">phar.readonly</link>
-   が off になっていなければなりません。
-  </para>
- </refsect1>
-
- <refsect1 role="returnvalues">
-  &reftitle.returnvalues;
-  <para>
-   &return.success;
-  </para>
- </refsect1>
-
- <refsect1 role="errors">
-  &reftitle.errors;
-  <para>
-   INI 設定 <link linkend="ini.phar.readonly">phar.readonly</link>
-   が on の場合、あるいは <link linkend="ref.bzip2">bzip2</link>
-   拡張モジュールが使用できない場合に
-   <classname>BadMethodCallException</classname> をスローします。
-  </para>
- </refsect1>
-
- <refsect1 role="examples">
-  &reftitle.examples;
-  <para>
-   <example>
-    <title><function>PharFileInfo::setCompressedBZIP2</function> の例</title>
-    <programlisting role="php">
-<![CDATA[
-<?php
-try {
-    $p = new Phar('/path/to/my.phar', 0, 'my.phar');
-    $p['myfile.txt'] = 'hi';
-    $file = $p['myfile.txt'];
-    var_dump($file->isCompressedBZIP2());
-    $p['myfile.txt']->setCompressedBZIP2();
-    var_dump($file->isCompressedBZIP2());
-} catch (Exception $e) {
-    echo 'my.phar の作成/変更に失敗しました: ', $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/ja/trunk/reference/phar/PharFileInfo/setCompressedGZ.xml
===================================================================
--- phpdoc/ja/trunk/reference/phar/PharFileInfo/setCompressedGZ.xml	2020-11-26 00:16:21 UTC (rev 351657)
+++ phpdoc/ja/trunk/reference/phar/PharFileInfo/setCompressedGZ.xml	2020-11-26 00:18:23 UTC (rev 351658)
@@ -1,121 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision$ -->
-<!-- EN-Revision: 330543 Maintainer: takagi Status: ready -->
-<refentry xmlns="http://docbook.org/ns/docbook" xml:id="pharfileinfo.setcompressedgz">
- <refnamediv>
-  <refname>PharFileInfo::setCompressedGZ</refname>
-  <refpurpose>phar 内の現在の Phar エントリを、gz で圧縮する</refpurpose>
- </refnamediv>
- <refsect1 role="description">
-  &reftitle.description;
-  <methodsynopsis>
-   <modifier>public</modifier> <type>bool</type><methodname>PharFileInfo::setCompressedGZ</methodname>
-   <void/>
-  </methodsynopsis>
- &phar.removed.pharfileinfocompress;
-
-  <para>
-   このメソッドは、Phar アーカイブ内のファイルを gzip
-   を使用して圧縮します。この機能を使用するには、
-   <link linkend="ref.zlib">zlib</link>
-   拡張モジュールが有効になっていなければなりません。
-   また、すでに bzip2 で圧縮されているファイルを処理するためには、
-   まず bzip2 を伸張するために <link linkend="ref.bzip2">bzip2</link>
-   拡張モジュールが有効になっていなければなりません。
-   この関数は phar の内容を変更するので、使用するには INI 設定
-   <link linkend="ini.phar.readonly">phar.readonly</link>
-   が off になっていなければなりません。
-  </para>
- </refsect1>
-
- <refsect1 role="returnvalues">
-  &reftitle.returnvalues;
-  <para>
-   &return.success;
-  </para>
- </refsect1>
-
- <refsect1 role="errors">
-  &reftitle.errors;
-  <para>
-   INI 設定 <link linkend="ini.phar.readonly">phar.readonly</link>
-   が on の場合、あるいは <link linkend="ref.zlib">zlib</link>
-   拡張モジュールが使用できない場合に
-   <classname>BadMethodCallException</classname> をスローします。
-  </para>
- </refsect1>
-
- <refsect1 role="examples">
-  &reftitle.examples;
-  <para>
-   <example>
-    <title><function>PharFileInfo::setCompressedGZ</function> の例</title>
-    <programlisting role="php">
-<![CDATA[
-<?php
-try {
-    $p = new Phar('/path/to/my.phar', 0, 'my.phar');
-    $p['myfile.txt'] = 'hi';
-    $file = $p['myfile.txt'];
-    var_dump($file->isCompressedGZ());
-    $p['myfile.txt']->setCompressedGZ();
-    var_dump($file->isCompressedGZ());
-} catch (Exception $e) {
-    echo 'my.phar の作成/変更に失敗しました: ', $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/ja/trunk/reference/phar/PharFileInfo/setUncompressed.xml
===================================================================
--- phpdoc/ja/trunk/reference/phar/PharFileInfo/setUncompressed.xml	2020-11-26 00:16:21 UTC (rev 351657)
+++ phpdoc/ja/trunk/reference/phar/PharFileInfo/setUncompressed.xml	2020-11-26 00:18:23 UTC (rev 351658)
@@ -1,120 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- $Revision$ -->
-<!-- EN-Revision: 330543 Maintainer: takagi Status: ready -->
-<refentry xmlns="http://docbook.org/ns/docbook" xml:id="pharfileinfo.setuncompressed">
- <refnamediv>
-  <refname>PharFileInfo::setUncompressed</refname>
-  <refpurpose>phar 内の現在の Phar エントリが圧縮されている場合に、それを展開する</refpurpose>
- </refnamediv>
- <refsect1 role="description">
-  &reftitle.description;
-  <methodsynopsis>
-   <modifier>public</modifier> <type>bool</type><methodname>PharFileInfo::setUncompressed</methodname>
-   <void/>
-  </methodsynopsis>
- &phar.removed.pharfileinfocompress;
-
-  <para>
-   このメソッドは、Phar アーカイブ内のファイルを展開します。
-   この機能を使用するには、ファイルの圧縮形式に応じて
-   <link linkend="ref.bzip2">bzip2</link> あるいは
-   <link linkend="ref.zlib">zlib</link> のいずれかの拡張モジュールが必要になります。
-   この関数は phar の内容を変更するので、使用するには INI 設定
-   <link linkend="ini.phar.readonly">phar.readonly</link>
-   が off になっていなければなりません。
-  </para>
- </refsect1>
-
- <refsect1 role="returnvalues">
-  &reftitle.returnvalues;
-  <para>
-   &return.success;
-  </para>
- </refsect1>
-
- <refsect1 role="errors">
-  &reftitle.errors;
-  <para>
-   INI 設定 <link linkend="ini.phar.readonly">phar.readonly</link>
-   が on の場合、あるいは
-   <link linkend="ref.bzip2">bzip2</link>/<link linkend="ref.zlib">zlib</link>
-   拡張モジュールが使用できない場合に
-   <classname>BadMethodCallException</classname> をスローします。
-  </para>
- </refsect1>
-
- <refsect1 role="examples">
-  &reftitle.examples;
-  <para>
-   <example>
-    <title><function>PharFileInfo::setUncompressed</function> の例</title>
-    <programlisting role="php">
-<![CDATA[
-<?php
-try {
-    $p = new Phar('/path/to/my.phar', 0, 'my.phar');
-    $p['myfile.txt'] = 'hi';
-    $file = $p['myfile.txt'];
-    $file->setCompressedGZ();
-    var_dump($file->isCompressed());
-    $p['myfile.txt']->setUncompressed();
-    var_dump($file->isCompressed());
-} catch (Exception $e) {
-    echo 'my.phar の作成/変更に失敗しました: ', $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.