mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
MFB: Upgrade to the new-reference-structure
- (Created missing setup sections in setup.xml, if any) - Moved the intro to book.xml - Changed the intro ID from <extname>.intro to intro.<extname> - Moved the constants entity to book.xml - Changed constants.xml to be an appendix - Moved the example to its own chapter (examples.xml) NOTE: The chapter now has the swish.examples ID, the section is now swish.examples-basic - Moved the requirements, install and configuration sections to setup.xml git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@248897 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
27b236352d
commit
749aa5cc41
5 changed files with 207 additions and 103 deletions
55
reference/swish/book.xml
Normal file
55
reference/swish/book.xml
Normal file
|
@ -0,0 +1,55 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- Purpose: utilspec.nontext -->
|
||||
<!-- Membership: pecl, external -->
|
||||
<!-- State: experimental -->
|
||||
|
||||
<book xml:id="book.swish" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>swish</title>
|
||||
|
||||
<!-- {{{ preface -->
|
||||
<preface xml:id="intro.swish">
|
||||
&reftitle.intro;
|
||||
<para>
|
||||
The swish extension provides the bindings for Swish-e API.
|
||||
Swish-e stands for "Simple Web Indexing System for Humans - Enhanced" and
|
||||
is an open source system for indexing and search.
|
||||
Swish-e itself is licensed under GPL license, but uses a clause that
|
||||
allows applications to link against the library if every copy of the
|
||||
combined work is accompanied by the URL to Swish-e source code. Here it
|
||||
is: <link xlink:href="http://swish-e.org">http://swish-e.org</link>.
|
||||
</para>
|
||||
|
||||
&warn.experimental;
|
||||
</preface>
|
||||
<!-- }}} -->
|
||||
|
||||
&reference.swish.setup;
|
||||
&reference.swish.constants;
|
||||
&reference.swish.examples;
|
||||
<!-- FIXME: This extension defines some classess, see classes.xml -->
|
||||
&reference.swish.reference;
|
||||
|
||||
</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:"../../../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
|
||||
-->
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<section xml:id="swish.constants" xmlns="http://docbook.org/ns/docbook">
|
||||
<!-- $Revision: 1.4 $ -->
|
||||
<appendix xml:id="swish.constants" xmlns="http://docbook.org/ns/docbook">
|
||||
&reftitle.constants;
|
||||
&extension.constants;
|
||||
<variablelist>
|
||||
|
@ -215,7 +215,7 @@
|
|||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</section>
|
||||
</appendix>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
|
|
78
reference/swish/examples.xml
Normal file
78
reference/swish/examples.xml
Normal file
|
@ -0,0 +1,78 @@
|
|||
<chapter xml:id="swish.examples" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
&reftitle.examples;
|
||||
<section xml:id="swish.examples-basic">
|
||||
<title>Basic usage</title>
|
||||
<para>
|
||||
<example>
|
||||
<title>Basic search query</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
|
||||
try {
|
||||
|
||||
$swish = new Swish("index.swish-e");
|
||||
$results = $swish->query("test OR text");
|
||||
|
||||
echo "Found ", $results->hits, " results\n";
|
||||
while ($result = $results->nextResult()) {
|
||||
var_dump($result);
|
||||
break; //break after the first result
|
||||
}
|
||||
|
||||
} catch (SwishException $e) {
|
||||
echo "Error: ", $e->getMessage(), "\n";
|
||||
}
|
||||
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
&example.outputs.similar;
|
||||
<screen>
|
||||
<![CDATA[
|
||||
Found 9 results
|
||||
object(SwishResult)#3 (8) {
|
||||
["swishreccount"]=>
|
||||
int(1)
|
||||
["swishrank"]=>
|
||||
int(1000)
|
||||
["swishfilenum"]=>
|
||||
int(10)
|
||||
["swishdbfile"]=>
|
||||
string(13) "index.swish-e"
|
||||
["swishdocpath"]=>
|
||||
string(23) "README.SUBMITTING_PATCH"
|
||||
["swishtitle"]=>
|
||||
NULL
|
||||
["swishdocsize"]=>
|
||||
int(4557)
|
||||
["swishlastmodified"]=>
|
||||
int(1072136752)
|
||||
}
|
||||
]]>
|
||||
</screen>
|
||||
</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:"../../../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
|
||||
-->
|
|
@ -1,107 +1,12 @@
|
|||
<?xml version = '1.0' encoding = 'iso-8859-1'?>
|
||||
<!-- $Revision: 1.9 $ -->
|
||||
<!-- Purpose: utilspec.nontext -->
|
||||
<!-- Membership: pecl, external -->
|
||||
<!-- State: experimental -->
|
||||
<!-- $Revision: 1.10 $ -->
|
||||
|
||||
<reference xml:id="ref.swish" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>Swish Functions</title>
|
||||
<titleabbrev>swish</titleabbrev>
|
||||
<partintro>
|
||||
<section xml:id="swish.intro" >
|
||||
&reftitle.intro;
|
||||
<para>
|
||||
The swish extension provides the bindings for Swish-e API.
|
||||
Swish-e stands for "Simple Web Indexing System for Humans - Enhanced" and
|
||||
is an open source system for indexing and search.
|
||||
Swish-e itself is licensed under GPL license, but uses a clause that
|
||||
allows applications to link against the library if every copy of the
|
||||
combined work is accompanied by the URL to Swish-e source code. Here it
|
||||
is: <link xlink:href="http://swish-e.org">http://swish-e.org</link>.
|
||||
</para>
|
||||
|
||||
&warn.experimental;
|
||||
|
||||
</section>
|
||||
<section xml:id="swish.requirements" >
|
||||
&reftitle.required;
|
||||
<para>
|
||||
PECL/swish requires PHP 5.1.3 or newer.
|
||||
</para>
|
||||
</section>
|
||||
<section xml:id="swish.install" >
|
||||
&reftitle.install;
|
||||
<para>
|
||||
&pecl.info;
|
||||
<link xlink:href="&url.pecl.package;swish">&url.pecl.package;swish</link>.
|
||||
</para>
|
||||
<para>
|
||||
The latest PECL/swish Win32 DLL can be downloaded here:
|
||||
<link xlink:href='&url.pecl.win.ext;php_swish.dll'>php_swish.dll</link>.
|
||||
</para>
|
||||
</section>
|
||||
<section xml:id="swish.configuration">
|
||||
&reftitle.runtime;
|
||||
&no.config;
|
||||
</section>
|
||||
<section xml:id="swish.examples">
|
||||
&reftitle.examples;
|
||||
<para>
|
||||
<example>
|
||||
<title>Basic search query</title>
|
||||
<programlisting role="php">
|
||||
<![CDATA[
|
||||
<?php
|
||||
<title>Swish &Functions;</title>
|
||||
|
||||
try {
|
||||
|
||||
$swish = new Swish("index.swish-e");
|
||||
$results = $swish->query("test OR text");
|
||||
|
||||
echo "Found ", $results->hits, " results\n";
|
||||
while ($result = $results->nextResult()) {
|
||||
var_dump($result);
|
||||
break; //break after the first result
|
||||
}
|
||||
|
||||
} catch (SwishException $e) {
|
||||
echo "Error: ", $e->getMessage(), "\n";
|
||||
}
|
||||
|
||||
?>
|
||||
]]>
|
||||
</programlisting>
|
||||
</example>
|
||||
</para>
|
||||
&example.outputs.similar;
|
||||
<screen>
|
||||
<![CDATA[
|
||||
Found 9 results
|
||||
object(SwishResult)#3 (8) {
|
||||
["swishreccount"]=>
|
||||
int(1)
|
||||
["swishrank"]=>
|
||||
int(1000)
|
||||
["swishfilenum"]=>
|
||||
int(10)
|
||||
["swishdbfile"]=>
|
||||
string(13) "index.swish-e"
|
||||
["swishdocpath"]=>
|
||||
string(23) "README.SUBMITTING_PATCH"
|
||||
["swishtitle"]=>
|
||||
NULL
|
||||
["swishdocsize"]=>
|
||||
int(4557)
|
||||
["swishlastmodified"]=>
|
||||
int(1072136752)
|
||||
}
|
||||
]]>
|
||||
</screen>
|
||||
</section>
|
||||
&reference.swish.constants;
|
||||
&reference.swish.classes;
|
||||
</partintro>
|
||||
&reference.swish.entities.functions;
|
||||
&reference.swish.entities.functions;
|
||||
</reference>
|
||||
|
||||
<!-- Keep this comment at the end of the file
|
||||
Local variables:
|
||||
mode: sgml
|
||||
|
|
66
reference/swish/setup.xml
Normal file
66
reference/swish/setup.xml
Normal file
|
@ -0,0 +1,66 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
|
||||
<chapter xml:id="swish.setup" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
&reftitle.setup;
|
||||
|
||||
<!-- {{{ Requirements -->
|
||||
<section xml:id="swish.requirements">
|
||||
&reftitle.required;
|
||||
<para>
|
||||
PECL/swish requires PHP 5.1.3 or newer.
|
||||
</para>
|
||||
</section>
|
||||
<!-- }}} -->
|
||||
|
||||
<!-- {{{ Installation -->
|
||||
<section xml:id="swish.installation">
|
||||
&reftitle.install;
|
||||
<para>
|
||||
&pecl.info;
|
||||
<link xlink:href="&url.pecl.package;swish">&url.pecl.package;swish</link>.
|
||||
</para>
|
||||
<para>
|
||||
The latest PECL/swish Win32 DLL can be downloaded here:
|
||||
<link xlink:href='&url.pecl.win.ext;php_swish.dll'>php_swish.dll</link>.
|
||||
</para>
|
||||
</section>
|
||||
<!-- }}} -->
|
||||
|
||||
<!-- {{{ Configuration -->
|
||||
<section xml:id="swish.configuration">
|
||||
&reftitle.runtime;
|
||||
&no.config;
|
||||
</section>
|
||||
<!-- }}} -->
|
||||
|
||||
<!-- {{{ Resources -->
|
||||
<section xml:id="swish.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:"../../../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
|
||||
-->
|
||||
|
Loading…
Reference in a new issue